15 lines
402 B
Rust
15 lines
402 B
Rust
use crate::FACTOR;
|
|
use bevy::color::Color;
|
|
|
|
pub const CENTER_X: f32 = 0.0;
|
|
pub const CENTER_Y: f32 = 0.0;
|
|
|
|
// pub const FACTOR_RADIUS: f32 = FACTOR as f32 / 2.0;
|
|
|
|
pub const STEP: f32 = FACTOR as f32 / SCALE;
|
|
pub const SCALE: f32 = 2.0;
|
|
|
|
//COLORS
|
|
pub const PINK: Color = Color::srgb_u8(250, 0, 155);
|
|
pub const BLUE: Color = Color::srgb_u8(0, 0, 255);
|
|
pub const GREEN: Color = Color::srgb_u8(0, 255, 0);
|