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
- Red spots appear when Blending Lighting Scenarios using Adaptive Probe Volumes
- [Windows] About Unity Window needs to be opened twice to adapt to resolution
- NullReferenceException and temporary graph corruption after entering playmode if output node connection was changed
- Sprite Renderer with Animation does not reflect Sprite changes in the Scene when switching Mask Interaction
- User is redirected to a non-existing online documentation link when clicking on "?" help button inside Inspector window while Animator Override Controller is selected
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.