Turn Down Opacity or Hide Layer
Hi @ everybody,
1) I would like to turn on/off the layer (toggle hide) or turn down the opacity to 100%. Can you explain me how i can do that?
I did a littl research and found just one forum post about opacity:
PF_compositeMode
compositeMode.opacity = PF_MAX_CHAN8; // 0 - 255
would be nice if someone could give me a hint
2) I've played around with the "resize"-example by adding currentframenumber (in-data->current_time / in-data->time_step) to the border-size to give it a dynamic changement. I've recognized that it only works when i add keyframes to that effect. I think i did not totally understand how to handle with specific variables.
the change i've made:
out_data->width = 2 * static_cast<A_long>(border_x) + params[0]->u.ld.width + 6* (in_data->current_time / in_data->time_step);
out_data->height = 2 * static_cast<A_long>(border_y) + params[0]->u.ld.height + 6* (in_data->current_time / in_data->time_step) ;
i thought, that as soon as i click play, the timeline is increasing, that the changes will be made.
by the way what is
u.ld.width
