using System; using System.Collections; using System.Collections.Generic; using Unity.VisualScripting; using UnityEngine; public class FuTiAnLi : MonoBehaviour { public GameObject ViewPage; public int MoiveNum; private void OnEnable() { ToOpenSelectMoive(MoiveNum); } private void OnDisable() { FuTiManager.Instance.ToEndVideo(MoiveNum); } // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { } public void ToOpenSelectMoive(int num) { FuTiManager.Instance.ToStartVideo(num); } }