FadeCamera

From Liberty Unleashed Wiki
Revision as of 02:29, 25 September 2010 by Juppi (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This function fades the camera for the given player. It is also possible to set the fading colour.

Syntax

FadeCamera can take 3 different lists of parameters. These are:

  1. bool FadeCamera( Player plr, float speed, bool fadeIn )
  1. bool FadeCamera( Player plr, float speed, bool fadeIn, Colour col )
  1. bool FadeCamera( Player plr, float speed, bool fadeIn, int r, int g, int b )

Arguments

  • plr - This is the pointer of the player to fade the camera for
  • speed - The fading speed. The higher the value, the slower the fade
  • fadeIn - A boolean representing whether the camera should be faded in or out
  • col - A pointer to a predefined colour object to set the fade colour
  • r, g, b - Integer values for the fading colours - red, green, blue. Values range from 0 to 255

Example

When used, this command would fade the camera of the player that typed "/fade".

  1.  
  2. function onPlayerCommand( player, cmd, text )
  3. {
  4. if ( cmd == "fade" ) FadeCamera( player, 5.0, false, 255, 0, 0 );
  5. return 1;
  6. }
  7.  

Notes

The call onPlayerCommand was used in in this example. More info about this in the corresponding page.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox