You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb bob.tellez #ROBOMERGE-OWNER: jonathan.bard #ROBOMERGE-AUTHOR: jonathan.bard #ROBOMERGE-SOURCE: CL 11159778 via CL 11159790 #ROBOMERGE-BOT: (v640-11091645) [CL 11160913 by jonathan bard in Main branch]
19 lines
611 B
C++
19 lines
611 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "ThumbnailRendering/ThumbnailRenderer.h"
|
|
#include "RuntimeVirtualTextureThumbnailRenderer.generated.h"
|
|
|
|
UCLASS(MinimalAPI)
|
|
class URuntimeVirtualTextureThumbnailRenderer : public UThumbnailRenderer
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
//~ Begin UThumbnailRenderer Interface.
|
|
virtual bool CanVisualizeAsset(UObject* Object);
|
|
virtual void Draw(UObject* Object, int32 X, int32 Y, uint32 Width, uint32 Height, FRenderTarget*, FCanvas* Canvas, bool bAdditionalViewFamily) override;
|
|
//~ EndUThumbnailRenderer Interface.
|
|
};
|