Cam::setCamEffect: Difference between revisions
(yay) |
(yay) |
||
| Line 1: | Line 1: | ||
if p0 is 0, effect is cancelled<br><br>if p0 is 1, effect zooms in, gradually tilts cam clockwise apx 30 degrees, wobbles slowly. Motion blur is active until cancelled.<br><br>if p0 is 2, effect immediately tilts cam clockwise apx 30 degrees, begins to wobble slowly, then gradually tilts cam back to normal. The wobbling will continue until the effect is cancelled. | if p0 is 0, effect is cancelled<br><br>if p0 is 1, effect zooms in, gradually tilts cam clockwise apx 30 degrees, wobbles slowly. Motion blur is active until cancelled.<br><br>if p0 is 2, effect immediately tilts cam clockwise apx 30 degrees, begins to wobble slowly, then gradually tilts cam back to normal. The wobbling will continue until the effect is cancelled. | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="javascript">cam.setCamEffect(p0);</syntaxhighlight> | <syntaxhighlight lang="javascript">mp.game.cam.setCamEffect(p0);</syntaxhighlight> | ||
=== Required Arguments === | === Required Arguments === | ||
*'''p0:''' int | *'''p0:''' int | ||
| Line 8: | Line 8: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
todo | // todo | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==See also== | ==See also== | ||
{{ | {{Cam_s_function_c}} | ||
[[Category:Clientside API]] | [[Category:Clientside API]] | ||
[[Category:TODO: Example]] | [[Category:TODO: Example]] | ||
Latest revision as of 21:04, 6 May 2017
if p0 is 0, effect is cancelled
if p0 is 1, effect zooms in, gradually tilts cam clockwise apx 30 degrees, wobbles slowly. Motion blur is active until cancelled.
if p0 is 2, effect immediately tilts cam clockwise apx 30 degrees, begins to wobble slowly, then gradually tilts cam back to normal. The wobbling will continue until the effect is cancelled.
Syntax
mp.game.cam.setCamEffect(p0);
Required Arguments
- p0: int
Return value
- Undefined
Example
// todo