Navigation
API > API/Plugins > API/Plugins/SmartObjectsModule > API/Plugins/SmartObjectsModule/USmartObjectSubsystem
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TOptional< FTransform > GetSlotTransform
(
const FSmartObjectClaimHandle& ClaimHandle |
Returns the transform (in world space) of the slot associated to the given claim handle. | SmartObjectSubsystem.h | |
TOptional< FTransform > GetSlotTransform
(
const FSmartObjectRequestResult& Result |
Returns the transform (in world space) of the slot associated to the given request result. | SmartObjectSubsystem.h | |
TOptional< FTransform > GetSlotTransform
(
const FSmartObjectSlotHandle& SlotHandle |
Returns the transform (in world space) of the slot represented by the provided slot handle. | SmartObjectSubsystem.h | |
bool GetSlotTransform
(
const FSmartObjectClaimHandle& ClaimHandle, |
Returns the transform (in world space) of the slot associated to the given claim handle. | SmartObjectSubsystem.h |
|
GetSlotTransform(const FSmartObjectClaimHandle &)
Description
Returns the transform (in world space) of the slot associated to the given claim handle.
| Name | GetSlotTransform |
| Type | function |
| Header File | /Engine/Plugins/Runtime/SmartObjects/Source/SmartObjectsModule/Public/SmartObjectSubsystem.h |
| Include Path | #include "SmartObjectSubsystem.h" |
TOptional < FTransform > GetSlotTransform
(
const FSmartObjectClaimHandle & ClaimHandle
) const
Transform (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. |
GetSlotTransform(const FSmartObjectRequestResult &)
Description
Returns the transform (in world space) of the slot associated to the given request result.
| Name | GetSlotTransform |
| 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 < FTransform > GetSlotTransform
(
const FSmartObjectRequestResult & Result
) const
Transform (in world space) of the slot associated to Result.
Parameters
| Name | Remarks |
|---|---|
| Result | A request result returned by any of the Find methods. |
GetSlotTransform(const FSmartObjectSlotHandle &)
Description
Returns the transform (in world space) of the slot represented by the provided slot handle.
| Name | GetSlotTransform |
| 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 < FTransform > GetSlotTransform
(
const FSmartObjectSlotHandle & SlotHandle
) const
Transform (in world space) of the slot associated to SlotHandle.
Parameters
| Name | Remarks |
|---|---|
| SlotHandle | Handle to a smart object slot. |
GetSlotTransform(const FSmartObjectClaimHandle &, FTransform &)
Description
Returns the transform (in world space) of the slot associated to the given claim handle.
| Name | GetSlotTransform |
| 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 GetSlotTransform
(
const FSmartObjectClaimHandle & ClaimHandle,
FTransform & OutSlotTransform
) const
Whether the transform was found and assigned to 'OutSlotTransform'
Parameters
| Name | Remarks |
|---|---|
| ClaimHandle | Handle to a claimed slot returned by any of the Claim methods. |
| OutSlotTransform | Transform (in world space) of the slot associated to ClaimHandle. |