color.operator /运算符 除法 staticoperator /(a: color,b: float) : color description描述 divides color a by the float b. each color component is scaled separately. javascript using unityengine; using system.collections; public class example :monobehaviour{ public color graycolor = color.white / 2; } // white / 2 = gray //白色 ÷ 2 = 灰色 var graycolor : color = color.white / 2; |