Fix enum type to use int64_t instead of int in GDScript
This commit is contained in:
parent
c51a42778d
commit
9e04531938
|
@ -469,7 +469,7 @@ public:
|
|||
EnumNode *parent_enum = nullptr;
|
||||
int index = -1;
|
||||
bool resolved = false;
|
||||
int value = 0;
|
||||
int64_t value = 0;
|
||||
int line = 0;
|
||||
int leftmost_column = 0;
|
||||
int rightmost_column = 0;
|
||||
|
|
Loading…
Reference in New Issue