Files
patrick hardy 68aa34f8d9 nDisplay: Dragging a light card or CCW in the ICVFX window will now trigger sequencer key frames. Changing the time in sequencer will update level and ICVFX proxy positions accordingly.
Light cards work with sequencer by using the orientation properties such as latitude and longitude.
CCWs require the transform tracked instead.

Light card alpha gradient settings are also exposed to sequencer.


#jira UE-182176
#rb trystan.binkley-Jone
#preflight 6430791241783dc3d0e19a9e

[CL 24972106 by patrick hardy in ue5-main branch]
2023-04-07 18:58:04 -04:00

28 lines
524 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class DisplayClusterLightCardExtender : ModuleRules
{
public DisplayClusterLightCardExtender(ReadOnlyTargetRules ROTargetRules) : base(ROTargetRules)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine"
});
if (Target.Type == TargetType.Editor)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Sequencer",
"UnrealEd"
});
}
}
}