godotengine / godotengine/godot-docs
Document module register_(module_name)_types.h new functions
Open
area:engine details
bug
- Dominant language
- reStructuredText
- Stars
- 5.7k
- Forks
- 3.8k
- Avg merge
- 1d 20h
- Merged PRs (30d)
- 25
Description
when creating a new module register_xxx_types.h file is needed with functions:
```
void register_xxx_types();
void unregister_xxx_types();
```
these functions were changed to:
```
void initialize_xxx_module(ModuleInitializationLevel p_level);
void uninitialize_xxx_module(ModuleInitializationLevel p_level);
```
but are yet to be added to the docs.
I tried to create a custom module by following [the docs](https://docs.godotengine.org/en/latest/development/cpp/custom_modules_in_cpp.html), but apparently these functions are outdated
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.