mirror of
https://github.com/maxartz15/TextureCombiner.git
synced 2024-11-09 23:22:55 +01:00
1165a4e4a8
P4 -> GitHub sync.
27 lines
726 B
HTML
27 lines
726 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<style type="text/css">
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
}
|
|
</style>
|
|
<title>%UNITY_WEB_NAME%</title>
|
|
<script src="%UNITY_WEBGL_LOADER_URL%"></script>
|
|
<script>
|
|
var gameInstance = UnityLoader.instantiate("gameContainer", "%UNITY_WEBGL_BUILD_URL%");
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="gameContainer" style="width: 100vw; height: 100vh; margin: auto"></div>
|
|
</body>
|
|
</html> |