GetCharacterControllerForcePower

Definition

double GetCharacterControllerForcePower()

Description

This function returns the force power value of the physics character controller.

Return Value

The force power value of the physics character controller.

Example

value = 0.0

function Init()
    value  = GetCharacterControllerForcePower()

    message = string.format("\nCharacter Controller Force Power is : %.2f" ,value)
    PrintConsole(message)
end

function Update()

end
First we get the force power value of the physics character controller. Then we display the result in the console using the PrintConsole function.
adminGetCharacterControllerForcePower