bonsairobo / smooth-bevy-cameras

Bevy camera controllers with buttery, exponential smoothing.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Make `look_transform_system` public

musjj opened this issue · comments

I was having jittering issues with camera movements in general (not just with this plugin) and I've realized that the issue was the non-deterministic order between player and camera movement systems. So I wanted to schedule the system myself:

fn look_transform_system(
mut cameras: Query<(&LookTransform, &mut Transform, Option<&mut Smoother>)>,
) {

But the function is private. Can it be made public for purposes like this?