mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 06:33:16 +00:00
Include property index in GDNative class API
Needed by properties that share set/get functions. Fixes #10329.
This commit is contained in:
parent
b9702991a1
commit
6f3fffecb3
@ -80,6 +80,7 @@ struct PropertyAPI {
|
||||
String getter;
|
||||
String setter;
|
||||
String type;
|
||||
int index;
|
||||
};
|
||||
|
||||
struct ConstantAPI {
|
||||
@ -259,6 +260,8 @@ List<ClassAPI> generate_c_api_classes() {
|
||||
property_api.type = get_type_name(p->get());
|
||||
}
|
||||
|
||||
property_api.index = ClassDB::get_property_index(class_name, p->get().name);
|
||||
|
||||
if (!property_api.setter.empty() || !property_api.getter.empty()) {
|
||||
class_api.properties.push_back(property_api);
|
||||
}
|
||||
@ -395,7 +398,8 @@ static List<String> generate_c_api_json(const List<ClassAPI> &p_api) {
|
||||
source.push_back("\t\t\t\t\"name\": \"" + e->get().name + "\",\n");
|
||||
source.push_back("\t\t\t\t\"type\": \"" + e->get().type + "\",\n");
|
||||
source.push_back("\t\t\t\t\"getter\": \"" + e->get().getter + "\",\n");
|
||||
source.push_back("\t\t\t\t\"setter\": \"" + e->get().setter + "\"\n");
|
||||
source.push_back("\t\t\t\t\"setter\": \"" + e->get().setter + "\",\n");
|
||||
source.push_back(String("\t\t\t\t\"index\": ") + itos(e->get().index) + "\n");
|
||||
source.push_back(String("\t\t\t}") + (e->next() ? "," : "") + "\n");
|
||||
}
|
||||
source.push_back("\t\t],\n");
|
||||
|
Loading…
Reference in New Issue
Block a user