Explorar el Código

Show 1st/2nd/3rd person buttons

vintage
Fen Dweller hace 5 años
padre
commit
b7998405ca
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      src/components/Statblock.vue

+ 3
- 3
src/components/Statblock.vue Ver fichero

@@ -57,9 +57,9 @@
</div>
</div>
</div>
<button v-if="subject.perspective === POV.Third" @click.stop="subject.perspective = POV.Second">Second-person</button>
<button v-if="subject.perspective === POV.First" @click.stop="subject.perspective = POV.Third">Third-person</button>
<button v-if="subject.perspective === POV.Second" @click.stop="subject.perspective = POV.First">First-person</button>
<button @click.stop="subject.perspective = POV.First">1st</button>
<button @click.stop="subject.perspective = POV.Second">2nd</button>
<button @click.stop="subject.perspective = POV.Third">3rd</button>
</div>
</div>
</template>


Cargando…
Cancelar
Guardar