Browse Source

Show 1st/2nd/3rd person buttons

vintage
Fen Dweller 5 years ago
parent
commit
b7998405ca
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/components/Statblock.vue

+ 3
- 3
src/components/Statblock.vue View File

@@ -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>


Loading…
Cancel
Save