13 lines
362 B
C#
13 lines
362 B
C#
|
using UnityEngine;
|
||
|
using Gameplay.Player;
|
||
|
namespace Interface
|
||
|
{
|
||
|
public interface IEditable
|
||
|
{
|
||
|
void OnGazeEnter(PlayerEditController editor); // 玩家开始注视时触发
|
||
|
void OnGazeExit(PlayerEditController editor); // 玩家停止注视时触发
|
||
|
void BeginEdit();
|
||
|
void EndEdit();
|
||
|
IEditable GetEditable();
|
||
|
}
|
||
|
}
|