E_ElecCompetition/Electrical_inspectionCompet.../Assets/Script/Flow/Flow4_2.cs

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();
}
}