Search Issue Tracker
By Design
Votes
0
Found in
2017.3.0a1
2017.4.12f1
2018.3.0a1
2019.1.0a1
Issue ID
1096975
Regression
No
The Animation clip is not playing when using StateMachineBehaviour OnStateMove() method
How to reproduce:
1. Open attached "RootMotion.zip" project
2. Play the Scene. Notice that Animations are working
3. Go to Assets -> "State" script and uncomment "OnStateMove()" method
4. Play the Scene
Expected result: The objects are animated
Actual result: The Animation clips are not playing
Reproducible: 2017.4.18f1, 2018.3.1f1, 2019.1.0a13
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- [Android] Stage information is not logged when Log Shader Compilation is enabled
- [Vulkan] The memory allocation increases rapidly when there are multiple (three or more) Real-Time Reflection Probes in the Scene
- [macOS] Library folder of the opened project can be deleted which leads to the crash
- “Default Scene” dropdown field contains a spelling mistake “Default Builtin”
- Editor crashes on PPtr<Mesh> after adding Text Mesh and Cloth Components to the same GameObject
Resolution Note:
This is expected. Implementing OnStateMove disables the automatic built-in root motion for this state, so that you can implement it yourself. The animation is playing, but it only has animation curves that apply on the root joint, which you have just decided to override.