diff --git a/Assets/Editor/BFOthersTools/BoardEditorTools/BoardEditorWindow.cs b/Assets/Editor/BFOthersTools/BoardEditorTools/BoardEditorWindow.cs index f28b0e604..124f5856b 100644 --- a/Assets/Editor/BFOthersTools/BoardEditorTools/BoardEditorWindow.cs +++ b/Assets/Editor/BFOthersTools/BoardEditorTools/BoardEditorWindow.cs @@ -531,7 +531,22 @@ namespace BFEditor int row = posId / 10; int col = posId % 10; img = imgDict[icon]; - GUI.DrawTexture(new Rect(startOffset + (col - 1) * textureWidth, startOffset + (row - 1) * textureWidth, 92, 32), img); + if (dir == 1) + { + GUI.DrawTexture(new Rect(startOffset + (col - 1) * textureWidth, startOffset + (row - 1) * textureWidth - 16, 92, 32), img); + } + else if (dir == 2) + { + GUI.DrawTexture(new Rect(startOffset + (col - 1) * textureWidth, startOffset + (row - 1) * textureWidth - 16 + textureWidth, 92, 32), img); + } + else if (dir == 3) + { + GUI.DrawTexture(new Rect(startOffset + (col - 1) * textureWidth - 16, startOffset + (row - 1) * textureWidth - 16, 32, 92), img); + } + else if (dir == 4) + { + GUI.DrawTexture(new Rect(startOffset + (col - 1) * textureWidth - 16 + textureWidth, startOffset + (row - 1) * textureWidth - 16, 32, 92), img); + } } } } diff --git a/Assets/lua/app/module/battle/controller/battle_controller_dungeon_rune.lua.bytes b/Assets/lua/app/module/battle/controller/battle_controller_dungeon_rune.lua.bytes index c43803432..3d8a78223 100644 Binary files a/Assets/lua/app/module/battle/controller/battle_controller_dungeon_rune.lua.bytes and b/Assets/lua/app/module/battle/controller/battle_controller_dungeon_rune.lua.bytes differ diff --git a/Assets/lua/app/module/dungeon_rune/dungeon_rune_manager.lua.bytes b/Assets/lua/app/module/dungeon_rune/dungeon_rune_manager.lua.bytes index 2a5eb1a82..718b3b102 100644 Binary files a/Assets/lua/app/module/dungeon_rune/dungeon_rune_manager.lua.bytes and b/Assets/lua/app/module/dungeon_rune/dungeon_rune_manager.lua.bytes differ diff --git a/Assets/lua/app/ui/dungeon_rune/dungeon_rune_rebirth_ui.lua.bytes b/Assets/lua/app/ui/dungeon_rune/dungeon_rune_rebirth_ui.lua.bytes index 78e2bea67..adadb5a20 100644 Binary files a/Assets/lua/app/ui/dungeon_rune/dungeon_rune_rebirth_ui.lua.bytes and b/Assets/lua/app/ui/dungeon_rune/dungeon_rune_rebirth_ui.lua.bytes differ