Skip to content

Commit

Permalink
update ssbh_data and ssbh_wgpu
Browse files Browse the repository at this point in the history
  • Loading branch information
ScanMountGoat committed Feb 26, 2024
1 parent 8eb44e6 commit b1c136f
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 81 deletions.
126 changes: 49 additions & 77 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ glam = { version = "0.25.0", features = ["mint", "bytemuck", "serde"] }
rfd = "0.10.0"
ssbh_wgpu = { git = "https://github.com/ScanMountGoat/ssbh_wgpu" }
nutexb_wgpu = { git = "https://github.com/ScanMountGoat/ssbh_wgpu" }
ssbh_data = { git = "https://github.com/ultimate-research/ssbh_lib", rev = "1a014fa", features = ["strum", "serde"] }
ssbh_data = { version = "0.18.0", features = ["strum", "serde"] }
strum = "0.24.1"
nutexb = "0.7.0"
octocrab = "0.19.0"
Expand Down
2 changes: 1 addition & 1 deletion src/app/rendering.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use log::error;
use ssbh_data::{anim_data::AnimData, SsbhData};
use ssbh_data::anim_data::AnimData;
use ssbh_wgpu::{animation::camera::animate_camera, CameraTransforms, SsbhRenderer};

use crate::{CameraState, CameraValues, LightingData, RenderState};
Expand Down
4 changes: 2 additions & 2 deletions src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ mod tests {
data: Vec::new(),
layer_mipmaps: Vec::new(),
footer: NutexbFooter {
string: Vec::new().into(),
string: Default::default(),
width: 1,
height: 1,
depth: 1,
Expand All @@ -872,7 +872,7 @@ mod tests {
data: Vec::new(),
layer_mipmaps: Vec::new(),
footer: NutexbFooter {
string: Vec::new().into(),
string: Default::default(),
width: 64,
height: 64,
depth: 1,
Expand Down

0 comments on commit b1c136f

Please sign in to comment.