File tree 3 files changed +34
-1
lines changed
3 files changed +34
-1
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,24 @@ public class TestController : MonoBehaviour
17
17
[ SerializeField ]
18
18
private FieldInfo fieldInfo = new FieldInfo ( ) ;
19
19
20
+ private List < AbstractCollisionCallbacks > collisions = new List < AbstractCollisionCallbacks > ( ) ;
21
+
20
22
21
23
void Awake ( )
22
24
{
23
25
StartCoroutine ( this . Spawn ( ) ) ;
24
26
}
25
27
28
+ void Update ( )
29
+ {
30
+ if ( Input . GetKeyDown ( KeyCode . Space ) )
31
+ {
32
+ this . collisions
33
+ . FindAll ( coll => coll . LayerID == LayersManager . UnityLayerCount )
34
+ . ForEach ( coll => coll . gameObject . SetActive ( ! coll . gameObject . activeSelf ) ) ;
35
+ }
36
+ }
37
+
26
38
private IEnumerator Spawn ( )
27
39
{
28
40
for ( var i = 0 ; i < this . fieldInfo . Infos . Count ; i ++ )
@@ -39,6 +51,7 @@ private IEnumerator Spawn()
39
51
obj . transform . parent = parent . transform ;
40
52
41
53
obj . GetComponent < Renderer > ( ) . material . SetColor ( "_Color" , info . Color ) ;
54
+ this . collisions . Add ( obj ) ;
42
55
43
56
yield return new WaitForSeconds ( 0f ) ;
44
57
}
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ namespace a3geek.PhysicsLayers.Layers.Abstracts
9
9
[ DisallowMultipleComponent ]
10
10
public abstract class AbstractLayer : MonoBehaviour
11
11
{
12
+ public bool Managemented { get ; protected set ; }
12
13
public abstract int LayerID { get ; protected set ; }
13
14
public abstract bool AutoManagement { get ; }
14
15
@@ -25,6 +26,14 @@ protected virtual void Awake()
25
26
this . Management ( ) ;
26
27
}
27
28
}
29
+
30
+ protected virtual void OnEnable ( )
31
+ {
32
+ if ( this . Managemented == false && this . AutoManagement == true )
33
+ {
34
+ this . Management ( ) ;
35
+ }
36
+ }
28
37
29
38
protected virtual void OnDestroy ( )
30
39
{
@@ -33,6 +42,16 @@ protected virtual void OnDestroy()
33
42
this . UnManagement ( ) ;
34
43
}
35
44
}
45
+
46
+ protected virtual void OnDisable ( )
47
+ {
48
+ if ( this . AutoManagement == true )
49
+ {
50
+ this . UnManagement ( ) ;
51
+ }
52
+
53
+ this . Managemented = false ;
54
+ }
36
55
37
56
public virtual bool ChangeLayer ( int layerID )
38
57
{
@@ -55,6 +74,7 @@ public virtual void Management()
55
74
if ( this . ManagerInstance != null )
56
75
{
57
76
this . Management ( this . ManagerInstance ) ;
77
+ this . Managemented = true ;
58
78
}
59
79
}
60
80
Original file line number Diff line number Diff line change 1
- 2.3.1
1
+ 2.3.2
You can’t perform that action at this time.
0 commit comments