ZhangZhouSpecialEquipment/Assets/Scripts/锅炉/GuoLuAnLi.cs

36 lines
573 B
C#

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