invocation margins
BIN
img/frames/invocation/margins/a.png
Normal file
After Width: | Height: | Size: 2.3 MiB |
BIN
img/frames/invocation/margins/aThumb.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
img/frames/invocation/margins/b.png
Normal file
After Width: | Height: | Size: 2.3 MiB |
BIN
img/frames/invocation/margins/bThumb.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
img/frames/invocation/margins/g.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
img/frames/invocation/margins/gThumb.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
img/frames/invocation/margins/m.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
img/frames/invocation/margins/mThumb.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
img/frames/invocation/margins/r.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
img/frames/invocation/margins/rThumb.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
img/frames/invocation/margins/u.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
img/frames/invocation/margins/uThumb.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
img/frames/invocation/margins/w.png
Normal file
After Width: | Height: | Size: 2.4 MiB |
BIN
img/frames/invocation/margins/wThumb.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
19
js/frames/packMarginInvocation.js
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
//Create objects for common properties across available frames
|
||||||
|
var bounds = {x:-0.044, y:-1/35, width:1.088, height:37/35};
|
||||||
|
var ogBounds = {x:0, y:0, width:1, height:1};
|
||||||
|
//defines available frames
|
||||||
|
availableFrames = [
|
||||||
|
{name:'White Extension', src:'/img/frames/invocation/margins/w.png', bounds:bounds, ogBounds:ogBounds},
|
||||||
|
{name:'Blue Extension', src:'/img/frames/invocation/margins/u.png', bounds:bounds, ogBounds:ogBounds},
|
||||||
|
{name:'Black Extension', src:'/img/frames/invocation/margins/b.png', bounds:bounds, ogBounds:ogBounds},
|
||||||
|
{name:'Red Extension', src:'/img/frames/invocation/margins/r.png', bounds:bounds, ogBounds:ogBounds},
|
||||||
|
{name:'Green Extension', src:'/img/frames/invocation/margins/g.png', bounds:bounds, ogBounds:ogBounds},
|
||||||
|
{name:'Multicolored Extension', src:'/img/frames/invocation/margins/m.png', bounds:bounds, ogBounds:ogBounds},
|
||||||
|
{name:'Artifact Extension', src:'/img/frames/invocation/margins/a.png', bounds:bounds, ogBounds:ogBounds}
|
||||||
|
];
|
||||||
|
//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();
|