feat(Console MovePlateform): 实现控制台和移动平台
This commit is contained in:
@@ -3,14 +3,14 @@ using System.Collections.Generic;
|
||||
|
||||
namespace Script.Gameplay.Connect
|
||||
{
|
||||
public interface IConnectable
|
||||
public interface IConnectable : ISignalReceiver
|
||||
{
|
||||
public bool IsEnablePlayerConnect { get; set; }
|
||||
void OnGazeEnter(); // 玩家开始注视时触发
|
||||
void OnGazeExit(); // 玩家停止注视时触发
|
||||
Vector3 GetPosition(); // 获取连接点位置
|
||||
GameObject GetGameObject(); // 获取连接点物体
|
||||
string GetConnectableName(); // 获取连接点名称
|
||||
public List<ConnectionLine> ConnectionLines { get; set; }
|
||||
void SignalActive(bool active, GameObject sender); // 被激活
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user