Search Issue Tracker
Won't Fix
Votes
0
Found in
2019.3.0f1
2020.1
Issue ID
1204106
Regression
No
[PlayableGraph] Playable animations not playing immediately in the Editor Mode
Steps to reproduce:
1. Open the provided project "case_1204106-PlayableGraph.zip"
2. Open "SampleScene" Scene
3. Select "Cube" Prefab in the Hierarchy window
4. In the Inspector window press the "Initialise" button
Expected results: animation is played immediately after pressing the "Initialise" button
Actual results: animation is not played immediately after pressing the "Initialise" button
Reproducible with: 2019.3.0f1, 2019.3.0f2, 2020.1.0a16
Not reproducible with: 2018.4.14f1, 2019.2.16f1, 2019.3.0b12
Could not test with 2017.4.35f1 due to animation not working entirely in Editor Mode
Notes:
-PlayableGraph animations play instantly when in Play Mode
-Minimizing Unity and opening it again often resumes the animation
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
- Expanded Asset Preview Box moves/hides when creating new Asset in Project window
- Player crashes on Meta Quest with "/apex/com.android/runtime/lib64/bionic/libc.so" when using OpenXR Plugin in a specific project
- The Editor's Help menu still lists an old/retired website - "Unity Forum"
- Baked GI loaded by LoadScene call with Additive mode is not cleaned up when unloading the Scene
- "Reflection Probe" borders disappear when interacting with the UI in the Inspector and one of the Reflection Probe editing tools is selected during the Baking process
Resolution Note (2020.1.X):
The user needs to add `EditorUtility.SetDirty(target);` in the `OnInspectorGUI` method to mark the object as dirty. Previously there was a bug with render settings that were always dirtying the scene each frame, but that was causing some serious performance issues and was a bug.