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