37 lines
565 B
C#
37 lines
565 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
public class Flow2_1 : FlowsBase
|
|
{
|
|
public GameObject[] 按钮高亮提示;
|
|
|
|
//public GameObject 提示;
|
|
public Button 工作证;
|
|
// Start is called before the first frame update
|
|
protected override void Start()
|
|
{
|
|
|
|
base.Start();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
Next();
|
|
}
|
|
protected override void Next()
|
|
{
|
|
|
|
base.Next();
|
|
|
|
|
|
}
|
|
|
|
}
|