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

initWithDuration() 공개 메소드

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