コード例 #1
0
 public DialoguePhaseSM([NonExplicitParameter] PhaseProperties props, string file) : base(new List <StateMachine>() {
     new PhaseSequentialActionSM(new List <StateMachine>() {
         new ReflectableLASM(SMReflection.Dialogue(file)),
         new ReflectableLASM(SMReflection.ShiftPhase())
     }, 0f)
 }, props, 0)
 {
 }
コード例 #2
0
ファイル: TextSM.cs プロジェクト: Bagoum/danmokou
        public static TTaskPattern Wait(Synchronizer synchr)
        {
            var tp = SMReflection.Wait(synchr);

            return(smh => tp(smh));
        }