Updated ScenePartitionEditorWindow

- Added clear button here instead of in ScenePartitionSOEditor
- Added editor util for horizontal line
- Exposed scene grid cell size value
This commit is contained in:
max
2023-07-04 23:34:54 +02:00
parent 80c90d884a
commit cf3198b0b7
5 changed files with 49 additions and 10 deletions

View File

@ -6,7 +6,7 @@ namespace VertexColor.ScenePartition
public class SceneGrid
{
[SerializeField]
private int cellSize = 10;
public int cellSize = 10;
[SerializeField]
private SceneGridDictionary grid = new SceneGridDictionary();
@ -81,4 +81,4 @@ namespace VertexColor.ScenePartition
return (x, y);
}
}
}
}