-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
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
Unable to declare negative numbers #3
Comments
thanks for the report! I'll fix that in the upcoming update among other stuff |
Was this ever fixed? :) PS. Great tool btw! Love it! |
yeah, it's fixed in f3: float3 = {1.0, 2.0, 3.0}
f2: float3 = 1.0 # implicitly become {1.0, 1.0, 1.0}
f: float = 1.0
v: float4 = {f, f, f, 1.0} etc also more sane loops and much better support for parameters I'm actually waiting for the new designer update where loops should be natively supported by function graphs and I add this to plugin. Then I merge new version to main |
Oww that sounds amazing <3 Seeing theres some new syntax, will it also support |
yep, "augmented assigns" ie |
float(-1.0), int(-1), etc. all return
ERROR: float() takes only const arguments
ERROR: int() takes only const arguments
etc.
I presume this is due to "-" being used for negation.
The text was updated successfully, but these errors were encountered: