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
- [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 (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.