mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
a1757553cf
- added `/:paletteSlug/:resolution` functionality for localhost testing - created `currFile.sublayers` for *things that should zoom with the canvas layers* - `currFile.layers` now solely contains the canvas layers - added `getProjectData` to `FileManager`'s exported methods --- - added `FileManager.localStorageSave` (it's basically just: localStorage.setItem("lpe-cache",FileManager.getProjectData())) - added `FileManager.localStorageCheck` (it's basically just: `!!localStorage.getItem("lpe-cache")`) - added `FileManager.localStorageLoad` (it's basically just: `return localStorage.getItem("lpe-cache")`) - added `FileManager.localStorageReset` (for debugging purity) --- - calling `FileManager.localStorageSave()` on mouse up (we should stress test this) --- - changed lpe file format to `{canvasWidth:number,canvasHeight:number,selectedLayer:number,colors:[],layers:[]}` - added backward compatibility for the old lpe file format --- - added some canvas utility functions in `canvas_util` - added Unsettled's color similarity utility functions in `color_util2` --- - html boilerplate - wang tiles - - POC - tiny text boilerplate - POC - tiny text font scraper --- - WIP - added two optional url route parameters `/:paletteSlug/:resolution/:prefillWidth/:prefillBinaryStr` - WIP POC - hbs_parser.js (outputs tree data about hbs file relationships)
49 lines
1.5 KiB
Handlebars
49 lines
1.5 KiB
Handlebars
<!--SPRITE RESIZE-->
|
|
<div class="update" id="resize-sprite">
|
|
<button class="close-button">{{svg "x.svg" width="20" height="20"}}</button>
|
|
<h1>Scale sprite</h1>
|
|
<!-- SIZE-->
|
|
<h2>New size</h2>
|
|
<span id="rs-size-menu">
|
|
<div>
|
|
<span>
|
|
Width: <input id="rs-width" type="number" default="0" step="1"
|
|
value="{{#if border}}{{border}}{{else}}0{{/if}}" autocomplete="off"/>
|
|
</span>
|
|
|
|
<span>
|
|
Height: <input id="rs-height" default="0" step="1" type="number"
|
|
value="{{#if border}}{{border}}{{else}}0{{/if}}" autocomplete="off"/>
|
|
</span>
|
|
</div>
|
|
</span>
|
|
<!--BORDERS-->
|
|
<h2>Resize percentages</h2>
|
|
<span id="rs-percentage-menu">
|
|
<div>
|
|
<span>
|
|
Width <input id="rs-width-percentage" type="number" default="0" step="1"
|
|
value="{{#if border}}{{border}}{{else}}0{{/if}}" autocomplete="off"/> %
|
|
</span>
|
|
|
|
<span>
|
|
Height <input id="rs-height-percentage" type="number" default="0" step="1"
|
|
value="{{#if border}}{{border}}{{else}}0{{/if}}" autocomplete="off"/> %
|
|
</span>
|
|
</div>
|
|
<div id="rs-ratio-div">
|
|
<span>
|
|
Keep current ratio <input type = "checkbox" id="rs-keep-ratio"/>
|
|
</span>
|
|
<span>
|
|
Scaling algorithm:
|
|
<select name = "resize-algorithm" id="resize-algorithm-combobox">
|
|
<option value = "nearest-neighbor">Nearest neighbour</option>
|
|
<option value = "bilinear-interpolation">Bilinear</option>
|
|
</select>
|
|
</span>
|
|
</br>
|
|
<button id="resize-sprite-confirm">Scale sprite</button>
|
|
</div>
|
|
</span>
|
|
</div> |