mdx-m3-viewer
Version:
A browser WebGL model viewer. Mainly focused on models of the games Warcraft 3 and Starcraft 2.
32 lines (27 loc) • 706 B
HTML
<html>
<head>
<title>MDX <-> MDL</title>
<meta charset="utf-8" />
<style>
#status {
width: 500px;
height: 100px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
user-select: none;
pointer-events: none;
}
</style>
</head>
<body>
<div id="status">Drop any combination of models (.mdl, .mdx) to convert them</div>
<script src="../../dist/viewer.min.js"></script>
<script src="../thirdparty/filesaver.js"></script>
<script src="index.js"></script>
</body>
</html>