SetNearClipPlane

From Onset Developer Wiki
Revision as of 10:10, 17 December 2019 by 28days (talk | contribs)
SetNearClipPlane

Type: Function
Context: Client
Introduced: v1.0

Description

This function culls triangles in a certain distance. Useful for the first person mode to hide head attachments.

Syntax

SetNearClipPlane(distance)

Parameters

  • distance
    The distance in which you have to cull the objects.

Return Value

  • __EDIT_ME__

Example

function OnKeyPress(key)
	if key == "P" then
		local bEnable = not IsFirstPersonCamera()
		EnableFirstPersonCamera(bEnable)
		SetNearClipPlane(25)
	end
end
AddEvent("OnKeyPress", OnKeyPress)

See also

Template:ClientPlayerFunctions