feat: Create initial Daggerheart stream overlay module with manifest, scripts, styles, templates, and localization files.
This commit is contained in:
commit
d516de52c0
8 changed files with 1693 additions and 0 deletions
34
templates/settings-app.hbs
Normal file
34
templates/settings-app.hbs
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<div class="stream-overlay-settings">
|
||||
<p class="notes">{{localize "DH_STREAM_OVERLAY.Settings.Instructions"}}</p>
|
||||
|
||||
<div class="form-group">
|
||||
<label>{{localize "DH_STREAM_OVERLAY.Settings.PartyActor"}}</label>
|
||||
<div class="drop-zone" data-dtype="Actor">
|
||||
{{#if actor}}
|
||||
<div class="actor-data">
|
||||
<img src="{{actor.img}}" title="{{actor.name}}" width="36" height="36" />
|
||||
<span class="actor-name">{{actor.name}}</span>
|
||||
<button type="button" class="clear-actor" title="{{localize " Delete"}}">
|
||||
<i class="fas fa-trash"></i>
|
||||
</button>
|
||||
</div>
|
||||
{{else}}
|
||||
<div class="placeholder">
|
||||
<i class="fas fa-user"></i>
|
||||
<span>{{localize "DH_STREAM_OVERLAY.Settings.DropActorHere"}}</span>
|
||||
</div>
|
||||
{{/if}}
|
||||
<input type="hidden" name="partyActorUuid" value="{{actorUuid}}">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{#if dsnInstalled}}
|
||||
<div class="form-group">
|
||||
<label>
|
||||
<input type="checkbox" name="enableDSN" {{checked dsnEnabled}}>
|
||||
Enable Dice So Nice Animations
|
||||
</label>
|
||||
<p class="notes">If enabled, 3D dice rolls will appear on the stream overlay.</p>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue