Add icon path to class creation info
parent
ce66e6bb39
commit
2fd3a80505
|
@ -368,6 +368,7 @@ typedef struct {
|
||||||
GDExtensionBool is_abstract;
|
GDExtensionBool is_abstract;
|
||||||
GDExtensionBool is_exposed;
|
GDExtensionBool is_exposed;
|
||||||
GDExtensionBool is_runtime;
|
GDExtensionBool is_runtime;
|
||||||
|
GDExtensionConstStringPtr icon_path;
|
||||||
GDExtensionClassSet set_func;
|
GDExtensionClassSet set_func;
|
||||||
GDExtensionClassGet get_func;
|
GDExtensionClassGet get_func;
|
||||||
GDExtensionClassGetPropertyList get_property_list_func;
|
GDExtensionClassGetPropertyList get_property_list_func;
|
||||||
|
|
|
@ -251,6 +251,7 @@ void ClassDB::_register_class(bool p_virtual, bool p_exposed, bool p_runtime) {
|
||||||
is_abstract, // GDExtensionBool is_abstract;
|
is_abstract, // GDExtensionBool is_abstract;
|
||||||
p_exposed, // GDExtensionBool is_exposed;
|
p_exposed, // GDExtensionBool is_exposed;
|
||||||
p_runtime, // GDExtensionBool is_runtime;
|
p_runtime, // GDExtensionBool is_runtime;
|
||||||
|
nullptr, // GDExtensionConstStringPtr icon_path;
|
||||||
T::set_bind, // GDExtensionClassSet set_func;
|
T::set_bind, // GDExtensionClassSet set_func;
|
||||||
T::get_bind, // GDExtensionClassGet get_func;
|
T::get_bind, // GDExtensionClassGet get_func;
|
||||||
T::has_get_property_list() ? T::get_property_list_bind : nullptr, // GDExtensionClassGetPropertyList get_property_list_func;
|
T::has_get_property_list() ? T::get_property_list_bind : nullptr, // GDExtensionClassGetPropertyList get_property_list_func;
|
||||||
|
|
Loading…
Reference in New Issue