Files
UnrealEngineUWP/Engine/Source/Editor/ComponentVisualizers/Public/LocalHeightFogComponentVisualizer.h
sebastien hillaire 256b3e8ba4 First simple LocalHeightFog volume component support.
Lots of missing bits but that is a good first step for iterations.

#rb none
#preflight https://horde.devtools.epicgames.com/job/645e51146b4bdec267ea31cf

[CL 25472344 by sebastien hillaire in ue5-main branch]
2023-05-15 09:23:13 -04:00

19 lines
519 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "ComponentVisualizer.h"
class FPrimitiveDrawInterface;
class FSceneView;
class UActorComponent;
class COMPONENTVISUALIZERS_API FLocalHeightFogComponentVisualizer : public FComponentVisualizer
{
public:
//~ Begin FComponentVisualizer Interface
virtual void DrawVisualization(const UActorComponent* Component, const FSceneView* View, FPrimitiveDrawInterface* PDI) override;
//~ End FComponentVisualizer Interface
};