This feature is exclusive to Bedrock Edition and Minecraft Education.
Sends a request to client for shaking the player's camera (the effect won't be shown if the player has Camera Shake disabled in their Accessibility settings).
Syntax[]
camerashake add <player: target> [intensity: float] [seconds: float] [shakeType: CameraShakeType]
- Add the camera shake effect to a player.
camerashake stop <player: target>
- Stops the camera shake.
Arguments[]
player: target
: CommandSelector<Player>
- Specifies the player(s) who's clients will be sent a camera shake request. If not specified, defaults to the command's executor (
@s
). - Must be a player name or a target selector. And the target selector should be of player type. Unlike in other command, this target selector can always target online dead players with
@e
.
intensity: float
: float
- Specifies the intensity of the camera shake.
- Must be a Single-precision floating-point format number. Should be between 0 and 4 (inclusive).
seconds: float
: float
- Specifies the duration of the camera shake.
- Must be a Single-precision floating-point format number.
shakeType: CameraShakeType
: enum
- Specifies the type of camera shake direction.
- Must be one of
positional
androtational
.
Result[]
Command | Trigger | Bedrock Edition |
---|---|---|
any | the arguments are not specified correctly | Unparseable |
the intensity number is less than 0 or above 4 | Failed | |
Otherwise | Successful |
Output[]
Command | Edition | Situation | Success Count |
---|---|---|---|
any | Bedrock Edition | On fail | 0 |
On success | 1 |
Example[]
To perform a positional camera shake with intensity 0.25 for 5 seconds:
/camerashake add @p 0.25 5 positional
To perform a rotational camera shake with intensity 0.25 for 5 seconds:
/camerashake add @p 0.25 5 rotational
History[]
Bedrock Edition | |||||
---|---|---|---|---|---|
1.16.100 | beta 1.16.100.57 | Added /camerashake . | |||
beta 1.16.100.59 | Added the ability to pick between different shake types. | ||||
1.16.210 | beta 1.16.210.54 | Added the stop camera shake command type. |