feat: stochastic alpha!!!

This commit is contained in:
Nova
2025-07-02 12:37:26 -07:00
parent 98ae69c858
commit 859d38f1b8
3 changed files with 9 additions and 19 deletions

15
Cargo.lock generated
View File

@@ -1346,7 +1346,7 @@ dependencies = [
[[package]]
name = "bevy_sk"
version = "0.1.0"
source = "git+https://github.com/Schmarni-Dev/bevy_sk?branch=fix_mat_stuff#744e9bb442a690b1abc15f50ba2655228bd84eea"
source = "git+https://github.com/technobaboo/bevy_sk?branch=stochastic#ff88e5be78a2cab3fffaa42f5d75abc9bb55df6d"
dependencies = [
"bevy",
"bevy_mod_xr",
@@ -1598,7 +1598,7 @@ dependencies = [
"bitflags 2.9.1",
"cexpr",
"clang-sys",
"itertools 0.13.0",
"itertools 0.11.0",
"log",
"prettyplease",
"proc-macro2",
@@ -1618,7 +1618,7 @@ dependencies = [
"bitflags 2.9.1",
"cexpr",
"clang-sys",
"itertools 0.13.0",
"itertools 0.11.0",
"proc-macro2",
"quote",
"regex",
@@ -3411,15 +3411,6 @@ dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [
"either",
]
[[package]]
name = "itertools"
version = "0.14.0"

View File

@@ -80,7 +80,6 @@ tokio = { version = "1.39.2", features = ["rt-multi-thread", "signal", "time"] }
# bevy
bevy = { version = "0.16", default-features = false, features = [
# default features
"bevy_asset",
"bevy_audio",
"bevy_color",
@@ -94,7 +93,6 @@ bevy = { version = "0.16", default-features = false, features = [
"bevy_winit",
"std",
"x11",
# non default features we need
"wayland",
"mp3",
"wav",
@@ -102,11 +100,12 @@ bevy = { version = "0.16", default-features = false, features = [
"png",
"hdr",
"jpeg",
"tonemapping_luts",
] }
bevy_mod_xr = "0.3"
bevy_mod_openxr = "0.3"
# bevy_sk.git = "https://github.com/MalekiRe/bevy_sk"
bevy_sk = { git = "https://github.com/Schmarni-Dev/bevy_sk", branch = "fix_mat_stuff" }
bevy_sk = { git = "https://github.com/technobaboo/bevy_sk", branch = "stochastic" }
# bevy-mesh-text-3d.git = "https://github.com/terhechte/bevy-mesh-text-3d"
# use my fork until my pr to use minimal bevy features was merged

View File

@@ -344,10 +344,10 @@ fn bevy_loop(
app.add_plugins((
bevy_sk::hand::HandPlugin,
// bevy_sk::vr_materials::SkMaterialPlugin {
// replace_standard_material: false,
// },
// bevy_sk::skytext::SphericalHarmonicsPlugin,
bevy_sk::vr_materials::SkMaterialPlugin {
replace_standard_material: true,
},
bevy_sk::skytext::SphericalHarmonicsPlugin,
));
// app.add_plugins(HandGizmosPlugin);
app.world_mut().resource_mut::<AmbientLight>().brightness = 2000.0;