IClothingSimulation

Base class for clothing simulators.

Windows
MacOS
Linux

Inheritance Hierarchy

References

Module

ClothingSystemRuntimeInterface

Header

/Engine/Source/Runtime/ClothingSystemRuntimeInterface/Public/ClothingSimulationInterface.h

Include

#include "ClothingSimulationInterface.h"

Syntax

class IClothingSimulation

Remarks

Base class for clothing simulators.

Constructors

Name Description

Public function

IClothingSimulation()

Destructors

Name Description

Public function Virtual

~IClothingSimulation()

Functions

Name Description

Protected function

void

 

AddExternalCollisions

(
    const FClothCollisionData& InData
)

Called by the engine when an external object wants to inject collision data into this simulation above and beyond what is specified in the asset for the internal actors Examples: Scene collision, collision for parents we are attached to

Protected function

void

 

ClearExternalCollisions()

Called by the engine when external collisions are no longer necessary or when they need to be updated with some of the previous collisions removed.

Protected function

void

 

CreateActor

(
    USkeletalMeshComponent* InOwne...,
    UClothingAssetBase* InAsset,
    int32 SimDataIndex
)

Create an actor for this simulation from the data in InAsset Simulation data for this actor should be written back to SimDataIndex in GetSimulationData

Protected function

IClothingSim...

 

CreateContext()

Create a new context, will not be filled, call FillContext before simulating with this context

Protected function

void

 

DestroyActors()

Simulation should remove all of it's actors when next possible and free them

Protected function

void

 

DestroyContext

(
    IClothingSimulationContext* In...
)

Destroy a context object, engine will always pass a context created using CreateContext

Protected function

void

 

FillContext

(
    USkeletalMeshComponent* InComp...,
    float InDeltaTime,
    IClothingSimulationContext* In...
)

Fills an existing context for a single simulation step, called by the engine on the game thread prior to simulation

Public function Virtual Const

void

 

GatherStats()

Called by the engine once per physics tick to gather non-cycle stats (num sim verts etc.) Will not be called if STATS is not defined, not required to be implemented if no need for stats.

Protected function Const

FBoxSphereBo...

 

GetBounds

(
    const USkeletalMeshComponent* ...
)

Get the bounds of the simulation mesh in local simulation space

Protected function Const

void

 

GetCollisions

(
    FClothCollisionData& OutCollisions,
    bool bIncludeExternal
)

Called by the engine to request data on all active collisions in a simulation.

Public function Virtual Const

int32

 

GetNumCloths()

Return the number of simulated cloths. Implementation must be thread safe.

Public function Virtual Const

int32

 

GetNumDynamicParticles()

Return the number of dynamic (simulated) particles. Implementation must be thread safe.

Public function Virtual Const

int32

 

GetNumIterations()

Return the number of iterations used by the solver.

Public function Virtual Const

int32

 

GetNumKinematicParticles()

Return the number of kinematic (fixed) particles. Implementation must be thread safe.

Public function Virtual Const

int32

 

GetNumSubsteps()

Return the number of substeps used by the solver.

Protected function Const

void

 

GetSimulationData

(
    TMap< int32, FClothSimulData >& Ou...,
    USkeletalMeshComponent* InOwne...,
    USkinnedMeshComponent* InOverr...
)

Fill FClothSimulData map for the clothing simulation.

Public function Virtual Const

float

 

GetSimulationTime()

Return the simulation time in ms. Implementation must be thread safe.

Protected function

void

 

Initialize()

Initialize the simulation, will be called before any Simulate calls

Public function Virtual Const

bool

 

IsTeleported()

Return whether the simulation is teleported. Implementation must be thread safe.

Public function Virtual

void

 

SetNumIterations

(
    int32
)

Set the number of iterations used by the solver.

Public function Virtual

void

 

SetNumSubsteps

(
    int32
)

Set the number of substeps used by the solver.

Protected function Const

bool

 

ShouldSimulate()

Called by the engine to detect whether or not the simulation should run, essentially are there any actors that need to simulate in this simulation

Protected function

void

 

Shutdown()

Shutdown the simulation, this should clear ALL resources as we no longer expect to call any other function on this simulation without first calling Initialize again.

Protected function

void

 

Simulate

(
    IClothingSimulationContext* In...
)

Run a single tick of the simulation.

Public function Virtual

void

 

UpdateWorldForces

(
    const USkeletalMeshComponent* ...
)

Update the forces coming from the world.

Deprecated Functions

Name Description

Protected function Virtual

void

 

PostActorCreationInitialize()

No longer required.

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