49 lines
1.7 KiB
HTML
49 lines
1.7 KiB
HTML
<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>
|