Add Bevy remote protocol setup

This commit is contained in:
Michael Bradley 2025-05-22 23:03:11 -04:00
parent 6a151397de
commit 2df3f0262b
Signed by: MichaelBradley
SSH key fingerprint: SHA256:o/aaeYtRubILK7OYYjYP12DmU7BsPUhKji1AgaQ+ge4
3 changed files with 264 additions and 3 deletions

View file

@ -22,6 +22,7 @@ avian2d = { version = "0.3.0", features = ["serialize", "simd"] }
bevy = { version = "0.16.0", default-features = false, features = [
"bevy_color",
"bevy_core_pipeline",
"bevy_remote",
"bevy_render",
"bevy_ui",
"bevy_window",
@ -37,5 +38,8 @@ log = { version = "*", features = [
"max_level_debug",
"release_max_level_warn",
] }
rand = { version = "0.9.1", default-features = false, features = ["std", "thread_rng"] }
rand = { version = "0.9.1", default-features = false, features = [
"std",
"thread_rng",
] }
wyrand = "0.3.2"