Is there editor preview support for timelines for 3rd party addons with new properties?
I am following these addon instructions: construct.net/en/make-games/manuals/addon-sdk/guide/timeline-integration
I added new parameters like xAngle, yAngle, zAngle (I set the plugin properties to interpolatable: true)
I added these functions to both editor and runtime instance.js:
SetPropertyValueByIndex(index, value) {
GetPropertyValueByIndex(index) {
When I test it, it works well during runtime.
It does not work when in editor (e.g. for timeline preview, the fields do highlight yellow), when I run the timeline in the editor, the new fields do not change and I do not see the above two functions called when in editor with timeline preview.
Taking a quick look at the editor source, I don't see any code calling the above functions. Is it done another way in editor, do I need to add different functions for editor or elsewhere in the editor instance.js?
If you need an example let me know, I can post the project and send an itch key for the addon.