정보창, 에디트 구조 작성

This commit is contained in:
logonkhi
2025-06-19 19:24:30 +09:00
parent 21020f590f
commit a6ac3e6b78
1486 changed files with 697081 additions and 1507 deletions

View File

@@ -0,0 +1,22 @@
using UnityEngine;
namespace UVC.Editor
{
public class EditableObject3D : EditableObject
{
// 3D 객체 고유의 속성 및 로직
// 예: Material, Mesh 등
public override void OnSelect()
{
// 외곽선 표시 로직 호출
Debug.Log($"{name} selected.");
}
public override void OnDeselect()
{
// 외곽선 숨김 로직 호출
Debug.Log($"{name} deselected.");
}
}
}