return _cell_grid.duplicate()
-func rotate_left():
+func rotate_cells_right():
+ _rotation_index -= 1
+ rotate_cells()
+
+
+func rotate_cells_left():
_rotation_index += 1
+ rotate_cells()
+
+
+func rotate_cells():
var new_cell_grid = get_cell_grid()
for c in cells: