Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Dieses Repo ist archiviert. Du kannst Dateien sehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.
|
- using System;
- using System.Collections.Generic;
- using UnityEngine;
- using coa4u;
-
- [System.Serializable]
- public class SeqActor : Actor
- {
- protected State[] states;
- protected int index;
- protected List<int> stateLog = new List<int>();
- protected ActionInstant currentStateAction;
-
- public void SetState(int idx)
- {
- if (idx < states.Length)
- {
- stateLog.Add(idx);
- index = idx;
- if (currentStateAction != null)
- RemoveAction(currentStateAction);
- currentStateAction = states[idx].action;
- AttachAction(currentStateAction);
- }
- else
- {
- throw new Exception("Actor doesn't have the state " + idx.ToString());
- }
- }
-
- public void SetState(string name)
- {
- SetState(Array.FindIndex<State>(states, x => x.name == name));
- }
-
- public int currentStateIndex
- {
- get
- {
- return index;
- }
- }
-
- public string currentStateName
- {
- get
- {
- return states[index].name;
- }
- }
-
- public List<int> log
- {
- get
- {
- return stateLog;
- }
- }
- }
|