feat(Console MovePlateform): 实现控制台和移动平台

This commit is contained in:
2025-10-22 11:32:53 +08:00
parent 3d014cd2c2
commit 3cdd41ea49
27 changed files with 936 additions and 46 deletions

View File

@@ -64,7 +64,7 @@ namespace Script.Gameplay.Edit
private bool isActive = true;
public bool IsEditableActive
public bool IsComponentActive
{
get => isActive;
set
@@ -82,6 +82,8 @@ namespace Script.Gameplay.Edit
#region Connectable
public bool IsEnablePlayerConnect { get; set; } = true;
public void OnGazeEnter()
{
}
@@ -106,7 +108,7 @@ namespace Script.Gameplay.Edit
}
public List<ConnectionLine> ConnectionLines { get; set; } = new List<ConnectionLine>();
public void SignalActive(bool active, GameObject sender)
public void OnSignalReceived(bool active, GameObject sender)
{
Interact(sender);
}