We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, assignment to a swizzle is not supported, i.e.:
var v = vec4(1.0) v.xy = vec2(2.0)
We may add support for this at some point, but for now it's easy enough to workaround (if a bit boiler-platey), like so:
var v = vec4(1.0) v = vec4(vec2(2.0), v.zw)
The text was updated successfully, but these errors were encountered:
-=
vec2
No branches or pull requests
Currently, assignment to a swizzle is not supported, i.e.:
We may add support for this at some point, but for now it's easy enough to workaround (if a bit boiler-platey), like so:
The text was updated successfully, but these errors were encountered: