Jolt Physics
A multi core friendly Game Physics Engine
Loading...
Searching...
No Matches
CharacterBaseSettings Class Reference

Base class for configuration of a character. More...

#include <CharacterBase.h>

Inheritance diagram for CharacterBaseSettings:
RefTarget< CharacterBaseSettings > CharacterSettings CharacterVirtualSettings

Public Member Functions

virtual JPH_OVERRIDE_NEW_DELETE ~CharacterBaseSettings ()=default
 Virtual destructor. More...
 
- Public Member Functions inherited from RefTarget< CharacterBaseSettings >
 RefTarget ()=default
 Constructor. More...
 
 RefTarget (const RefTarget &)
 
 ~RefTarget ()
 assert no one is referencing us More...
 
void SetEmbedded () const
 
RefTargetoperator= (const RefTarget &)
 Assignment operator. More...
 
uint32 GetRefCount () const
 Get current refcount of this object. More...
 
void AddRef () const
 Add or release a reference to this object. More...
 
void Release () const
 

Public Attributes

Vec3 mUp = Vec3::sAxisY()
 Vector indicating the up direction of the character. More...
 
Plane mSupportingVolume { Vec3::sAxisY(), -1.0e10f }
 
float mMaxSlopeAngle = DegreesToRadians(50.0f)
 Maximum angle of slope that character can still walk on (radians). More...
 
RefConst< ShapemShape
 

Additional Inherited Members

- Static Public Member Functions inherited from RefTarget< CharacterBaseSettings >
static int sInternalGetRefCountOffset ()
 INTERNAL HELPER FUNCTION USED BY SERIALIZATION. More...
 
- Protected Attributes inherited from RefTarget< CharacterBaseSettings >
atomic< uint32mRefCount
 Current reference count. More...
 
- Static Protected Attributes inherited from RefTarget< CharacterBaseSettings >
static constexpr uint32 cEmbedded
 A large value that gets added to the refcount to mark the object as embedded. More...
 

Detailed Description

Base class for configuration of a character.

Constructor & Destructor Documentation

◆ ~CharacterBaseSettings()

virtual JPH_OVERRIDE_NEW_DELETE CharacterBaseSettings::~CharacterBaseSettings ( )
virtualdefault

Virtual destructor.

Member Data Documentation

◆ mMaxSlopeAngle

float CharacterBaseSettings::mMaxSlopeAngle = DegreesToRadians(50.0f)

Maximum angle of slope that character can still walk on (radians).

◆ mShape

RefConst<Shape> CharacterBaseSettings::mShape

Initial shape that represents the character's volume. Usually this is a capsule, make sure the shape is made so that the bottom of the shape is at (0, 0, 0).

◆ mSupportingVolume

Plane CharacterBaseSettings::mSupportingVolume { Vec3::sAxisY(), -1.0e10f }

Plane, defined in local space relative to the character. Every contact behind this plane can support the character, every contact in front of this plane is treated as only colliding with the player. Default: Accept any contact.

◆ mUp

Vec3 CharacterBaseSettings::mUp = Vec3::sAxisY()

Vector indicating the up direction of the character.


The documentation for this class was generated from the following file: