rendering, physics, player and camera WIP

This commit is contained in:
Jonas H
2026-01-01 19:54:00 +01:00
commit 5d2eca0393
51 changed files with 8734 additions and 0 deletions

19
Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "snow_trail_sdl"
version = "0.1.0"
edition = "2021"
[dependencies]
sdl3 = { version = "0.16", features = ["raw-window-handle"] }
wgpu = "27"
pollster = "0.3"
glam = "0.30"
anyhow = "1.0"
rapier3d = "0.31"
bytemuck = { version = "1.14", features = ["derive"] }
gltf = "1.4"
image = { version = "0.25", features = ["exr"] }
exr = "1.72"
half = "2.4"
kurbo = "0.11"
nalgebra = { version = "0.34.1", features = ["convert-glam030"] }