You've already forked godot
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user