Merge pull request #44122 from Nickswoboda/min-snap-step
Change minimum snap step of Tile Set to 1
This commit is contained in:
commit
91fd6374eb
@ -2359,8 +2359,8 @@ void TileSetEditor::_set_edited_collision_shape(const Ref<Shape2D> &p_shape) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void TileSetEditor::_set_snap_step(Vector2 p_val) {
|
void TileSetEditor::_set_snap_step(Vector2 p_val) {
|
||||||
snap_step.x = CLAMP(p_val.x, 0, 256);
|
snap_step.x = CLAMP(p_val.x, 1, 256);
|
||||||
snap_step.y = CLAMP(p_val.y, 0, 256);
|
snap_step.y = CLAMP(p_val.y, 1, 256);
|
||||||
workspace->update();
|
workspace->update();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user