pub fn add_impulse(entity: EntityId, impulse: Vec3)
Available on crate feature server only.
Expand description

Applies an impulse (a Vec3) to the entity (an EntityId) specified.

impulse is a vector in world space, which means it has both direction and magnitude. To push objects upwards (positive Z) with strength 3,000, you would supply an impulse of vec3(0.0, 0.0, 3_000.0) or Vec3::Z * 3_000.0 (either are equivalent.)