石头功能
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
//
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user