version dump, fix errors
This commit is contained in:
parent
b550531bf8
commit
af5b623327
4 changed files with 598 additions and 387 deletions
919
Cargo.lock
generated
919
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
54
dist/index.html
vendored
54
dist/index.html
vendored
|
@ -1,31 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<style>
|
||||
html,
|
||||
body,
|
||||
canvas {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
background: black;
|
||||
z-index: 0;
|
||||
}
|
||||
</style>
|
||||
<title>Typonomy</title>
|
||||
</head>
|
||||
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<style>
|
||||
html,
|
||||
body,
|
||||
canvas {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
position: absolute;
|
||||
background: black;
|
||||
z-index: 0;
|
||||
}
|
||||
</style>
|
||||
<title>My Game</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<canvas id="canvas" width="1280" height="720" cursor="auto"></canvas>
|
||||
<script type="module">
|
||||
import init from "./game.js"
|
||||
init()
|
||||
</script>
|
||||
</body>
|
||||
|
||||
<body>
|
||||
<canvas id="canvas" width="1280" height="720" cursor="auto"></canvas>
|
||||
<script type="module">
|
||||
import init from "./game.js";
|
||||
init();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -4,4 +4,4 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
bevy = { version = "0.13", features = ["webgl2"] }
|
||||
bevy = { version = "0.14", features = ["webgl2"] }
|
||||
|
|
|
@ -4,8 +4,8 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
axum = "0.7.4"
|
||||
shuttle-axum = "0.49.0"
|
||||
shuttle-runtime = "0.49.0"
|
||||
tokio = "1.28.2"
|
||||
tower-http = { version = "0.5.0", features = ["fs"] }
|
||||
axum = "0.7"
|
||||
shuttle-axum = "*"
|
||||
shuttle-runtime = "*"
|
||||
tokio = "1"
|
||||
tower-http = { version = "0", features = ["fs"] }
|
||||
|
|
Loading…
Reference in a new issue