DongHuaStart.cs 396 B

12345678910111213141516171819
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class DongHuaStart : MonoBehaviour
  5. {
  6. public LangChaoDongHua startDonghua;
  7. // Start is called before the first frame update
  8. void Start()
  9. {
  10. // startDonghua.startdonghua();
  11. }
  12. private void OnEnable()
  13. {
  14. startDonghua.reset();
  15. startDonghua.startdonghua();
  16. }
  17. }