Search Issue Tracker
By Design
Votes
0
Found in
2019.1.0a9
Issue ID
1101127
Regression
No
Changing "Update Mode" in Animator has no effect when it is done in Play mode
How to reproduce:
1. Open attached project "case_1084441-Playables_Update_Mode_Bug.zip" and scene "SampleScene"
2. In Hierarchy window, select "Cube"
3. In Inspector window, set Animator (component) -> Update Mode -> Normal
4. In Inspector window, set NewBehaviourScript (component) -> Director Update Mode -> Game Time
5. Enter Play mode
6. Observe Console window (in my case numbers around 0.0001695806 were printed)
7. While still in Play mode change Cube -> Animator (component) -> Update Mode -> Animate Physics
8. Observe Console window
Expected result: printed values are constantly "0.0167"
Actual result: printed values in my case were around "0.0001695806" (seems like the mode have not changed)
Reproducible with: 2017.4.15f1, 2018.3.0b11, 2019.1.0a9
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
- Crash on mono_dump_native_crash_info when changing a Particle System Renderer’s Material Shader to Standard Unlit
- VFX Prefab doesn’t have Preview icon in Project window and Preview window is empty in Inspector window
- “RenderSettings customReflection texture has invalid type” error keeps getting thrown even when Environment Reflections was set back to Skybox from Custom with an invalid texture
- Particle System with the custom Material breaks the Scene view when the material is using a Shader Graph with the Texture with the power of negative value
- Invalid asset path & Invalid value for font MissingAssetReference Warnings are spammed when deleting a Font used by any Element in UI Builder
Resolution Note (2019.3.X):
This is by design: the Animator UpdateMode only influences the PlayableGraph created for its controller; all the other PlayableGraphs connected to the Animator through a PlayableOutput must be synced with the Animator UpdateMode manually. This is because the Animator only controls its own PlayableGraph created from the controller, but all the other PlayableGraph must be controlled by an external entity, whether it's a user script, or Timeline for instance.