2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-11-19 07:43:07 -05:00
|
|
|
|
|
|
|
|
#pragma once
|
2016-11-23 15:48:37 -05:00
|
|
|
|
2021-10-20 13:20:46 -04:00
|
|
|
#include "Debug/DebugDrawComponent.h"
|
2014-11-19 07:43:07 -05:00
|
|
|
#include "VisualLoggerRenderingComponent.generated.h"
|
|
|
|
|
|
|
|
|
|
/**
|
2021-10-20 13:20:46 -04:00
|
|
|
* Primitive component used to draw visual logger data on level
|
|
|
|
|
*/
|
|
|
|
|
UCLASS(ClassGroup = Debug)
|
|
|
|
|
class UVisualLoggerRenderingComponent : public UDebugDrawComponent
|
2014-11-19 07:43:07 -05:00
|
|
|
{
|
|
|
|
|
public:
|
2015-03-17 05:38:32 -04:00
|
|
|
GENERATED_UCLASS_BODY()
|
2014-11-19 07:43:07 -05:00
|
|
|
|
2021-10-20 13:20:46 -04:00
|
|
|
virtual FDebugRenderSceneProxy* CreateDebugSceneProxy() override;
|
2014-11-19 07:43:07 -05:00
|
|
|
virtual FBoxSphereBounds CalcBounds(const FTransform &LocalToWorld) const override;
|
|
|
|
|
};
|