Hi,
I’m using the SlateFunctions.watch() method to watch the state of multiple variables in a custom sandbox widget. These variables update at different rates. For instance, one variable is an integer representation of a datetime that can change based off of a slider in a continuous fashion. The other variable is an object set defined through the platform tab that changes much more discretely. Unfortunately, the watcher on the object set is getting triggered every time the datetime changes, even if the object set is identical to what it was previously. Is there a way to correct this behavior so that the watcher on the object set only triggers when the object set changes? It seems as if a new instance of the object set is defined every time the datetime updates even though they are unrelated. This new (but identical) instance seems to be triggering the watcher.
Thanks,
Jordan