File tree 2 files changed +6
-0
lines changed
com.unity.ml-agents.extensions/Tests/Runtime/Input
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,11 @@ public override void Setup()
49
49
public override void TearDown ( )
50
50
{
51
51
m_ActuatorComponent . CleanupActionAsset ( ) ;
52
+ var objects = GameObject . FindObjectsOfType < GameObject > ( ) ;
53
+ foreach ( var o in objects )
54
+ {
55
+ UnityEngine . Object . DestroyImmediate ( o ) ;
56
+ }
52
57
base . TearDown ( ) ;
53
58
}
54
59
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ and this project adheres to
18
18
### Bug Fixes
19
19
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
20
20
- Fixed the bug where curriculum learning would crash because of the incorrect run_options parsing. (#5586 )
21
+ - Fixed tests with input system package upgrade from 1.1.0 to 1.1.1. (#5542 )
21
22
#### ml-agents / ml-agents-envs / gym-unity (Python)
22
23
23
24
## [ 2.0.0] - 2021-09-01
You can’t perform that action at this time.
0 commit comments