2023-06-24 14:27:50 +02:00
|
|
|
using UnityEditor;
|
2023-06-25 04:39:12 +02:00
|
|
|
using UnityEngine;
|
2023-06-24 14:27:50 +02:00
|
|
|
|
|
|
|
namespace VertexColor.ScenePartition.Editor
|
|
|
|
{
|
|
|
|
[CustomEditor(typeof(ScenePartitionSO))]
|
|
|
|
public class ScenePartitionSOEditor : UnityEditor.Editor
|
|
|
|
{
|
2023-07-03 23:35:29 +02:00
|
|
|
private ulong id = 0;
|
2023-06-28 01:07:27 +02:00
|
|
|
private int gridId = 0;
|
2023-06-25 04:39:12 +02:00
|
|
|
|
2023-06-24 14:27:50 +02:00
|
|
|
public override void OnInspectorGUI()
|
|
|
|
{
|
|
|
|
ScenePartitionSO scenePartitionSO = (target as ScenePartitionSO);
|
|
|
|
|
2023-06-25 04:39:12 +02:00
|
|
|
DrawDefaultInspector();
|
|
|
|
|
2023-06-24 14:27:50 +02:00
|
|
|
serializedObject.Update();
|
2023-06-24 16:43:10 +02:00
|
|
|
//EditorGUILayout.PropertyField(sceneAssetProperty);
|
2023-06-24 14:27:50 +02:00
|
|
|
serializedObject.ApplyModifiedProperties();
|
|
|
|
|
2023-07-09 23:01:48 +02:00
|
|
|
EditorGUIUtils.HorizontalLine();
|
2023-06-24 14:27:50 +02:00
|
|
|
|
2023-06-26 01:03:14 +02:00
|
|
|
if (scenePartitionSO.SceneAsset == null)
|
2023-06-24 14:27:50 +02:00
|
|
|
{
|
2023-06-24 16:43:10 +02:00
|
|
|
if (GUILayout.Button("Create Scene"))
|
|
|
|
{
|
|
|
|
scenePartitionSO.CreateScene();
|
|
|
|
}
|
2023-06-24 14:27:50 +02:00
|
|
|
}
|
2023-06-24 16:43:10 +02:00
|
|
|
else
|
2023-06-24 14:27:50 +02:00
|
|
|
{
|
2023-07-09 23:01:48 +02:00
|
|
|
if (GUILayout.Button("Open Scene Data Folder"))
|
2023-06-24 16:43:10 +02:00
|
|
|
{
|
2023-07-09 23:01:48 +02:00
|
|
|
EditorUtility.RevealInFinder(ScenePartitionUtils.GetDataPath(scenePartitionSO));
|
2023-06-24 16:43:10 +02:00
|
|
|
}
|
|
|
|
|
2023-07-09 23:01:48 +02:00
|
|
|
EditorGUIUtils.HorizontalLine();
|
2023-06-27 01:09:28 +02:00
|
|
|
|
2023-07-09 23:08:55 +02:00
|
|
|
if (GUILayout.Button("Load All"))
|
2023-06-24 16:43:10 +02:00
|
|
|
{
|
2023-07-09 23:08:55 +02:00
|
|
|
scenePartitionSO.LoadAll();
|
2023-06-24 16:43:10 +02:00
|
|
|
}
|
|
|
|
|
2023-07-09 23:01:48 +02:00
|
|
|
using (new EditorGUILayout.HorizontalScope())
|
2023-06-24 16:43:10 +02:00
|
|
|
{
|
2023-07-09 23:08:55 +02:00
|
|
|
if (GUILayout.Button(new GUIContent("Unload", "Empty the scene and save it (so it has no changes in source control)."), EditorStyles.miniButtonLeft))
|
2023-07-09 23:01:48 +02:00
|
|
|
{
|
2023-07-09 23:08:55 +02:00
|
|
|
scenePartitionSO.Unload();
|
2023-07-09 23:01:48 +02:00
|
|
|
}
|
|
|
|
|
2023-07-09 23:08:55 +02:00
|
|
|
if (GUILayout.Button(new GUIContent("Reload", "Discard changes and reload loaded partitions."), EditorStyles.miniButtonRight))
|
2023-07-09 23:01:48 +02:00
|
|
|
{
|
|
|
|
scenePartitionSO.Reload();
|
|
|
|
}
|
2023-06-24 16:43:10 +02:00
|
|
|
}
|
|
|
|
|
2023-07-09 23:08:55 +02:00
|
|
|
if (GUILayout.Button("Save"))
|
|
|
|
{
|
|
|
|
scenePartitionSO.Save();
|
|
|
|
}
|
2023-06-25 04:39:12 +02:00
|
|
|
|
2023-07-29 01:51:21 +02:00
|
|
|
EditorGUIUtils.HorizontalLine();
|
|
|
|
|
2023-07-09 23:01:48 +02:00
|
|
|
using (new EditorGUILayout.HorizontalScope())
|
2023-06-24 16:43:10 +02:00
|
|
|
{
|
2023-07-09 23:01:48 +02:00
|
|
|
id = (ulong)EditorGUILayout.LongField("id", (long)id);
|
2023-06-25 04:39:12 +02:00
|
|
|
|
2023-07-09 23:01:48 +02:00
|
|
|
if (GUILayout.Button("Load Id"))
|
|
|
|
{
|
|
|
|
scenePartitionSO.LoadPartitions(new ulong[1] { id });
|
|
|
|
}
|
|
|
|
}
|
2023-06-25 04:39:12 +02:00
|
|
|
|
2023-07-09 23:01:48 +02:00
|
|
|
EditorGUIUtils.HorizontalLine();
|
2023-06-25 04:39:12 +02:00
|
|
|
|
2023-07-09 23:01:48 +02:00
|
|
|
ScenePartitionSceneViewEditor.cellSize = EditorGUILayout.IntSlider("cellSize", ScenePartitionSceneViewEditor.cellSize, 10, 1000);
|
2023-06-28 01:07:27 +02:00
|
|
|
|
|
|
|
if (GUILayout.Button("GenerateSceneGrid"))
|
|
|
|
{
|
|
|
|
scenePartitionSO.GenerateSceneGridData();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scenePartitionSO.Data.SceneGrid != null)
|
|
|
|
{
|
2023-07-09 23:08:55 +02:00
|
|
|
using (new EditorGUILayout.HorizontalScope())
|
2023-07-09 23:01:48 +02:00
|
|
|
{
|
2023-07-09 23:08:55 +02:00
|
|
|
gridId = EditorGUILayout.IntField("gridId", gridId);
|
|
|
|
|
|
|
|
if (GUILayout.Button("LoadSceneGrid"))
|
|
|
|
{
|
|
|
|
scenePartitionSO.LoadCell(gridId);
|
|
|
|
}
|
2023-07-09 23:01:48 +02:00
|
|
|
}
|
2023-06-28 01:07:27 +02:00
|
|
|
}
|
2023-06-24 14:27:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|