I know this is late, but I recognize the model. Its based on the link gun from the cancelled Unreal Tournament 4.
Detachable_Penis
5
Posts
A member registered Jan 15, 2021 · View creator page →
Creator of
Fix the engine on an alien space ship before you die - or get fired.
Play in browser
very short (~30 seconds) platformer made in 3 hours for Trijam #378
Platformer
Play in browser
Recent community posts
Pretty solid, almost made it to round 40 on my first run.
I noticed some pretty heavy mouse input delay though, so I opened the game files with GDRE and found this in player.gd at line 180.
"camera.rotation.x = lerp_angle(camera.rotation.x, rotation_target.x, delta * 25)
rotation.y = lerp_angle(rotation.y, rotation_target.y, delta * 25)"
This is causing input delay, you should remove these lines and just set the player's rotation in the _input function
"rotation_target.y -= event.relative.x / mouse_sensitivity
rotation_target.x -= event.relative.y / mouse_sensitivity
rotation.y = rotation_target.y
camera.rotation.x = rotation_target.x"
(You could also just get rid of the "rotation_target" variable, unless you're relying on it elsewhere)

