You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Registers a callback that Godot can call to get the list of all classes (from ClassDB) that may be used by the calling GDExtension.
3122
+
*
3123
+
* This is used by the editor to generate a build profile (in "Tools" > "Engine Compilation Configuration Editor..." > "Detect from project"),
3124
+
* in order to recompile Godot with only the classes used.
3125
+
* In the provided callback, the GDExtension should provide the list of classes that _may_ be used statically, thus the time of invocation shouldn't matter.
3126
+
* If a GDExtension doesn't register a callback, Godot will assume that it could be using any classes.
3127
+
*
3128
+
* @param p_library A pointer the library received by the GDExtension's entry point function.
3129
+
* @param p_callback The callback to retrieve the list of classes used.
0 commit comments