39 lines
659 B
C#
39 lines
659 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class Flow4_2 : FlowsBase
|
|
{
|
|
public GameObject[] 按钮高亮提示;
|
|
|
|
//public GameObject 提示;
|
|
//public Button 工作证;
|
|
// Start is called before the first frame update
|
|
protected override void Start()
|
|
{
|
|
|
|
base.Start();
|
|
|
|
for (int i = 0; i < 按钮高亮提示.Length; i++)
|
|
{
|
|
按钮高亮提示[i].SetActive(true);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
Next();
|
|
}
|
|
protected override void Next()
|
|
{
|
|
|
|
base.Next();
|
|
|
|
|
|
}
|
|
}
|