kitgit

tirbofish/dropbear · diff

3182754 · Thribhu K

new package command, redback-runtime scripting works now, other features as well jarvis, run github actions

Unverified

diff --git a/.cargo/.config.toml b/.cargo/.config.toml
index 3a589a1..8d15538 100644
--- a/.cargo/.config.toml
+++ b/.cargo/.config.toml
@@ -1,2 +1,2 @@
 [target.x86_64-pc-windows-msvc]
-rustflags = ["-C", "target-feature=+crt-static", "-C", "prefer-dynamic=no"]
\ No newline at end of file
+rustflags = ["-C", "target-feature=+crt-static", "-C", "prefer-dynamic"]
\ No newline at end of file
diff --git a/Cargo.toml b/Cargo.toml
index 0c0e35e..a6f5375 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -25,7 +25,7 @@ arboard = "3.6"
 bincode = { version = "2.0", features = ["serde"] }
 bytemuck = { version = "1.23", features = ["derive"] }
 chrono = "0.4"
-clap = "4.5"
+clap = { version = "4.5", features = ["derive"] }
 colored = "3.0"
 crossbeam-channel = "0.5"
 dropbear-engine = { path = "dropbear-engine" }
diff --git a/dropbear-engine/src/camera.rs b/dropbear-engine/src/camera.rs
index 9463625..db9907c 100644
--- a/dropbear-engine/src/camera.rs
+++ b/dropbear-engine/src/camera.rs
@@ -40,7 +40,7 @@ impl CameraSettings {
 
 impl Default for CameraSettings {
     fn default() -> Self {
-        Self::new(1.0, 0.1, 45.0)
+        Self::new(1.0, 0.002, 45.0)
     }
 }
 
diff --git a/eucalyptus-core/src/scene.rs b/eucalyptus-core/src/scene.rs
index 68e2a72..72d1379 100644
--- a/eucalyptus-core/src/scene.rs
+++ b/eucalyptus-core/src/scene.rs
@@ -105,7 +105,7 @@ impl SceneConfig {
 
     /// Helper function to load a component and add it to the entity builder
     async fn load_component(
-        component: Box<dyn dropbear_traits::SerializableComponent>,
+        component: Box<dyn SerializableComponent>,
         builder: &mut hecs::EntityBuilder,
         graphics: Arc<SharedGraphicsContext>,
         registry: Option<&ComponentRegistry>,
diff --git a/eucalyptus-core/src/scripting.rs b/eucalyptus-core/src/scripting.rs

Large diffs are not rendered by default. Showing the first 50 of 1287 lines. Show full diff