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:
@@ -129,10 +129,3 @@ void NavigationMeshSourceGeometryData2D::_bind_methods() {
|
||||
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "traversable_outlines", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR | PROPERTY_USAGE_INTERNAL), "set_traversable_outlines", "get_traversable_outlines");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "obstruction_outlines", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR | PROPERTY_USAGE_INTERNAL), "set_obstruction_outlines", "get_obstruction_outlines");
|
||||
}
|
||||
|
||||
NavigationMeshSourceGeometryData2D::NavigationMeshSourceGeometryData2D() {
|
||||
}
|
||||
|
||||
NavigationMeshSourceGeometryData2D::~NavigationMeshSourceGeometryData2D() {
|
||||
clear();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user