Files
godot/core/variant
reduz 379b90fd33 Force String as Dictionary key instead of StringName
* Lua table syntax uses named indexing: `{ mykey = myvalue }`
* Python style syntax uses string indexing: `{ "mykey" : myvalue }`
* Both are incompatible since a StringName key wont fetch a String key, hence confusing.
* This PR proposes always using String for indexing at a very minimal performance cost. Always indexing with StringNames will be faster, but they are considerably more expensive to create.
2021-07-01 16:03:37 -03:00
..
2021-05-05 15:54:57 +02:00
2021-06-04 18:14:32 +01:00
2021-06-04 18:14:32 +01:00
2021-06-25 17:32:45 -03:00