-
Notifications
You must be signed in to change notification settings - Fork 341
Expand file tree
/
Copy pathBoxBoundsExampleEditor.cs
More file actions
36 lines (31 loc) · 1.27 KB
/
BoxBoundsExampleEditor.cs
File metadata and controls
36 lines (31 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//------------------------------------------------------------
// Author: 静风霁
// Mail: 1778139321@qq.com
// Data: 2021年4月14日 10:55:04
//------------------------------------------------------------
using UnityEditor;
using UnityEditor.IMGUI.Controls;
using UnityEngine;
[CustomEditor(typeof(BoxBoundsExample))]
public class BoundsExampleEditor : Editor
{
private BoxBoundsHandle m_BoxBoundsHandle = new BoxBoundsHandle(typeof(BoundsExampleEditor).GetHashCode());
protected virtual void OnSceneGUI()
{
BoxBoundsExample boundsExample = (BoxBoundsExample)target;
m_BoxBoundsHandle.center = boundsExample.transform.position + boundsExample.BoxBounds.center;
m_BoxBoundsHandle.size = boundsExample.BoxBounds.size;
m_BoxBoundsHandle.handleColor = Color.green;
m_BoxBoundsHandle.wireframeColor = Color.green;
EditorGUI.BeginChangeCheck();
m_BoxBoundsHandle.DrawHandle();
if (EditorGUI.EndChangeCheck())
{
Undo.RecordObject(boundsExample, "Change Bounds");
Bounds newBounds = new Bounds();
newBounds.center = m_BoxBoundsHandle.center;
newBounds.size = m_BoxBoundsHandle.size;
boundsExample.BoxBounds = newBounds;
}
}
}