29 lines
1,020 B
HTML
29 lines
1,020 B
HTML
<!doctype html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Unity WebGL Player | New Unity Project</title>
|
|
<style>
|
|
/* a style sheet needs to be present for cursor hiding and custom cursors to work. */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas class="emscripten" id="canvas" oncontextmenu="event.preventDefault()" height="1024px" width="768px"></canvas>
|
|
<script type='text/javascript'>
|
|
var Module = {
|
|
TOTAL_MEMORY: 268435456,
|
|
errorhandler: null, // arguments: err, url, line. This function must return 'true' if the error is handled, otherwise 'false'
|
|
compatibilitycheck: null,
|
|
backgroundColor: "#80858B",
|
|
splashStyle: "Dark",
|
|
dataUrl: "Release/unityUITests.data",
|
|
codeUrl: "Release/unityUITests.js",
|
|
asmUrl: "Release/unityUITests.asm.js",
|
|
memUrl: "Release/unityUITests.mem",
|
|
};
|
|
</script>
|
|
<script src="Release/UnityLoader.js"></script>
|
|
|
|
</body>
|
|
</html>
|