Hi,
This is the link to the sample of Third Person Controller.
As you can see, even from the live preview of the above sample, there is a weird and annoying constant camera shake or jitter.
I have tried playing it in multiple browsers in my gaming laptop and even on my Samsung phone yet by default there is camera shake or jitter which is very annoying.
This same behavior can be found when the sample is imported in unity for further edits.
Older threads have mentioned something about character controller and orbit controls fighting for control over the camera and thus i disabled the orbit controls script and yes the camera jitter stops but i am unable to look around the scene using my mouse.
Can someone please give a proper step by step in order to retain all functionalities but remove the annoying camera shake bug please…
Hi Amir,
To resolve the camera shake issue in the Third Person Controller, you can follow these steps:
-
Review Camera and Controls Setup: Ensure that the camera and controls are not conflicting. The main cause of the shake is often the simultaneous control from both the character controller and the orbit controls.
-
Disable Orbit Controls: Since disabling the orbit controls stops the jitter but takes away your ability to look around, you may need to adjust the orbit controls instead of completely turning them off.
-
Adjust OrbitControls Settings: You can enable damping in the orbit controls configuration. Damping helps smooth the camera movements. In your OrbitControls
component:
- Enable damping by setting
enableDamping
to true.
- Set an appropriate
dampingFactor
(try values between 0.1 and 0.5).
-
Implement Custom Camera Targeting: Use a custom camera management script to only control your camera when it’s appropriate, instead of relying solely on the orbit controls or character movement:
- Create a separate component to calculate where the camera should be and interpolate its position smoothly based on the player’s position.
Here’s a pseudocode snippet for a custom camera handler:
// Pseudocode
class CustomCameraController {
constructor(camera, target) {
this.camera = camera;
this.target = target; // the player
this.offset = new Vector3(0, 1.5, -5); // adjust as needed
}
update() {
const desiredPosition = this.target.position.clone().add(this.offset);
// Smoothly interpolate to the desired position
this.camera.position.lerp(desiredPosition, 0.1);
this.camera.lookAt(this.target.position);
}
}
// In your update loop
const cameraController = new CustomCameraController(camera, player);
- Test Across Different Devices: After making these adjustments, ensure you test on different devices to make sure the behavior is consistent.
By carefully managing which components affect the camera and smoothing out the transitions, the shake can be mitigated while still allowing player control.
If you have any specific component configurations or additional code snippets you’re working on, share them so I can provide more tailored advice!
1 replies left - Get a PRO license for more AI replies.
thread_yg9xXxoRKVMd2RHP2dKpSJwE
Reply to this message to continue the conversation
Hi, can you list more details about which devices you tried this link on and see camera jitter? We’re not aware of that issue, and I just tested across some of our test devices here and can’t reproduce it, so more info would be appreciated. Thanks!
Hello Felix!
Thank you for the swift response.
I used Unity 2022 and the Needle package to try to use the Third Person Controller Sample and previewed it in my MS Edge Browser and everything seemed to work but the camera was janky/shaking/jittering/vibrating throughout the gameplay.
I thought maybe i did something wrong so i went to the official sample preview and found the same issue there.
I ran the official sample preview on my:
- Dell Precision 7780
13th gen intel core i9
64GB RAM
RTX 4090
Edge Browser
Firefox Browser
Chrome Browser
Samsung Galaxy Fold 6
Chrome Browser
Here’s an entire video recording of everything I mentioned:
A solution to fix this in unity will be highly appreciated!
Wow, that looks crazy. I’ll try to find a device where this reproduces.
Could you do a quick test and visit Hardware Tester in the same browser and write here what you see there? Just want to know if your browser uses your RTX or the integrated graphics.
Thanks – I recommend you check your Nvidia settings to allow your browser(s) to actually access your graphics card, you’re missing out on all that nice RTX performance in the browser right now 
I was able to reproduce the jittering by applying 20x CPU throttling in the Chrome dev console, will see if we can get this fixed.
I have been doing game and VR Dev on this laptop for 2 months without realizing this
Thanks!
1 Like
After making the switch to NVIDIA GPU there is no camera jitter effect. The sample runs smooth. Thanks!
I have asked a few others to check it on their laptops too.
Will let you know if they find the jitter bug.
1 Like