I have a Quartz Composition with a Cube, and X/Y/Z rotation inputs are published.
On Interface Builder I made a QCView
and a QCPatchController
with the previous Quartz Composition loaded. In QCView
the Patch Controller is binded, and the rotation published ports are binded too to three NSSlider
, so when I change the value of the NSSlider's
then the cube rotates.
All this works fine, but I want to change the rotation values of the cube from the App Delegate on XCode. I tried to change the value of the NSSliders
with IBOutlets pointing to them, but this change doesn't apply to the cube, like it does when I change the Sliders directly with my mouse.
What should I instanciate and/or how to access and change this Input_Ports.value
throught the CQPatchController
?
Thank you very much for reading, i really need help!