Garry's Mod Wiki

Garry's Mod Wiki

  Entity:SetRenderClipPlane( Vector planeNormal, number planePosition )

Description

Used to specify a plane, past which an object will be visually clipped.

Arguments

1 Vector planeNormal
The normal of the plane. Anything behind the normal will be clipped.
2 number planePosition
The position of the plane.

Example

Creates a blue barrel at Vector( 0, 0, 0 ), freezes it, and will visually clip the barrel's lower half.

local ent = ents.CreateClientProp( "models/props_borealis/bluebarrel001.mdl" ) ent:SetPos( Vector(0, 0, 0) ) ent:Spawn() ent:GetPhysicsObject():EnableMotion( false ) local normal = ent:GetUp() local position = normal:Dot( ent:GetPos() ) ent:SetRenderClipPlaneEnabled( true ) ent:SetRenderClipPlane( normal, position )

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...