ChallengeGameView.cs 467 B

123456789101112131415161718192021222324252627
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. using UnityEngine.SceneManagement;
  6. /* 挑战模式游戏界面 */
  7. public class ChallengeGameView : MonoBehaviour
  8. {
  9. public Text arrows;
  10. public static ChallengeGameView ins;
  11. void Start()
  12. {
  13. ins = this;
  14. }
  15. public void Shoot()
  16. {
  17. ArmBow.ins.ADS_fire();
  18. }
  19. public void SetBasePoint()
  20. {
  21. }
  22. }