EFrictionCombineMode::Type

Windows
MacOS
Linux

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Classes/PhysicsEngine/PhysicsSettingsEnums.h

Include

#include "PhysicsEngine/PhysicsSettingsEnums.h"

Syntax

namespace EFrictionCombineMode
{
    enum Type
    {
        Average     = 0,
        Min         = 1,
        Multiply    = 2,
        Max         = 3,
    }
}

Values

Name

Description

Average

Uses the average value of the materials touching: (a+b)/2

Min

Uses the minimum value of the materials touching: min(a,b)

Multiply

Uses the product of the values of the materials touching: a*b

Max

Uses the maximum value of materials touching: max(a,b)

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss