Skip to content

Commit

Permalink
Begin to add ability to load goldsrc mdl files
Browse files Browse the repository at this point in the history
  • Loading branch information
eira-fransham committed May 21, 2020
1 parent c01472f commit 8e8b264
Show file tree
Hide file tree
Showing 12 changed files with 1,405 additions and 693 deletions.
116 changes: 57 additions & 59 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ edition = "2018"

[dependencies]
bsp = { path = "./bsp" }
goldsrc-mdl = { path = "./goldsrc-mdl/" }
wgpu = { git = "https://github.com/gfx-rs/wgpu-rs" }
winit = "0.22"
futures = "0.3"
Expand All @@ -20,4 +21,4 @@ image = "0.23"
memoffset = "0.5"

[workspace]
members = ["bsp"]
members = ["bsp", "goldsrc-mdl", "goldsrc-format-common"]
6 changes: 3 additions & 3 deletions bsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ license = "MIT"
edition = "2018"

[dependencies]
arrayvec = "0.4"
bitflags = "1.0"
arrayvec = "0.5"
bitflags = "1"
bv = "0.11"
byteorder = "0.5"
itertools = "0.9"
goldsrc-format-common = { path = "../goldsrc-format-common/", features = ["nightly"] }

[features]
bench = []
Loading

0 comments on commit 8e8b264

Please sign in to comment.