diff options
| author | Aaron Franke <arnfranke@yahoo.com> | 2019-10-31 08:40:58 -0400 |
|---|---|---|
| committer | Aaron Franke <arnfranke@yahoo.com> | 2019-10-31 08:52:26 -0400 |
| commit | 8754e21f48a5db53f905898dbccfc4bc6eb10f9a (patch) | |
| tree | 181570b8580d7f5dc9d31d3911b1b845af200b5e /editor/plugins/tile_set_editor_plugin.cpp | |
| parent | 55fd63d9de05afd311c981df52bd50262aace9b5 (diff) | |
| download | redot-engine-8754e21f48a5db53f905898dbccfc4bc6eb10f9a.tar.gz | |
Fix "seperate" typos
Diffstat (limited to 'editor/plugins/tile_set_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/tile_set_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/tile_set_editor_plugin.cpp b/editor/plugins/tile_set_editor_plugin.cpp index e0bf8dfdb2..d81c6d3f96 100644 --- a/editor/plugins/tile_set_editor_plugin.cpp +++ b/editor/plugins/tile_set_editor_plugin.cpp @@ -3038,8 +3038,8 @@ Vector2 TileSetEditor::snap_point(const Vector2 &point) { } if (tools[TOOL_GRID_SNAP]->is_pressed()) { - p.x = Math::snap_scalar_seperation(snap_offset.x, snap_step.x, p.x, snap_separation.x); - p.y = Math::snap_scalar_seperation(snap_offset.y, snap_step.y, p.y, snap_separation.y); + p.x = Math::snap_scalar_separation(snap_offset.x, snap_step.x, p.x, snap_separation.x); + p.y = Math::snap_scalar_separation(snap_offset.y, snap_step.y, p.y, snap_separation.y); } if (tools[SHAPE_KEEP_INSIDE_TILE]->is_pressed()) { if (p.x < region.position.x) |
