InfraredGuidanceView.cs 550 B

123456789101112131415161718192021222324
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class InfraredGuidanceView : JCUnityLib.ViewBase
  5. {
  6. // Start is called before the first frame update
  7. void Start()
  8. {
  9. }
  10. public void OnClick_Enter() {
  11. //½øÈë±ê¶¨µÄÒ³Ãæ
  12. AudioMgr.ins.PlayBtn();
  13. ViewManager2.ShowView(ViewManager2.Path_InfraredGuidanceViewCalibration);
  14. }
  15. public void OnClick_Back()
  16. {
  17. AudioMgr.ins.PlayBtn();
  18. ViewMgr.Instance.DestroyView<InfraredGuidanceView>();
  19. }
  20. }