-Fix bugs related to PoolVector crashes
-Added ability to request nodes using $Name in GDScript :)
This commit is contained in:
parent
2ab83e1abb
commit
8b912d1115
5 changed files with 124 additions and 5 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue