mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Refactor module initialization
* Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
This commit is contained in:
@@ -222,9 +222,16 @@ bool xatlas_mesh_lightmap_unwrap_callback(float p_texel_size, const float *p_ver
|
||||
return true;
|
||||
}
|
||||
|
||||
void register_xatlas_unwrap_types() {
|
||||
void initialize_xatlas_unwrap_module(ModuleInitializationLevel p_level) {
|
||||
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
||||
return;
|
||||
}
|
||||
|
||||
array_mesh_lightmap_unwrap_callback = xatlas_mesh_lightmap_unwrap_callback;
|
||||
}
|
||||
|
||||
void unregister_xatlas_unwrap_types() {
|
||||
void uninitialize_xatlas_unwrap_module(ModuleInitializationLevel p_level) {
|
||||
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,7 +31,9 @@
|
||||
#ifndef XATLAS_UNWRAP_REGISTER_TYPES_H
|
||||
#define XATLAS_UNWRAP_REGISTER_TYPES_H
|
||||
|
||||
void register_xatlas_unwrap_types();
|
||||
void unregister_xatlas_unwrap_types();
|
||||
#include "modules/register_module_types.h"
|
||||
|
||||
void initialize_xatlas_unwrap_module(ModuleInitializationLevel p_level);
|
||||
void uninitialize_xatlas_unwrap_module(ModuleInitializationLevel p_level);
|
||||
|
||||
#endif // XATLAS_UNWRAP_REGISTER_TYPES_H
|
||||
|
||||
Reference in New Issue
Block a user