补充 float4 fixed4 _Time 1: float4是内置向量 (x, y, z, w); float4 a; 访问单独成员a.x, a.y, a.z, a.w;2: fixed4 是内置向量(r, g, b, a); fixed4 c; color.r, color.g, color.b, color.a;3: float3是内置向量(x, y, z);4: fixed3 是内置向量(r, g, b);5: float2 是内置向量(x, y);6: _Time: 自场景加载开始所…