37 lines
569 B
C#
37 lines
569 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Flow4_5 : FlowsBase
|
|
{
|
|
|
|
public GameObject ½»»¥ÎïÌå;
|
|
//public GameObject Ìáʾ;
|
|
//public Button ¹¤×÷Ö¤;
|
|
// Start is called before the first frame update
|
|
protected override void Start()
|
|
{
|
|
|
|
base.Start();
|
|
½»»¥ÎïÌå.SetActive(true);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
Next();
|
|
}
|
|
protected override void Next()
|
|
{
|
|
|
|
base.Next();
|
|
|
|
|
|
}
|
|
}
|