Files
UnrealEngineUWP/Engine/Source/Editor/GeometryCacheEd/Classes/GeometryCacheThumbnailScene.h
Jurre deBaare 7155e1aea4 Mac unity build errors
[CL 2683656 by Jurre deBaare in Main branch]
2015-09-08 16:20:15 -04:00

28 lines
784 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "GeometryCacheEdModulePublicPCH.h"
#include "ThumbnailHelpers.h"
class UGeometryCache;
class AGeometryCacheActor;
class FGeometryCacheThumbnailScene : public FThumbnailPreviewScene
{
public:
/** Constructor */
FGeometryCacheThumbnailScene();
/** Sets the static mesh to use in the next GetView() */
void SetGeometryCache(UGeometryCache* GeometryCache);
protected:
// FThumbnailPreviewScene implementation
virtual void GetViewMatrixParameters(const float InFOVDegrees, FVector& OutOrigin, float& OutOrbitPitch, float& OutOrbitYaw, float& OutOrbitZoom) const override;
private:
/** The static mesh actor used to display all static mesh thumbnails */
AGeometryCacheActor* PreviewActor;
};