mirror of
https://github.com/thepaperpilot/Super-Auto-Coots.git
synced 2024-11-22 16:35:45 +00:00
Changing move indicator logic
This commit is contained in:
parent
7736461992
commit
7d22471da6
2 changed files with 8 additions and 1 deletions
|
@ -7,7 +7,12 @@
|
|||
class="character"
|
||||
:class="{ selected: isSelected, empty: character == null && selected == null }"
|
||||
>
|
||||
<span class="move-indicator" v-if="character == null && selected != null">
|
||||
<span
|
||||
class="move-indicator"
|
||||
v-if="
|
||||
selected != null && !isShop && (character?.type !== selected.type || isSelected)
|
||||
"
|
||||
>
|
||||
<span class="material-icons">straight</span></span
|
||||
>
|
||||
<span
|
||||
|
@ -59,6 +64,7 @@ import level3 from "../../public/Lvl 3.png";
|
|||
defineProps<{
|
||||
character?: Character | null;
|
||||
isSelected?: boolean;
|
||||
isShop?: boolean;
|
||||
selected?: Character | null;
|
||||
}>();
|
||||
</script>
|
||||
|
|
|
@ -162,6 +162,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
<CharacterSlot
|
||||
character={item == null ? undefined : item}
|
||||
isSelected={selectedShopItem.value === i}
|
||||
isShop={true}
|
||||
onClick={(e: MouseEvent) => {
|
||||
if (item == null) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue