diff options
author | Nikolay Lebedev <n.lebedev@moedelo.org> | 2023-05-25 03:56:01 +0500 |
---|---|---|
committer | Nikolay Lebedev <n.lebedev@moedelo.org> | 2023-05-29 23:15:40 +0500 |
commit | 779c39f4789014984a293d0345d22f6640dec4f2 (patch) | |
tree | a7439ff8147ffb51b78461871385e3f9f41ec170 | |
parent | ffd32a244b43ff58c13819c2debf8cf3b58ecbdc (diff) | |
download | redot-engine-779c39f4789014984a293d0345d22f6640dec4f2.tar.gz |
Fix update animation frame duration in every selected tile
-rw-r--r-- | editor/plugins/tiles/tile_set_atlas_source_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/tiles/tile_set_atlas_source_editor.cpp b/editor/plugins/tiles/tile_set_atlas_source_editor.cpp index a8c3b8e8d5..33c2ec53b5 100644 --- a/editor/plugins/tiles/tile_set_atlas_source_editor.cpp +++ b/editor/plugins/tiles/tile_set_atlas_source_editor.cpp @@ -271,10 +271,10 @@ bool TileSetAtlasSourceEditor::AtlasTileProxyObject::_set(const StringName &p_na } else { if (components[1] == "duration") { tile_set_atlas_source->set_tile_animation_frame_duration(tile.tile, frame, p_value); - return true; } } } + return true; } } |