From ac1d1d9bca66df4759f712b1c1c506725b12c159 Mon Sep 17 00:00:00 2001 From: hut Date: Sun, 14 Apr 2024 21:51:59 +0200 Subject: [PATCH] boost interaction distance --- src/actor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/actor.rs b/src/actor.rs index ee0499a..16d312a 100644 --- a/src/actor.rs +++ b/src/actor.rs @@ -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 {