过时代码删除

This commit is contained in:
2025-01-11 11:33:46 +08:00
parent 05cfff9ed4
commit 4970c76dd1
19 changed files with 78 additions and 829 deletions
@@ -8,12 +8,12 @@ namespace AibisDream.FixSystem
public void PlugOut();
public Vector3 GetSocketPos();
public bool IsAvailable(); // 新增方法
}
public class BaseSocket : MonoBehaviour, ISocket
{
private bool available = true;
public void PlugIn()
{
Debug.Log("Plug Back InitSocket");
@@ -28,10 +28,10 @@ namespace AibisDream.FixSystem
{
return transform.position;
}
public bool IsAvailable()
{
return available;
}
}
}
}