[Closed] Get Event doesn't work
Hi there!
i have a problem, i am trying to use the Get event in a custom attribute parameter
on <name> get <arg> do <expr>
it works well until i assign a controller to the parameter (it gets animated), when that happens the event just stop working :’(
anyone have a clue about this?, thanks.
I can only say, I’m seeing the same here. If you query the track : v = myCA.mytrack the event is fired, but the controller doesn’t fire the handler here too. I think it’s a safety feature, since the get handler can return any value you would want and controllers can only take values specific to the controller.
But that’s as far as I can guess, it may very well be a bug.
-Johan
Probably that’s the correct behaviour. a controller depends on the Value itself.
this event monitors the value only, and only when its accessed through the CA, but it does not work when the value is accessed directly by the controller itself.
assigning a script/expression controller, seems to work(the CA in between the value and the controller)
:’( . Well i was programming aGUI that is wired to some parameters inside a CA, the way that i thought to update the GUI when the parameter changes, is by using this event… it seeems that i have to use another method