1. 程式人生 > >Egret_簡單的封裝方法

Egret_簡單的封裝方法

 

////////////隨機顏色***//////////////////////////
private getRdmClr(): number {
return (Math.floor(Math.random() * 0xff) << 16)
+ (Math.floor(Math.random() * 0xff) << 8)
+ Math.floor(Math.random() * 0xff);
}