Details
Add FX Earth Quake effect to your camera.
Add it to the Camera GameObject via the Components menu
CameraFilterPack > FX > Earth Quake
*without and with Camera Filter Pack FX Earth Quake
Property |
Range |
Default |
---|---|---|
Speed | 0f to 100f | 15f |
X | 0f to 0.2f | 0.008f |
Y | 0f to 0.2f | 0.008f |
Manipulate FX Earth Quake by script
Example:
// Drag and Drop your Camera GameObject
// with the FX Earth Quake component
// to your current script on the CamFX_FX_Earth Quake field
public CameraFilterPack_FX_EarthQuake CamFX_FX_Earth Quake;
void Update()
{
CamFX_FX_Earth Quake.Speed = 15f;
}