1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Implement class detection in GDScript for build configuration

This commit is contained in:
Michael Alexsander
2025-02-12 16:23:06 -03:00
parent 7e4f6bdb59
commit ce8d2e4917
2 changed files with 57 additions and 0 deletions

View File

@@ -654,6 +654,7 @@ public:
virtual bool handles_type(const String &p_type) const override;
virtual String get_resource_type(const String &p_path) const override;
virtual void get_dependencies(const String &p_path, List<String> *p_dependencies, bool p_add_types = false) override;
virtual void get_classes_used(const String &p_path, HashSet<StringName> *r_classes) override;
};
class ResourceFormatSaverGDScript : public ResourceFormatSaver {