unstable margins
BIN
img/frames/unstable/margins/a.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
img/frames/unstable/margins/b.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
img/frames/unstable/margins/bThumb.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
img/frames/unstable/margins/c.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
img/frames/unstable/margins/cThumb.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
img/frames/unstable/margins/g.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
img/frames/unstable/margins/gThumb.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
img/frames/unstable/margins/m.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
img/frames/unstable/margins/mThumb.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
img/frames/unstable/margins/r.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
img/frames/unstable/margins/rThumb.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
img/frames/unstable/margins/u.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
img/frames/unstable/margins/uThumb.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
img/frames/unstable/margins/w.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
img/frames/unstable/margins/wThumb.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
@@ -1,6 +1,7 @@
|
|||||||
loadFramePacks([
|
loadFramePacks([
|
||||||
{name:'Generic Margins', value:'Margin-1'},
|
{name:'Generic Margins', value:'Margin-1'},
|
||||||
{name:'Mystical Archive Margin', value:'MarginMysticalArchive'}
|
{name:'Mystical Archive Margin', value:'MarginMysticalArchive'},
|
||||||
|
{name:'Unstable Basics Margin', value:'MarginUnstable'}
|
||||||
])
|
])
|
||||||
|
|
||||||
//For multiple Margin packs
|
//For multiple Margin packs
|
||||||
|
18
js/frames/packMarginUnstable.js
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
//Create objects for common properties across available frames
|
||||||
|
var bounds = {x:-0.044, y:-1/35, width:1.088, height:37/35};
|
||||||
|
//defines available frames
|
||||||
|
availableFrames = [
|
||||||
|
{name:'White Extension', src:'/img/frames/unstable/margins/w.png', bounds:bounds},
|
||||||
|
{name:'Blue Extension', src:'/img/frames/unstable/margins/u.png', bounds:bounds},
|
||||||
|
{name:'Black Extension', src:'/img/frames/unstable/margins/b.png', bounds:bounds},
|
||||||
|
{name:'Red Extension', src:'/img/frames/unstable/margins/r.png', bounds:bounds},
|
||||||
|
{name:'Green Extension', src:'/img/frames/unstable/margins/g.png', bounds:bounds},
|
||||||
|
{name:'Multicolored Extension', src:'/img/frames/unstable/margins/m.png', bounds:bounds},
|
||||||
|
{name:'Land Extension', src:'/img/frames/unstable/margins/c.png', bounds:bounds}
|
||||||
|
];
|
||||||
|
//disables/enables the "Load Frame Version" button
|
||||||
|
document.querySelector('#loadFrameVersion').disabled = false;
|
||||||
|
//defines process for loading this version, if applicable
|
||||||
|
document.querySelector('#loadFrameVersion').onclick = loadMarginVersion;
|
||||||
|
//loads available frames
|
||||||
|
loadFramePack();
|