Complete Bevy OpenSim scene rendering
Some checks failed
CI / rust-skia (Rust only) (push) Has been cancelled
CI / required (push) Has been cancelled

This commit is contained in:
2026-08-22 17:41:39 +02:00
parent f6f5abe464
commit 692894cac9
19 changed files with 6489 additions and 717 deletions

View File

@@ -9,11 +9,13 @@ description = "Reusable headless wgpu scene renderer and projection camera"
publish = false
[dependencies]
wgpu = { version = "30.0.1", default-features = false, features = ["std", "dx12", "metal", "gles", "vulkan", "wgsl"], optional = true }
bevy = { version = "0.19.1", default-features = false, features = ["3d_bevy_render", "default_app", "multi_threaded", "pbr_specular_textures"], optional = true }
[features]
default = []
wgpu = ["dep:wgpu"]
bevy-engine = ["dep:bevy"]
wgpu = ["bevy-engine"]
windowed = ["bevy-engine", "bevy/bevy_winit", "bevy/wayland", "bevy/x11"]
[lints]
workspace = true