The write logs feature is disabled in release builds, that is why it is an empty file.
Moreover, go.get_id() returns a hash, which, if I am correct, is internally an number(correct me if I am wrong). That’s why you got numbers as id.
If you want to save hashes to log file and debug them, make sure they are debug apps, from the menu which comes when you want to bundle them.
I can get unhashed string and it works completely when I used “Debug Bundle”!
Thank you for your support!
(Can’t I get unhashed string in release bundle?)
In debug we store the strings for hashes (when available) for debugging purposes, but this takes up memory that we don’t want to waste in release builds.
hey there! Don’t want to make a new post since I have the same problem.
Have 20 similar objects (with minor differences) added manually and called d1 … d20. All with colliders and scripts. They actually look like factories but they are not. =)
How can I get a number (an id or path) of an object? I.e. I need that number “d15” or “d7” to address objects inside.
Thank you!
PS Actually the obvious reaction is to get those numbers through messages, but it doesn’t look good enough.