Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Tento repozitář je archivovaný. Můžete prohlížet soubory, klonovat, ale nemůžete nahrávat a vytvářet nové úkoly a požadavky na natažení.
|
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);
- }
- }
- }
- }
|