BBGamelib.CCJumpBy.initWithDuration C# (CSharp) 메소드

initWithDuration() 공개 메소드

public initWithDuration ( float t, Vector2 pos, float height, uint jumps ) : void
t float
pos UnityEngine.Vector2
height float
jumps uint
리턴 void
		public void initWithDuration(float t, Vector2 pos, float height, uint jumps){
			base.initWithDuration (t);
			_delta = pos;
			_height = height;
			_jumps = jumps;
		}