21 lines
653 B
C++
21 lines
653 B
C++
// © 2024 Long Ly. All rights reserved. Any unauthorized use, reproduction, or distribution of this trademark is strictly prohibited and may result in legal action.
|
|
|
|
|
|
#include "Camera/Interfaces/OLSCameraAssistInterface.h"
|
|
|
|
|
|
// Add default functionality here for any IOLSCameraAssistInterface functions that are not pure virtual.
|
|
void IOLSCameraAssistInterface::GetIgnoredActorsForCameraPenetration(
|
|
TArray<const AActor*>& outActorsAllowPenetration) const
|
|
{
|
|
}
|
|
|
|
TOptional<AActor*> IOLSCameraAssistInterface::GetCameraPreventPenetrationTarget() const
|
|
{
|
|
return TOptional<AActor*>();
|
|
}
|
|
|
|
void IOLSCameraAssistInterface::OnCameraPenetratingTarget()
|
|
{
|
|
}
|