GetPhysicsDefaultSkinWidth

Definition

double GetPhysicsDefaultSkinWidth()

Description

This function returns the value of physics default skin width.

Return Value

The value of physics default skin width.

Example

value = 0.0

function Init()
    value  = GetPhysicsDefaultSkinWidth()

    message = string.format("\nDefault physics skin width is : %.2f" ,value)
    PrintConsole(message)
end

function Update()

end
First we get the value of physics default skin width. Then we display the result in the console using the PrintConsole function.
adminGetPhysicsDefaultSkinWidth