You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for checking that. I found a minimal repro example, seems like this type inheritance with number[] is causing some overload confusion. You can close this ticket and I will remove the number[] type inheritance to work around this.
I'd like to be able to define overloads of an operator, for example a matrix class could provide the following overloads of mul:
However it seems that
local y = matrix * vector;
is currently deduced as typemat4 | vec3
.Is there a way to achieve this?
The text was updated successfully, but these errors were encountered: