SetNearClipPlane: Difference between revisions

From Onset Developer Wiki
No edit summary
m (Minor addition)
Line 6: Line 6:


{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|distance|The distance in which you have to cull the objects.}}
{{FuncParam|distance|The distance in which you have to cull the objects. Set to zero (0) to reset back to defaults.}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|__EDIT_ME__}}

Revision as of 18:01, 20 December 2019

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. Set to zero (0) to reset back to defaults.

Return Value

  • __EDIT_ME__

Example

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

See also

Template:ClientPlayerFunctions