diff options
author | metamuffin <metamuffin@disroot.org> | 2025-01-07 23:19:31 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-01-07 23:19:31 +0100 |
commit | 30ef8aeb1fdf7f3686442d758ee77874aa29d53e (patch) | |
tree | 32ba50fc1a547a6889ee82e430c26be696524ddb /world/Cargo.toml | |
parent | a617f060f80d6f2b544b7cfda59da2ce5ce758f8 (diff) | |
download | weareserver-30ef8aeb1fdf7f3686442d758ee77874aa29d53e.tar weareserver-30ef8aeb1fdf7f3686442d758ee77874aa29d53e.tar.bz2 weareserver-30ef8aeb1fdf7f3686442d758ee77874aa29d53e.tar.zst |
gltf point lights
Diffstat (limited to 'world/Cargo.toml')
-rw-r--r-- | world/Cargo.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/world/Cargo.toml b/world/Cargo.toml index 540b54b..93d1133 100644 --- a/world/Cargo.toml +++ b/world/Cargo.toml @@ -7,7 +7,11 @@ edition = "2024" anyhow = "1.0.95" clap = { version = "4.5.23", features = ["derive"] } env_logger = "0.11.6" -gltf = { version = "1.4.1", features = ["extras", "names"] } +gltf = { version = "1.4.1", features = [ + "extras", + "names", + "KHR_lights_punctual", +] } log = "0.4.22" weareshared = { path = "../shared" } rand = "0.9.0-beta.1" |