ShaderInterpreter.ShaderMath.uint2.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : uint2
return uint2
        public static uint2 operator *( uint a, uint2 b )
        {
            return new uint2( a * b.x, a * b.y );
        }