石头功能

This commit is contained in:
2024-11-12 14:32:02 +08:00
parent 577ec13fa5
commit fccc58f5b9
50 changed files with 8871 additions and 1225 deletions
@@ -0,0 +1,31 @@
using UnityEngine;
namespace AibisDream.FixSystem
{
public class OscilloscopeSystem : MonoBehaviour
{
#region
private OscilloscopeViewer _oscilloscopeViewer;
private BodyModuleSystem _bodyModuleSystem;
#endregion
public void InitComponentRefs()
{
_oscilloscopeViewer = transform.Find("Oscilloscope Viewer").GetComponent<OscilloscopeViewer>();
}
public void DeepIn()
{
// 插线系统不正常就返回
if (!_bodyModuleSystem.IsPlugInSocket())
{
_oscilloscopeViewer.ShowScreenMessage("未插入任何目标模块");
return;
}
//
}
}
}