Exemplo n.º 1
0
		public void endLoop() {
			this.currentLoop = null;
			this.insideLoop = false;
		}
Exemplo n.º 2
0
		public virtual void startLoop(int startTime, int loopCount) {
			this.currentLoop = new CommandLoop(startTime, loopCount);
			AddCommand(currentLoop);
			this.insideLoop = true;
		}
Exemplo n.º 3
0
		public virtual void startTriggerLoop(string loopTrigger, int startTime, int endTime) {
			this.currentLoop = new CommandTriggerLoop(loopTrigger, startTime, endTime);
			AddCommand(currentLoop);
			this.insideLoop = true;
		}
Exemplo n.º 4
0
 internal void endLoop()
 {
     this.currentLoop = null;
     this.insideLoop = false;
 }