Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
A super simple Camera Shake plugin for 3D Godot projects. Easy to use and contains 3 different example use cases to show you a variety of ways it can be used to suit your project requirements!
SimpleCameraShake3D
A simple system for easily implementing camera shake in your 3D Godot projects.
For best results, have your core camera movement done through a Parent node to allow the Camera to shake freely as a child object is positioned by its parent.
There are 3 ways to use SimpleCameraShake3D!
AutoLoad the
CameraShakeNode
class and call_init_camera_shake(pCamera)
to use globally- This is the most simple way.
Attach this Node to the scene containing your Camera and set the export values in the inspector
- A simple alternative way to using Autoload.
Construct and init the
CameraShake
class directly by callingCameraShake.new(camera)
.- with the Construct way, you must also calling
CameraShake._update(delta)
in the_process(delta)
function.
- with the Construct way, you must also calling
A super simple Camera Shake plugin for 3D Godot projects.
Easy to use and contains 3 different example use cases to show you a variety of ways it can be used to suit your project requirements!
Reviews
Quick Information
A super simple Camera Shake plugin for 3D Godot projects. Easy to use and contains 3 different example use cases to show you a variety of ways it can be used to suit your project requirements!