1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-23 15:16:17 +00:00

Fixed a typo in csg module

This commit is contained in:
M. Huri
2021-10-12 11:13:29 +07:00
parent 754db65a1f
commit 37ccfb18ff
3 changed files with 3 additions and 3 deletions

View File

@@ -185,7 +185,7 @@ CSGBrush *CSGShape::_get_brush() {
bop.merge_brushes(CSGBrushOperation::OPERATION_INTERSECTION, *n, *nn2, *nn, snap);
break;
case CSGShape::OPERATION_SUBTRACTION:
bop.merge_brushes(CSGBrushOperation::OPERATION_SUBSTRACTION, *n, *nn2, *nn, snap);
bop.merge_brushes(CSGBrushOperation::OPERATION_SUBTRACTION, *n, *nn2, *nn, snap);
break;
}
memdelete(n);