You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
72 lines
2.5 KiB
C++
72 lines
2.5 KiB
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "DetailCustomizationsPrivatePCH.h"
|
|
#include "SkyLightComponentDetails.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "SkyLightComponentDetails"
|
|
|
|
|
|
|
|
TSharedRef<IDetailCustomization> FSkyLightComponentDetails::MakeInstance()
|
|
{
|
|
return MakeShareable( new FSkyLightComponentDetails );
|
|
}
|
|
|
|
void FSkyLightComponentDetails::CustomizeDetails( IDetailLayoutBuilder& DetailLayout )
|
|
{
|
|
// Mobility property is on the scene component base class not the light component and that is why we have to use USceneComponent::StaticClass
|
|
TSharedRef<IPropertyHandle> MobilityHandle = DetailLayout.GetProperty("Mobility", USceneComponent::StaticClass());
|
|
// Set a mobility tooltip specific to lights
|
|
MobilityHandle->SetToolTipText(LOCTEXT("SkyLightMobilityTooltip", "Mobility for sky light components determines what rendering methods will be used. A Stationary sky light has its shadowing baked into Bent Normal AO by Lightmass, but its lighting can be changed in game.").ToString());
|
|
|
|
TSharedPtr<IPropertyHandle> LightIntensityProperty = DetailLayout.GetProperty("Intensity", ULightComponentBase::StaticClass());
|
|
// Point lights need to override the ui min and max for units of lumens, so we have to undo that
|
|
LightIntensityProperty->GetProperty()->SetMetaData("UIMin",TEXT("0.0f"));
|
|
LightIntensityProperty->GetProperty()->SetMetaData("UIMax",TEXT("20.0f"));
|
|
|
|
const TArray< TWeakObjectPtr<UObject> >& SelectedObjects = DetailLayout.GetDetailsView().GetSelectedObjects();
|
|
|
|
for( int32 ObjectIndex = 0; ObjectIndex < SelectedObjects.Num(); ++ObjectIndex )
|
|
{
|
|
const TWeakObjectPtr<UObject>& CurrentObject = SelectedObjects[ObjectIndex];
|
|
if ( CurrentObject.IsValid() )
|
|
{
|
|
ASkyLight* CurrentCaptureActor = Cast<ASkyLight>(CurrentObject.Get());
|
|
if (CurrentCaptureActor != NULL)
|
|
{
|
|
SkyLight = CurrentCaptureActor;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
DetailLayout.EditCategory( "SkyLight" )
|
|
.AddCustomRow( NSLOCTEXT("SkyLightDetails", "UpdateSkyLight", "Recapture Scene").ToString() )
|
|
[
|
|
SNew(SHorizontalBox)
|
|
+SHorizontalBox::Slot()
|
|
.FillWidth(1.f)
|
|
.Padding(10,5)
|
|
[
|
|
SNew(SButton)
|
|
.ContentPadding(3)
|
|
.VAlign(VAlign_Center)
|
|
.HAlign(HAlign_Center)
|
|
.OnClicked( this, &FSkyLightComponentDetails::OnUpdateSkyCapture )
|
|
.Text( NSLOCTEXT("SkyLightDetails", "UpdateSkyCapture", "Recapture Scene").ToString() )
|
|
]
|
|
];
|
|
}
|
|
|
|
FReply FSkyLightComponentDetails::OnUpdateSkyCapture()
|
|
{
|
|
if( SkyLight.IsValid() )
|
|
{
|
|
GEditor->UpdateSkyCaptures();
|
|
}
|
|
|
|
return FReply::Handled();
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|