mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Created internal usage flag to remove non editor properties from doc, closes #13334
This commit is contained in:
@@ -235,7 +235,7 @@ void DocData::generate(bool p_basic_types) {
|
||||
ClassDB::get_property_list(name, &properties, true);
|
||||
|
||||
for (List<PropertyInfo>::Element *E = properties.front(); E; E = E->next()) {
|
||||
if (E->get().usage & PROPERTY_USAGE_GROUP || E->get().usage & PROPERTY_USAGE_CATEGORY)
|
||||
if (E->get().usage & PROPERTY_USAGE_GROUP || E->get().usage & PROPERTY_USAGE_CATEGORY || E->get().usage & PROPERTY_USAGE_INTERNAL)
|
||||
continue;
|
||||
|
||||
PropertyDoc prop;
|
||||
|
||||
Reference in New Issue
Block a user