BBGamelib.CCJumpBy.initWithDuration C# (CSharp) Method

initWithDuration() public method

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