Hello guys,
i need an observable or listener to tell me if the camera is moving or standing still at that moment.
I didn’t find anything in the API documentation for the cameras.
1 Like
Hey!
you can register to:
camera.onViewMatrixChangedObservable.add(() => {
});
2 Likes
Thank you.