Skip to content

Commit 79ed595

Browse files
committed
GameObjectのActiveが一度falseになり、再びtrueにするとCollision設定がリセットされる問題に対応。
1 parent 565951d commit 79ed595

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

Assets/PhysicsLayers/Example/Scripts/TestController.cs

+13
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,24 @@ public class TestController : MonoBehaviour
1717
[SerializeField]
1818
private FieldInfo fieldInfo = new FieldInfo();
1919

20+
private List<AbstractCollisionCallbacks> collisions = new List<AbstractCollisionCallbacks>();
21+
2022

2123
void Awake()
2224
{
2325
StartCoroutine(this.Spawn());
2426
}
2527

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+
2638
private IEnumerator Spawn()
2739
{
2840
for(var i = 0; i < this.fieldInfo.Infos.Count; i++)
@@ -39,6 +51,7 @@ private IEnumerator Spawn()
3951
obj.transform.parent = parent.transform;
4052

4153
obj.GetComponent<Renderer>().material.SetColor("_Color", info.Color);
54+
this.collisions.Add(obj);
4255

4356
yield return new WaitForSeconds(0f);
4457
}

Assets/PhysicsLayers/Scripts/Layers/Abstracts/AbstractLayer.cs

+20
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ namespace a3geek.PhysicsLayers.Layers.Abstracts
99
[DisallowMultipleComponent]
1010
public abstract class AbstractLayer : MonoBehaviour
1111
{
12+
public bool Managemented { get; protected set; }
1213
public abstract int LayerID { get; protected set; }
1314
public abstract bool AutoManagement { get; }
1415

@@ -25,6 +26,14 @@ protected virtual void Awake()
2526
this.Management();
2627
}
2728
}
29+
30+
protected virtual void OnEnable()
31+
{
32+
if(this.Managemented == false && this.AutoManagement == true)
33+
{
34+
this.Management();
35+
}
36+
}
2837

2938
protected virtual void OnDestroy()
3039
{
@@ -33,6 +42,16 @@ protected virtual void OnDestroy()
3342
this.UnManagement();
3443
}
3544
}
45+
46+
protected virtual void OnDisable()
47+
{
48+
if(this.AutoManagement == true)
49+
{
50+
this.UnManagement();
51+
}
52+
53+
this.Managemented = false;
54+
}
3655

3756
public virtual bool ChangeLayer(int layerID)
3857
{
@@ -55,6 +74,7 @@ public virtual void Management()
5574
if(this.ManagerInstance != null)
5675
{
5776
this.Management(this.ManagerInstance);
77+
this.Managemented = true;
5878
}
5979
}
6080

Assets/PhysicsLayers/Version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.1
1+
2.3.2

0 commit comments

Comments
 (0)