update common

This commit is contained in:
Quaternions 2024-02-09 00:19:20 -08:00
parent 5401a7d69d
commit 4e35feb5c2
3 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@ -1522,7 +1522,7 @@ dependencies = [
[[package]] [[package]]
name = "strafesnet_common" name = "strafesnet_common"
version = "0.1.0" version = "0.1.0"
source = "git+https://git.itzana.me/StrafesNET/common?rev=c915cdfc0ae1f2c934ebf06b826b05401faa3ad0#c915cdfc0ae1f2c934ebf06b826b05401faa3ad0" source = "git+https://git.itzana.me/StrafesNET/common?rev=f155dd6a5015e4494c233888cb570a5014f86208#f155dd6a5015e4494c233888cb570a5014f86208"
dependencies = [ dependencies = [
"glam", "glam",
"id", "id",
@ -1531,7 +1531,7 @@ dependencies = [
[[package]] [[package]]
name = "strafesnet_rbx_loader" name = "strafesnet_rbx_loader"
version = "0.1.0" version = "0.1.0"
source = "git+https://git.itzana.me/StrafesNET/rbx_loader?rev=4be9e44627b3498236203cf2743c7ff49fc25873#4be9e44627b3498236203cf2743c7ff49fc25873" source = "git+https://git.itzana.me/StrafesNET/rbx_loader?rev=7a6b4943584179528fca5a9f6afb7990ca975310#7a6b4943584179528fca5a9f6afb7990ca975310"
dependencies = [ dependencies = [
"glam", "glam",
"lazy-regex", "lazy-regex",

View File

@ -13,8 +13,8 @@ glam = "0.25.0"
id = { git = "https://git.itzana.me/Quaternions/id", rev = "1f710976cc786c8853dab73d6e1cee53158deeb0" } id = { git = "https://git.itzana.me/Quaternions/id", rev = "1f710976cc786c8853dab73d6e1cee53158deeb0" }
parking_lot = "0.12.1" parking_lot = "0.12.1"
pollster = "0.3.0" pollster = "0.3.0"
strafesnet_common = { git = "https://git.itzana.me/StrafesNET/common", rev = "c915cdfc0ae1f2c934ebf06b826b05401faa3ad0" } strafesnet_common = { git = "https://git.itzana.me/StrafesNET/common", rev = "f155dd6a5015e4494c233888cb570a5014f86208" }
strafesnet_rbx_loader = { git = "https://git.itzana.me/StrafesNET/rbx_loader", rev = "4be9e44627b3498236203cf2743c7ff49fc25873" } strafesnet_rbx_loader = { git = "https://git.itzana.me/StrafesNET/rbx_loader", rev = "7a6b4943584179528fca5a9f6afb7990ca975310" }
wgpu = "0.19.0" wgpu = "0.19.0"
winit = "0.29.2" winit = "0.29.2"

View File

@ -1041,7 +1041,7 @@ impl PhysicsContext{
},aabb) },aabb)
}) })
}).collect(); }).collect();
self.data.bvh=bvh::generate_bvh_node(convex_mesh_aabb_list); self.data.bvh=bvh::generate_bvh(convex_mesh_aabb_list);
println!("Physics Objects: {}",self.data.models.models.len()); println!("Physics Objects: {}",self.data.models.models.len());
} }