No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Este repositorio está archivado. Puede ver los archivos y clonarlo, pero no puede subir cambios o reportar incidencias ni pedir Pull Requests.
|
1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using UnityEngine;
-
- namespace coa4u
- {
- class ActionSwitchState : ActionInstant
- {
- string stateName;
- int stateIndex;
-
- public ActionSwitchState(int targetIndex)
- : base()
- {
- stateIndex = targetIndex;
- }
-
- public ActionSwitchState(string targetName)
- : base()
- {
- stateName = targetName;
- }
-
- public override void Start()
- {
- base.Start();
- if (!(target is SeqActor))
- {
- throw new Exception("Target is not capable of switching states.");
- }
- if (stateIndex != null)
- {
- ((SeqActor)target).SetState(stateIndex);
- }
- else
- {
- ((SeqActor)target).SetState(stateName);
- }
- }
- }
- }
|