BBGamelib.CCTintBy.initWithDuration C# (CSharp) Method

initWithDuration() public method

public initWithDuration ( float t, short r, short g, short b ) : void
t float
r short
g short
b short
return void
		public virtual void initWithDuration(float t, short r, short g, short b){
			base.initWithDuration (t);
			_deltaR = r;
			_deltaG = g;
			_deltaB = b;
		}