You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-24 15:26:15 +00:00
Fix linking NavigationServer2D/3D with all classes disabled in build profile
For some reason the destructor for NavigationMeshSourceGeometryData2D/3D being implemented in the .cpp was causing linking issues.
This commit is contained in:
@@ -182,10 +182,3 @@ void NavigationMeshSourceGeometryData3D::_bind_methods() {
|
||||
ADD_PROPERTY(PropertyInfo(Variant::PACKED_VECTOR3_ARRAY, "vertices", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR | PROPERTY_USAGE_INTERNAL), "set_vertices", "get_vertices");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::PACKED_INT32_ARRAY, "indices", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR | PROPERTY_USAGE_INTERNAL), "set_indices", "get_indices");
|
||||
}
|
||||
|
||||
NavigationMeshSourceGeometryData3D::NavigationMeshSourceGeometryData3D() {
|
||||
}
|
||||
|
||||
NavigationMeshSourceGeometryData3D::~NavigationMeshSourceGeometryData3D() {
|
||||
clear();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user