Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Este repositório está arquivado. Você pode visualizar os arquivos e realizar clone, mas não poderá realizar push nem abrir issues e 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);
- }
- }
- }
- }
|