Skip to main content
Inspiring
February 22, 2023
Answered

SDK - Change position of other layer

  • February 22, 2023
  • 1 reply
  • 607 views

Hi

 

If I have one layer (layerA) with an C++ effect that I'm writing my self. Is it possible to have that effect manipulate the transforms of another layer (layerB)?

If yes, can you point me in the right direction?

 

Thanks,

Jakob

This topic has been closed for replies.
Correct answer shachar carmi

you can use the StreamSuite to affect any parameter (which are internally, streams) in the project. look at the "project dumper" sample project to soo how to access streams.

HOWEVER, since CC2105, you can't change the project during a render call, so if what you had in mind is changing the params according to some rendering data, it's going to take creative problem solving...

during UI events (anything other than render and pre-render calls), you can modify the project as you wish.

1 reply

shachar carmiCommunity ExpertCorrect answer
Community Expert
February 22, 2023

you can use the StreamSuite to affect any parameter (which are internally, streams) in the project. look at the "project dumper" sample project to soo how to access streams.

HOWEVER, since CC2105, you can't change the project during a render call, so if what you had in mind is changing the params according to some rendering data, it's going to take creative problem solving...

during UI events (anything other than render and pre-render calls), you can modify the project as you wish.

Inspiring
February 23, 2023

Thanks! That helped. 🙂