Search Issue Tracker
Fixed in 2020.2.X
Votes
2
Found in
2019.1.7f1
Issue ID
1246997
Regression
No
"Assembly Cache Should Be Empty" appears in the console when evaluating a Timeline during OnEnable
1) Open the attached project
2) Open the "TestScene" scene.
3) Go in play mode.
Result: "Assembly Cache Should Be Empty" message appears in the console.
Expected: No message in the console.
Repro with Unity 2019.3.13f1 (the bug is likely there since the beginning of director, in 2017).
This project contains a Monobehaviour on the Gameobject that contains the PlayableDirector. This monobehaviour evaluates a Director during OnEnable:
```
[ExecuteInEditMode]
public class EvaluateTimeline : MonoBehaviour
{
void OnEnable()
{
var director = GetComponent<PlayableDirector>();
director.Evaluate();
}
}
```
Comments (2)
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
- Errors are logged when importing an asset at a path with Firebase
- Entering too big of a number in 2D Renderer Lightmode Tags freezes the Editor
- Crash on GUIManager::DoGUIEvent when focusing on the Game view window on a specific project
- Asset creation in the Project Browser is not always undone/inconsistent when the undo shortcut is pressed right after creating an asset
- JobTempAlloc memory leak warning is thrown when the Player is shut down
damagefilter
Jul 04, 2020 12:21
Can confirm that it happens in earlier versions as well.
Happening on 2018.4.23 here.