Minor renames
parent
0e38fdb21e
commit
c20bd5d7a4
|
@ -580,11 +580,11 @@ dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"cgmath",
|
"cgmath",
|
||||||
"crossbeam",
|
"crossbeam",
|
||||||
|
"galactica-behavior",
|
||||||
"galactica-constants",
|
"galactica-constants",
|
||||||
"galactica-content",
|
"galactica-content",
|
||||||
"galactica-gameobject",
|
"galactica-gameobject",
|
||||||
"galactica-render",
|
"galactica-render",
|
||||||
"galactica-shipbehavior",
|
|
||||||
"galactica-ui",
|
"galactica-ui",
|
||||||
"galactica-world",
|
"galactica-world",
|
||||||
"image",
|
"image",
|
||||||
|
@ -597,6 +597,15 @@ dependencies = [
|
||||||
"winit",
|
"winit",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "galactica-behavior"
|
||||||
|
version = "0.0.0"
|
||||||
|
dependencies = [
|
||||||
|
"cgmath",
|
||||||
|
"galactica-content",
|
||||||
|
"galactica-world",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "galactica-constants"
|
name = "galactica-constants"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
@ -642,15 +651,6 @@ dependencies = [
|
||||||
"winit",
|
"winit",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "galactica-shipbehavior"
|
|
||||||
version = "0.0.0"
|
|
||||||
dependencies = [
|
|
||||||
"cgmath",
|
|
||||||
"galactica-content",
|
|
||||||
"galactica-world",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "galactica-ui"
|
name = "galactica-ui"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
|
|
@ -33,7 +33,7 @@ members = [
|
||||||
"crates/render",
|
"crates/render",
|
||||||
"crates/constants",
|
"crates/constants",
|
||||||
"crates/world",
|
"crates/world",
|
||||||
"crates/shipbehavior",
|
"crates/behavior",
|
||||||
"crates/gameobject",
|
"crates/gameobject",
|
||||||
"crates/ui",
|
"crates/ui",
|
||||||
]
|
]
|
||||||
|
@ -45,7 +45,7 @@ galactica-content = { path = "crates/content" }
|
||||||
galactica-render = { path = "crates/render" }
|
galactica-render = { path = "crates/render" }
|
||||||
galactica-constants = { path = "crates/constants" }
|
galactica-constants = { path = "crates/constants" }
|
||||||
galactica-world = { path = "crates/world" }
|
galactica-world = { path = "crates/world" }
|
||||||
galactica-shipbehavior = { path = "crates/shipbehavior" }
|
galactica-behavior = { path = "crates/behavior" }
|
||||||
galactica-gameobject = { path = "crates/gameobject" }
|
galactica-gameobject = { path = "crates/gameobject" }
|
||||||
galactica-ui = { path = "crates/ui" }
|
galactica-ui = { path = "crates/ui" }
|
||||||
|
|
||||||
|
|
3
TODO.md
3
TODO.md
|
@ -1,8 +1,9 @@
|
||||||
## Specific Jobs
|
## Specific Jobs
|
||||||
|
- Finish particles
|
||||||
|
- Projectile colliders & particles
|
||||||
- UI: health, shield, fuel, heat, energy bars
|
- UI: health, shield, fuel, heat, energy bars
|
||||||
- UI: text arranger
|
- UI: text arranger
|
||||||
- Sound system
|
- Sound system
|
||||||
- Particles, impact effects
|
|
||||||
- Debris on ship death
|
- Debris on ship death
|
||||||
|
|
||||||
----------------------------------
|
----------------------------------
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "galactica-shipbehavior"
|
name = "galactica-behavior"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
use cgmath::{Point2, Point3};
|
use cgmath::Point2;
|
||||||
use content::SystemHandle;
|
use content::SystemHandle;
|
||||||
use std::time::Instant;
|
use std::time::Instant;
|
||||||
use winit::event::{ElementState, MouseButton, MouseScrollDelta, TouchPhase, VirtualKeyCode};
|
use winit::event::{ElementState, MouseButton, MouseScrollDelta, TouchPhase, VirtualKeyCode};
|
||||||
|
|
||||||
use crate::camera::Camera;
|
use crate::camera::Camera;
|
||||||
use crate::{content, inputstatus::InputStatus};
|
use crate::{content, inputstatus::InputStatus};
|
||||||
|
use galactica_behavior::{behavior, ShipBehavior};
|
||||||
use galactica_constants;
|
use galactica_constants;
|
||||||
use galactica_gameobject as object;
|
use galactica_gameobject as object;
|
||||||
use galactica_render::{ObjectSprite, ParticleBuilder, UiSprite};
|
use galactica_render::{ObjectSprite, ParticleBuilder, UiSprite};
|
||||||
use galactica_shipbehavior::{behavior, ShipBehavior};
|
|
||||||
use galactica_ui as ui;
|
use galactica_ui as ui;
|
||||||
use galactica_world::{util, ShipPhysicsHandle, World};
|
use galactica_world::{util, ShipPhysicsHandle, World};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue