FlowAnimator.cs 331 B

123456789101112131415
  1. using WS;
  2. public class FlowAnimator : FlowBase
  3. {
  4. public override void StartFlow()
  5. {
  6. base.StartFlow();
  7. FacadeComponent.Instance.GetController<PointController>().ShowPoint(0, null);
  8. }
  9. public override void UpdateFlow() { }
  10. // Start is called before the first frame update
  11. void Start() { }
  12. }