Garry's Mod Wiki

Garry's Mod Wiki

  boolean render.EnableClipping( boolean state )

Description

Sets the status of the clip renderer, returning previous state.

To prevent unintended rendering behavior of other mods/the game, you must reset the clipping state to its previous value.

Arguments

1 boolean state
New clipping state.

Returns

1 boolean
Previous clipping state.

Example

Properly using the function.

-- Inside some rendering hook local oldclip = render.EnableClipping( true ) -- Your code here render.EnableClipping( oldclip )

Example

Clips the lower half of your custom entity

function ENT:Draw() local normal = self:GetUp() -- Everything "behind" this normal will be clipped local position = normal:Dot( self:GetPos() ) -- self:GetPos() is the origin of the clipping plane local oldEC = render.EnableClipping( true ) render.PushCustomClipPlane( normal, position ) self:DrawModel() render.PopCustomClipPlane() render.EnableClipping( oldEC ) end

This site is a community mirror of the official Garry's Mod wiki.. This site is not maintained by Facepunch Studios.

Page content is automatically updated four times a day. Edits and history are not available.

Last Parsed: Loading...