-
|
I have numerous stores that I am using for the objects in my scene and want to reference sibling objects to do things like change the color for all of them at once. I currently have all of the individual store objects, but using store.set({color: "#000"}, false) doesn't seem to be working. Please let me know if I am missing something. |
Beta Was this translation helpful? Give feedback.
Answered by
EJKIV
Jun 6, 2022
Replies: 1 comment
-
|
I've sorted this. Turns out I had some conflicts in another area of the application that we preventing proper rending. I was able to simply use this: store.set({ visible: true }) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
EJKIV
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've sorted this. Turns out I had some conflicts in another area of the application that we preventing proper rending. I was able to simply use this:
store.set({ visible: true })