forked from noxious/client
npm run format
This commit is contained in:
@ -1,11 +1,5 @@
|
||||
<template>
|
||||
<Character
|
||||
v-for="item in zoneStore.characters"
|
||||
:key="item.id"
|
||||
:layer="tilemap"
|
||||
:character="item"
|
||||
:depth="calculateIsometricDepth(item.positionX, item.positionY, 0)"
|
||||
/>
|
||||
<Character v-for="item in zoneStore.characters" :key="item.id" :layer="tilemap" :character="item" :depth="calculateIsometricDepth(item.positionX, item.positionY, 0)" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
@ -1,9 +1,5 @@
|
||||
<template>
|
||||
<Image
|
||||
v-for="object in zoneStore.zone?.zoneObjects"
|
||||
:depth="calculateIsometricDepth(object.positionX, object.positionY, 0)"
|
||||
:key="object.id" v-bind="getObjectImageProps(object)"
|
||||
/>
|
||||
<Image v-for="object in zoneStore.zone?.zoneObjects" :depth="calculateIsometricDepth(object.positionX, object.positionY, 0)" :key="object.id" v-bind="getObjectImageProps(object)" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
Reference in New Issue
Block a user