mirror of
https://github.com/eliasstepanik/voxel-simulation.git
synced 2026-01-10 21:38:29 +00:00
11 lines
308 B
Rust
11 lines
308 B
Rust
use bevy::color::palettes::basic::*;
|
|
use bevy::color::palettes::css::{BEIGE, MIDNIGHT_BLUE, ORANGE, ORANGE_RED, SEA_GREEN};
|
|
use bevy::math::*;
|
|
use bevy::pbr::{CascadeShadowConfigBuilder, NotShadowCaster};
|
|
use bevy::prelude::*;
|
|
|
|
pub fn setup(mut commands: Commands) {
|
|
|
|
// Insert the octree into the ECS
|
|
}
|