Skip to content

Commit 58ee5f0

Browse files
committed
UnityLayersとPhysicsLayersのInspectorにFoldを追加。
1 parent 1b406ae commit 58ee5f0

5 files changed

+71
-22
lines changed

Assets/PhysicsLayers/Editor/LayersManagerInspector.Drawers.cs

+32-17
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace a3geek.PhysicsLayers.Editors
1111

1212
public partial class LayersManagerInspector
1313
{
14-
private List<bool> collInfosFolders = new List<bool>();
14+
//private List<bool> collInfosFolders = new List<bool>();
1515

1616

1717
private void DrawPhysicsLayers(Dictionary<int, string> layers)
@@ -60,13 +60,14 @@ private void DrawCollInfos(PhysicsLayerInfos layerInfos)
6060
{
6161
EditorGUI.indentLevel += 1;
6262

63-
this.collInfosFolders.SetCount(layerInfos.LayerCount, index => true);
63+
this.collInfosFolders.SetCount(layerInfos.LayerCount, index => new CollInfosFolders());
6464

6565
var i = 0;
6666
foreach(var physicsLayer in layerInfos.GetEnumerable().OrderBy(layer => layer.LayerID))
6767
{
68-
this.collInfosFolders[i] = EditorGUILayout.Foldout(this.collInfosFolders[i], "Collision : " + physicsLayer.LayerName, true);
69-
if(this.collInfosFolders[i] == false)
68+
var folder = this.collInfosFolders[i];
69+
folder.collision = EditorGUILayout.Foldout(folder.collision, "Collision : " + physicsLayer.LayerName, true);
70+
if(this.collInfosFolders[i].collision == false)
7071
{
7172
i++;
7273
continue;
@@ -78,27 +79,41 @@ private void DrawCollInfos(PhysicsLayerInfos layerInfos)
7879
using(var vert = new EditorGUILayout.VerticalScope())
7980
{
8081
var keys = collInfos.Keys.OrderBy(info => info);
81-
var unityKeys = keys.Where(key => key < LayersManager.UnityLayerCount);
8282
var physicsKeys = keys.Where(key => key >= LayersManager.UnityLayerCount);
83-
84-
EditorGUILayout.LabelField("Layers");
85-
foreach(var key in unityKeys)
83+
84+
folder.unityLayer = EditorGUILayout.Foldout(folder.unityLayer, "Unity Layers", true);
85+
if(folder.unityLayer == true)
8686
{
87-
collInfos[key] = this.DrawCollInfo(key, collInfos[key]);
87+
EditorGUI.indentLevel += 1;
88+
89+
var unityKeys = keys.Where(key => key < LayersManager.UnityLayerCount);
90+
foreach(var key in unityKeys)
91+
{
92+
collInfos[key] = this.DrawCollInfo(key, collInfos[key]);
93+
}
94+
95+
EditorGUI.indentLevel -= 1;
8896
}
8997

9098
EditorGUILayout.Space();
91-
EditorGUILayout.LabelField("Physics Layers");
92-
foreach(var key in physicsKeys)
99+
folder.physicsLayer = EditorGUILayout.Foldout(folder.physicsLayer, "Physics Layers", true);
100+
if(folder.physicsLayer == true)
93101
{
94-
if(key < physicsLayer.LayerID)
102+
EditorGUI.indentLevel += 1;
103+
104+
foreach(var key in physicsKeys)
95105
{
96-
collInfos[key] = layerInfos[key][physicsLayer.LayerID].Collision;
97-
}
98-
else
99-
{
100-
collInfos[key] = this.DrawCollInfo(key, collInfos[key]);
106+
if(key < physicsLayer.LayerID)
107+
{
108+
collInfos[key] = layerInfos[key][physicsLayer.LayerID].Collision;
109+
}
110+
else
111+
{
112+
collInfos[key] = this.DrawCollInfo(key, collInfos[key]);
113+
}
101114
}
115+
116+
EditorGUI.indentLevel -= 1;
102117
}
103118
}
104119

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System.Collections;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using UnityEngine;
5+
using UnityEditor;
6+
7+
namespace a3geek.PhysicsLayers.Editors
8+
{
9+
using Common;
10+
using Components;
11+
12+
public partial class LayersManagerInspector
13+
{
14+
private class CollInfosFolders
15+
{
16+
public bool collision = true;
17+
public bool unityLayer = false;
18+
public bool physicsLayer = true;
19+
}
20+
21+
private bool layersFolder = true;
22+
private bool collInfosFolder = true;
23+
private List<CollInfosFolders> collInfosFolders = new List<CollInfosFolders>();
24+
}
25+
}

Assets/PhysicsLayers/Editor/LayersManagerInspector.FolderInfos.cs.meta

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/PhysicsLayers/Editor/LayersManagerInspector.cs

+1-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@ public LayersManager Target
1616
{
1717
get { return (LayersManager)this.target; }
1818
}
19-
20-
private bool layersFolder = true;
21-
private bool collInfosFolder = true;
22-
19+
2320

2421
public override void OnInspectorGUI()
2522
{

Assets/PhysicsLayers/Version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.1.0

0 commit comments

Comments
 (0)