Initial
This commit is contained in:
48
resources/app/templates/scene/grid-config.html
Normal file
48
resources/app/templates/scene/grid-config.html
Normal file
@@ -0,0 +1,48 @@
|
||||
<form autocomplete="off">
|
||||
<p class="notes">{{localize "SCENES.GridConfigToolHint"}}</p>
|
||||
|
||||
<div class="form-group">
|
||||
<label>{{localize "SCENES.GridType"}}</label>
|
||||
<div class="form-fields">
|
||||
<select name="grid.type" data-dtype="Number">
|
||||
{{selectOptions gridTypes selected=scene.grid.type localize=true}}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>{{ localize "SCENES.BackgroundScale" }}</label>
|
||||
<div class="form-fields">
|
||||
{{numberInput scale name="scale"}}
|
||||
</div>
|
||||
<p class="notes">{{localize "SCENES.BackgroundScaleHint"}}</p>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>{{ localize "SCENES.GridSize" }}</label>
|
||||
<div class="form-fields">
|
||||
{{numberInput scene.grid.size name="grid.size" min=50 step=1}}
|
||||
</div>
|
||||
<p class="notes">{{ localize "SCENES.GridResizeHint" }}</p>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>{{ localize "SCENES.GridPosition" }}</label>
|
||||
<div class="form-fields">
|
||||
<label>x</label>
|
||||
{{numberInput scene.background.offsetX name="background.offsetX"}}
|
||||
<label>y</label>
|
||||
{{numberInput scene.background.offsetY name="background.offsetY"}}
|
||||
</div>
|
||||
<p class="notes">{{ localize "SCENES.GridPositionHint" }}</p>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<button type="reset" name="reset">
|
||||
<i class="fas fa-sync"></i> {{ localize "SCENES.GridReset" }}
|
||||
</button>
|
||||
<button type="submit">
|
||||
<i class="fas fa-save"></i> {{ localize "SETTINGS.Save" }}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
Reference in New Issue
Block a user