38 lines
630 B
C#
38 lines
630 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Unity.VisualScripting;
|
|
using UnityEngine;
|
|
|
|
public class FuTiAnLi : MonoBehaviour
|
|
{
|
|
public GameObject ViewPage;
|
|
|
|
private void OnEnable()
|
|
{
|
|
ToOpenSelectMoive(1);
|
|
}
|
|
|
|
private void OnDisable()
|
|
{
|
|
FuTiManager.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)
|
|
{
|
|
FuTiManager.Instance.ToStartVideo(num);
|
|
}
|
|
}
|