Navigation
API > API/Plugins > API/Plugins/SmartObjectsModule > API/Plugins/SmartObjectsModule/USmartObjectSubsystem
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TOptional< FVector > GetSlotLocation
(
const FSmartObjectClaimHandle& ClaimHandle |
Returns the position (in world space) of the slot associated to the given claim handle. | SmartObjectSubsystem.h | |
TOptional< FVector > GetSlotLocation
(
const FSmartObjectRequestResult& Result |
Returns the position (in world space) of the slot associated to the given request result. | SmartObjectSubsystem.h | |
TOptional< FVector > GetSlotLocation
(
const FSmartObjectSlotHandle& SlotHandle |
Returns the position (in world space) of the slot represented by the provided slot handle. | SmartObjectSubsystem.h | |
bool GetSlotLocation
(
const FSmartObjectClaimHandle& ClaimHandle, |
Returns the position (in world space) of the slot associated to the given claim handle. | SmartObjectSubsystem.h |
|
GetSlotLocation(const FSmartObjectClaimHandle &)
Description
Returns the position (in world space) of the slot associated to the given claim handle.
| Name | GetSlotLocation |
| Type | function |
| Header File | /Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsModule/Public/SmartObjectSubsystem.h |
| Include Path | #include "SmartObjectSubsystem.h" |
TOptional < FVector > GetSlotLocation
(
const FSmartObjectClaimHandle & ClaimHandle
) const
Position (in world space) of the slot associated to ClaimHandle.
Parameters
| Name | Remarks |
|---|---|
| ClaimHandle | Handle to a claimed slot returned by any of the Claim methods. |
GetSlotLocation(const FSmartObjectRequestResult &)
Description
Returns the position (in world space) of the slot associated to the given request result.
| Name | GetSlotLocation |
| Type | function |
| Header File | /Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsModule/Public/SmartObjectSubsystem.h |
| Include Path | #include "SmartObjectSubsystem.h" |
| Source | /Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsModule/Private/SmartObjectSubsystem.cpp |
TOptional < FVector > GetSlotLocation
(
const FSmartObjectRequestResult & Result
) const
Position (in world space) of the slot associated to Result.
Parameters
| Name | Remarks |
|---|---|
| Result | A request result returned by any of the Find methods. |
GetSlotLocation(const FSmartObjectSlotHandle &)
Description
Returns the position (in world space) of the slot represented by the provided slot handle.
| Name | GetSlotLocation |
| Type | function |
| Header File | /Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsModule/Public/SmartObjectSubsystem.h |
| Include Path | #include "SmartObjectSubsystem.h" |
| Source | /Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsModule/Private/SmartObjectSubsystem.cpp |
TOptional < FVector > GetSlotLocation
(
const FSmartObjectSlotHandle & SlotHandle
) const
Position (in world space) of the slot associated to SlotHandle.
Parameters
| Name | Remarks |
|---|---|
| SlotHandle | Handle to a smart object slot. |
GetSlotLocation(const FSmartObjectClaimHandle &, FVector &)
Description
Returns the position (in world space) of the slot associated to the given claim handle.
| Name | GetSlotLocation |
| Type | function |
| Header File | /Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsModule/Public/SmartObjectSubsystem.h |
| Include Path | #include "SmartObjectSubsystem.h" |
| Source | /Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsModule/Private/SmartObjectSubsystem.cpp |
UFUNCTION (BlueprintCallable, Category="SmartObject")
bool GetSlotLocation
(
const FSmartObjectClaimHandle & ClaimHandle,
FVector & OutSlotLocation
) const
Whether the location was found and assigned to 'OutSlotLocation'
Parameters
| Name | Remarks |
|---|---|
| ClaimHandle | Handle to a claimed slot returned by any of the Claim methods. |
| OutSlotLocation | Position (in world space) of the slot associated to ClaimHandle. |