26 lines
727 B
HTML
26 lines
727 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="themes.css" />
|
|
<script src="UnityProgress.js"></script>
|
|
<script src="UnityLoader.js"></script>
|
|
|
|
<script>
|
|
var gameInstance = UnityLoader.instantiate("gameContainer", "SnowRider3D-gd-1.json", {
|
|
onProgress: UnityProgress,
|
|
Module: {
|
|
onRuntimeInitialized: function () {
|
|
UnityProgress(gameInstance, "complete");
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="webgl-content"><div id="gameContainer" style="width: 100%; height: 100%; margin: auto"></div></div>
|
|
</body>
|
|
</html>
|