boost interaction distance

This commit is contained in:
yuni 2024-04-14 21:51:59 +02:00
parent 2c28394705
commit ac1d1d9bca

View file

@ -5,8 +5,8 @@ use bevy::math::DVec3;
use crate::{actor, audio, camera, chat, commands, effects, hud, nature, var, world};
pub const ENGINE_SPEED_FACTOR: f32 = 30.0;
const MAX_TRANSMISSION_DISTANCE: f32 = 60.0;
const MAX_INTERACT_DISTANCE: f32 = 30.0;
const MAX_TRANSMISSION_DISTANCE: f32 = 100.0;
const MAX_INTERACT_DISTANCE: f32 = 40.0;
pub struct ActorPlugin;
impl Plugin for ActorPlugin {