BBGamelib.CCTintTo.initWithDuration C# (CSharp) Method

initWithDuration() public method

public initWithDuration ( float t, byte r, byte g, byte b ) : void
t float
r byte
g byte
b byte
return void
		public virtual void initWithDuration(float t, byte r, byte g, byte b){
			base.initWithDuration (t);
			_to = new Color32(r, g, b, 255);
		}