Core: Mark property script as internal

This commit is contained in:
Danil Alexeev 2025-11-10 16:17:39 +03:00
parent 7dac0bc3be
commit 6fa2cc77e9
No known key found for this signature in database
GPG key ID: 5A52F75A8679EC57
2 changed files with 5 additions and 6 deletions

View file

@ -508,7 +508,7 @@ void DocTools::generate(BitField<GenerateFlags> p_flags) {
}
if (properties_from_instance) {
if (E.name == "resource_local_to_scene" || E.name == "resource_name" || E.name == "resource_path" || E.name == "script" || E.name == "resource_scene_unique_id") {
if (E.name == "resource_local_to_scene" || E.name == "resource_name" || E.name == "resource_path" || E.name == "resource_scene_unique_id") {
// Don't include spurious properties from Object property list.
continue;
}