1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

-Fix bugs related to PoolVector crashes

-Added ability to request nodes using $Name in GDScript :)
This commit is contained in:
Juan Linietsky
2017-01-08 02:04:53 -03:00
parent 2ab83e1abb
commit 8b912d1115
5 changed files with 124 additions and 5 deletions

View File

@@ -460,6 +460,9 @@ void GDTokenizerText::_advance() {
case ':':
_make_token(TK_COLON); //for methods maybe but now useless.
break;
case '$':
_make_token(TK_DOLLAR); //for the get_node() shortener
break;
case '^': {
if (GETCHAR(1)=='=') {
_make_token(TK_OP_ASSIGN_BIT_XOR);