mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-02-13 03:10:09 +01:00
Skip properties with the 'PROPERTY_HINT_BUTTON' hint when building docs.
This commit is contained in:
parent
f668ceb512
commit
e5df1644c7
@ -328,6 +328,10 @@ void DocData::generate(bool p_basic_types) {
|
||||
EO = EO->next();
|
||||
}
|
||||
|
||||
if (E->get().hint == PROPERTY_HINT_BUTTON) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (E->get().usage & PROPERTY_USAGE_GROUP || E->get().usage & PROPERTY_USAGE_CATEGORY || E->get().usage & PROPERTY_USAGE_INTERNAL) {
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user