-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (62 loc) · 1.78 KB
/
Copy pathindex.html
File metadata and controls
72 lines (62 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<head>
<title>Animation File Merger</title>
<link href="styles.css" rel="stylesheet" />
<script type="module" src="src/index.ts" defer></script>
<script type="module" src="src/about.ts" defer></script>
</head>
<body>
<div id="toolbar">
<button id="about-button">About</button>
<button id="clear-button">Clear</button>
<button id="overlay-button">Overlay</button>
<button id="merge-button">Merge</button>
</div>
<div id="main">
<div id="input">
Input Files:
<div id="sheet-list"></div>
</div>
<div id="output">
Texture:
<canvas></canvas>
Animation:
<textarea></textarea>
</div>
</div>
<template id="sheet-list-item-template">
<div>
<div class="sheet-name"></div>
<div class="error-text"></div>
<button class="remove-file-button">🗑️</button>
</div>
</template>
<dialog id="about-dialog">
<h2 class="about-listing">
<u>Animation File Merger</u>
<div class="links">
<a href="https://github.com/Hub-OS/Animation-File-Merger/">GitHub</a>
</div>
</h2>
<div class="about-section-body">
<p>A utility for merging BoomSheets animation files.</p>
<p>
Not affiliated with
<a href="https://store.steampowered.com/app/2189000/BoomSheets/"
>BoomSheets</a
>.
</p>
</div>
<h2><u>Usage:</u></h2>
<div class="about-section-body">
<p>
Drag and drop BoomSheets `.animation` and `.png` files with matching
names into the dashed box.
</p>
<p>
Click the "Merge" button to generate a image and animation data. Save
the final image using the context menu by right clicking on it.
</p>
</div>
<h2><u>Third Party Licenses:</u></h2>
</dialog>
</body>