Ed_
6765478a9d
- Enabled a few more plugins - Added clang formatting straight from the GasaGen cpp. - Setup auto-generation of the DevOptionsCache - Messed around with generating widgettree hiearchy from template widget
15 lines
400 B
C++
15 lines
400 B
C++
#pragma once
|
|
#include "IDetailCustomization.h"
|
|
|
|
|
|
class FGlobeProgressBarDetails : public IDetailCustomization
|
|
{
|
|
public:
|
|
static TSharedRef<IDetailCustomization> MakeInstance() { return MakeShareable(new FGlobeProgressBarDetails); }
|
|
|
|
void CustomizeDetails(IDetailLayoutBuilder& DetailBuilder) override;
|
|
|
|
static bool CheckAsset(FAssetData const& Asset);
|
|
TSharedPtr<FAssetThumbnail> Thumbnail;
|
|
};
|