Hi, I am new to Deepar.
I am trying to Log an integer value from a script, but i can see anything in the console window.
i can only see string values that i am printing.
Is there a way to print an integer value?(basically i am trying to print localposition of an object.)
Can you share a code snippet or some more information about what you are trying to do? Printing an integer to the console should be possible using console.log().
Debug.log(string) accepts only strings so you can either append it to a string as shown previously for implicit conversion or convert it to a string explicitly using .toString() or String(int).