PluginsUDCoreFeaturesEditor Actor Subsystem
Bounds Calculation
Calculate and check actor bounds
Functions for checking if actors are within various shape bounds.
IsActorWithinBoxBounds
Checks if an actor is within the bounds of a box.

Parameters
| Name | Type | Description |
|---|---|---|
Actor | AActor* | The actor to check |
BoxComponent | UBoxComponent* | The box component to check against |
Returns
| Name | Type | Description |
|---|---|---|
ReturnValue | bool | True if the actor is within the box bounds |
IsActorWithinSphereBounds
Checks if an actor is within the bounds of a sphere.

Parameters
| Name | Type | Description |
|---|---|---|
Actor | AActor* | The actor to check |
SphereComponent | USphereComponent* | The sphere component to check against |
Returns
| Name | Type | Description |
|---|---|---|
ReturnValue | bool | True if the actor is within the sphere bounds |
IsActorWithinCapsuleBounds
Checks if an actor is within the bounds of a capsule.

Parameters
| Name | Type | Description |
|---|---|---|
Actor | AActor* | The actor to check |
CapsuleComponent | UCapsuleComponent* | The capsule component to check against |
Returns
| Name | Type | Description |
|---|---|---|
ReturnValue | bool | True if the actor is within the capsule bounds |