40 lines
780 B
C#
40 lines
780 B
C#
|
|
using UnityEngine;
|
||
|
|
using UnityEngine.UI;
|
||
|
|
using UVC.UI.Buttons;
|
||
|
|
using UVC.UI.Window;
|
||
|
|
|
||
|
|
namespace SHI.modal
|
||
|
|
{
|
||
|
|
public class BlockDetailModal: MonoBehaviour
|
||
|
|
{
|
||
|
|
[SerializeField]
|
||
|
|
private Button closeButton;
|
||
|
|
|
||
|
|
[SerializeField]
|
||
|
|
private HierarchyWindow hierarchyWindow;
|
||
|
|
|
||
|
|
[SerializeField]
|
||
|
|
private ModelDetailView modelView;
|
||
|
|
|
||
|
|
[SerializeField]
|
||
|
|
private Transform chartView;
|
||
|
|
|
||
|
|
[SerializeField]
|
||
|
|
private Button modelViewExpandButton;
|
||
|
|
|
||
|
|
[SerializeField]
|
||
|
|
private Button chartViewExpandButton;
|
||
|
|
|
||
|
|
[SerializeField]
|
||
|
|
private Button dragButton;
|
||
|
|
|
||
|
|
[SerializeField]
|
||
|
|
private ImageToggle showHierarchyButton;
|
||
|
|
|
||
|
|
public void Start()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|