| Property | Value |
|---|---|
| Native Name | IS_SCRIPT_GLOBAL_SHAKING |
| Hash | 0xC912AF078AF19212 |
| Return Type | BOOL |
Description: Determines if a global camera shake is currently active. You can stop the currently active global camera shake using STOP_SCRIPT_GLOBAL_SHAKING.
NativeDB Introduced: v323
Examples
-- Print whether a global camera shake is currently active
print(IsScriptGlobalShaking())
// Print whether a global camera shake is currently active
console.log(IsScriptGlobalShaking());
using static CitizenFX.Core.Native.API;
// Print whether a global camera shake is currently active
Debug.WriteLine(IsScriptGlobalShaking());