fix: remove avoidance field from boid properties as it was accidentally included

This commit is contained in:
dusk 2024-12-06 22:39:25 +03:00
parent c5f470ed2e
commit b30b0ef5e4
Signed by: dusk
SSH Key Fingerprint: SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw

View File

@ -31,8 +31,4 @@ pub struct BoidProperties {
#[init(val = 0.8)] #[init(val = 0.8)]
/// How much to follow a flock target (if there is one). /// How much to follow a flock target (if there is one).
pub targeting: f32, pub targeting: f32,
#[export]
#[init(val = 1.0)]
/// How much to avoid avoidance objects (if there are any).
pub avoidance: f32,
} }