Squirrel/Server/Functions/Camera/GetCinematicBorder

From Liberty Unleashed Wiki
Revision as of 15:57, 7 January 2010 by Juppi (Talk | contribs)

Jump to: navigation, search

This function will return wether the cinematic border (widescreen) is in use. The function will return a boolean value of either true or false.

Syntax

  1. bool GetCinematicBorder()

Example

This example returns whether the cinematic border is in use when a player types '/cinema'.

  1.  
  2. function onPlayerCommand( player, command, text )
  3. {
  4. if ( command == "cinema" ) MessagePlayer( "Cinematic border is currently set to " + GetCinematicBorder(), player );
  5. }
  6.  

Notes

This is useful for checking that the cinematic border isn't already active before setting it to true.

The function MessagePlayer and event onPlayerCommand were used in in this example. More info about them in the corresponding pages.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox