-
-
Notifications
You must be signed in to change notification settings - Fork 22k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Functions in AnimationPlayer's Call Method Tracks not called in the editor #75479
Comments
This is the intended behavior so as not to break the editor. However, it has been pointed out previously that this is an inconvenient limitation for functions like Particle that are previewed by a function. See also #73043. |
It would be very convenient to preview work in the editor. Couldn't we make it call the methods only when the script is in tool mode? Additionally, a |
i found a solid work around. i gave the
NOTE: your |
Modified above script for Godot 4. Tested in 4.4.dev4
|
Godot version
v4.1.dev.custom_build [c29866d], also 4.0.1 stable
System information
Windows 10
Issue description
Functions in AnimationPlayer's Method Call Tracks seem to never be called when using the editor. Video:
2023-03-30.00-41-50.mp4
I first stumbled upon this when trying to add a function to RESET-animation to get rid of some resources generated using tool-scripts unnecessarily bloating the tscn-file. First I wasn't sure if the Method Call Tracks are even supposed to work on tool-scripts, but for example according to the original RESET-track proposal (godotengine/godot-proposals#1597) they apparently are supposed to work.
I tried to fix this myself, and got it working somewhat by removing Engine::get_singleton()->is_editor_hint()-check from void AnimationPlayer::_animation_process_animation-function, case Animation::TYPE_METHOD (file scene/animation/animation_player.cpp). Although the functions were called after the change when running the animations, I didn't manage to get them to run (called from RESET-track) before saving the scene. Changing the method call mode to immediate didn't fix the problem.
A bit hacky way to work around this is to use a setter (also shown in the video). Setter is also called before saving when called from a RESET-track.
There is another problem with setters not able to set sub-node's properties (in this case $Label_Setter.text) when loading the scene (probably related to creation order of nodes?). Is this a feature rather than a bug? This is also added as a comment in the MRP's code (and seen in the video). If this is a bug I can create an issue about it (or if anyone wants to create it, feel free to do so). If the null-check is removed this error is shown: Node not found: "Label_Setter" (relative to "Node2D").
res://Main.gd:15 - Invalid set index 'text' (on base: 'null instance') with value of type 'String'.
Steps to reproduce
Add a Method Call Track to an animation, functions to it and play it in the editor. Functions will not be called.
Minimal reproduction project
AnimationPlayerToolFunctionBug.zip
The text was updated successfully, but these errors were encountered: