Remote debug output errors
https://github.com/imjp94/gd-YAFSM/blob/36fe340f27252e157fa1de2c96caf72787c656ef/addons/imjp94.yafsm/scenes/StateMachineEditorLayer.gd#L85-L99
In the line 99, these code sometimes may result this error when I use the remote debug part of this plugin:
res://addons/imjp94.yafsm/scenes/StateMachineEditorLayer.gd:101 - Invalid get index 'self_modulate' (on base: 'null instance').
And there also have some other errors output like:
scene/animation/tween.cpp:103 - Parameter "p_target" is null.
I suppose there are some places in the codes forgetting the null condition. But the godot editor just print the information from assertion in C++ Code of Tween. So, I cannot find which part of GDScript result it. I think it must not happen in my script code, because I have not used the tween in my code.
Thanks for any help.
I tried to reproduce the bug with a simple state machine, but it works fine:
https://github.com/imjp94/gd-YAFSM/assets/11486079/66393c8f-57dd-4cc2-9191-d0063272c5e5
Can you provide a minimal project that can reproduce the bug?