You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Fixed syntax inconsistency in Vector3.snap and Vector3.snapped
This commit is contained in:
@@ -104,7 +104,7 @@ void PathSpatialGizmo::set_handle(int p_idx, Camera *p_camera, const Point2 &p_p
|
||||
|
||||
if (SpatialEditor::get_singleton()->is_snap_enabled()) {
|
||||
float snap = SpatialEditor::get_singleton()->get_translate_snap();
|
||||
inters.snap(snap);
|
||||
inters.snap(Vector3(snap, snap, snap));
|
||||
}
|
||||
|
||||
Vector3 local = gi.xform(inters);
|
||||
|
||||
Reference in New Issue
Block a user