コード例 #1
0
		public Then(When when, string step) {
			this.when = when;
			this.step = step;
			this.duration = "1 frame";
		}
コード例 #2
0
		public Then(When when, string step, string duration) {
			this.when = when;
			this.step = step;
			this.duration = duration;
		}
コード例 #3
0
		public When When(string step) {
			when = new When(step);
			return when;
		}