Navigation
API > API/Runtime > API/Runtime/FieldSystemEngine > API/Runtime/FieldSystemEngine/UFieldSystemComponent
Description
FalloffRadialForce This function will dispatch a command to the physics thread to apply a linear force from a position in space. The force vector is weaker as it moves away from the center.
| Name | ApplyRadialVectorFalloffForce |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/FieldSystem/Source/FieldSystemEngine/Public/Field/FieldSystemComponent.h |
| Include Path | #include "Field/FieldSystemComponent.h" |
| Source | /Engine/Source/Runtime/Experimental/FieldSystem/Source/FieldSystemEngine/Private/Field/FieldSystemComponent.cpp |
UFUNCTION (BlueprintCallable, Category="Field", DisplayName="Falloff Radial Force",
Meta=(UnsafeDuringActorConstruction="true"))
void ApplyRadialVectorFalloffForce
(
bool Enabled,
FVector Position,
float Radius,
float Magnitude
)
Parameters
| Name | Remarks |
|---|---|
| Enabled | Is this force enabled for evaluation. |
| Position | The origin point of the force |
| Radius | Radial influence from the position, positions further away are weaker. |
| Magnitude | The size of the linear force. |