There's any callback function to notify when the value of a shared variable changes?

orlandobatista

New member
I need to know when the value of a shared variable changes. There's a way to do it?
Also, whats the purpose of ValueChanged method?
 
There isn't a built in way, but if you download the runtime source package you can add a callback to the SharedVariable class. I have also made a note of this for future versions. ValueChanged is specific to network support so it won't help in this case.
 
Top