SetOcclusionsEnabled

From Multi Theft Auto: Wiki
Revision as of 22:22, 20 January 2012 by Ccw (talk | contribs) (Created page with "__NOTOC__ {{Server client function}} This function is used to enable or disable occlusions. Occlusions are used by GTA to enhance performance, however when removeWorldModel i...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function is used to enable or disable occlusions. Occlusions are used by GTA to enhance performance, however when removeWorldModel is used they may also have the undesired effect of making parts of the map disappear. Disabling occlusions will fix that.

Syntax

bool setOcclusionsEnabled ( bool enabled )

Required Arguments

  • enabled: A bool specifying if GTA occlusions should be enabled

Returns

Returns true if the setting was set correctly, false if invalid arguments were passed.

Example

This example shows occlusions being disabled after the whole map has been cleared:

-- Remove all world models
for i=700,20000 do
    removeWorldModel(i,10000,0,0,0)
end
-- Turn off occlusions
setOcclusionsEnabled( false )

See Also