Replies: 1 comment 2 replies
-
This might just be something that is not implemented, depending on the error. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using Jint in Unity, there is the type Unity.Mathematics.int2 which I expose to jint.
Doing so works:
let x = "" + (new int2(1, 1)).toString();
But doing so throws an exception:
let x = "" + new int2(1, 1);
Why is that?
Beta Was this translation helpful? Give feedback.
All reactions