Hello Everyone,
I have two classes: components and a component handler. The component handler has a call in editor function that updates data in the components. It first accesses our database, then sends the information to the component. The component then processes it accordingly. This is done using delegates. It all works perfectly during runtime, but I need it to work in the editor only. I need to be able to click the Update Data function in the editor, then the data is permanently set on all the components, including in packaged builds. Right now, it does not work. The data doesn’t get set on the components. Is there some weird rule with doing things like this when it’s not during runtime?