Skip to content

Commit

Permalink
Add Full Object data. Unique name is actually data.Name now
Browse files Browse the repository at this point in the history
  • Loading branch information
savage13 committed Dec 3, 2023
1 parent 2d8d16b commit f0d3684
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/AppMapDetailsObj.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<section>Position: {{obj.data.Translate[0].toFixed(2)}}, {{obj.data.Translate[1].toFixed(2)}}, {{(-obj.data.Translate[2]).toFixed(2)}}</section>
<section v-if="obj.data.Scale != null">Scale: {{arrayOrNumToStr(obj.data.Scale, 2)}}</section>
<section v-if="obj.data.Rotate != null">Rotate: {{arrayOrNumToStr(obj.data.Rotate, 5)}}</section>
<section v-if="obj.data.UniqueName">Unique name: {{obj.data.UniqueName}}</section>
<section v-if="obj.data.Name">Unique name: {{obj.data.Name}}</section>

<p class="my-1" v-if="isPossibleConditionalSpawn()" style="color: orange"><i class="fa fa-exclamation-circle"></i> This object might be a conditional spawn, or it might have custom logic.</p>

Expand Down Expand Up @@ -147,6 +147,14 @@
</div>
</details>
</section>
<section>
<details>
<summary>
<h4 class="subsection-heading">Object data</h4>
</summary>
<pre class="obj-params">{{JSON.stringify(obj, undefined, 2)}}</pre>
</details>
</section>
</div>
</template>
<style lang="less">
Expand Down

0 comments on commit f0d3684

Please sign in to comment.