You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Merge pull request #2282 from Ovnuniarchos/master
Bitmask editor and some CanvasItem documentation.
This commit is contained in:
@@ -2315,6 +2315,17 @@ void GDParser::_parse_class(ClassNode *p_class) {
|
||||
|
||||
case Variant::INT: {
|
||||
|
||||
if (tokenizer->get_token()==GDTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier()=="FLAGS") {
|
||||
|
||||
current_export.hint=PROPERTY_HINT_ALL_FLAGS;
|
||||
tokenizer->advance();
|
||||
if (tokenizer->get_token()!=GDTokenizer::TK_PARENTHESIS_CLOSE) {
|
||||
_set_error("Expected ')' in hint.");
|
||||
return;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
if (tokenizer->get_token()==GDTokenizer::TK_CONSTANT && tokenizer->get_token_constant().get_type()==Variant::STRING) {
|
||||
//enumeration
|
||||
current_export.hint=PROPERTY_HINT_ENUM;
|
||||
|
||||
Reference in New Issue
Block a user