GetCameraGoggleEffect

From Multi Theft Auto: Wiki
Revision as of 18:27, 10 February 2011 by Remi-X (talk | contribs) (Added example explanation. Added code indentation. Removed "Needs_example" category.)
Jump to navigation Jump to search

This function returns what goggle effect is currently affecting the camera.

Syntax

string getCameraGoggleEffect (  )

Returns

Returns a string indicating the current camera goggle effect. Their meanings can be seen below.

  • normal: No camera goggle effect
  • nightvision: Nightvision camera
  • thermalvision: Infrared camera

Example

This example adds a command to enable or disable the nightvision effect.

function nightvision()
    if(getCameraGoggleEffect == "normal") then
        setCameraGoggleEffect("nightvision")
    else if(getCameraGoggleEffect == "nightvision") then
        setCameraGoggleEffect("normal")
    end
end

addCommandHandler("nightvision", nightvision)

See Also