Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
Copyright 1998-2008 Epic Games, Inc. All Rights Reserved.
Core.Object | +-- Core.Component | +-- Engine.ActorComponent | +-- Engine.LightComponent
DirectionalLightComponent, PointLightComponent, SkyLightComponent
Inherited Variables from Engine.ActorComponent |
---|
bAttached, bNeedsReattach, bNeedsUpdateTransform, bTickInEditor, Owner, Scene, TickGroup |
Inherited Variables from Core.Component |
---|
TemplateName, TemplateOwnerClass |
Enumerations Summary | ||
---|---|---|
ELightAffectsClassification LAC_USER_SELECTED, LAC_DYNAMIC_AFFECTING, LAC_STATIC_AFFECTING, LAC_DYNAMIC_AND_STATIC_AFFECTING | ||
ELightShadowMode LightShadow_Normal, LightShadow_Modulate | ||
EShadowFilterQuality SFQ_Low, SFQ_Medium, SFQ_High | ||
EShadowProjectionTechnique ShadowProjTech_Default, ShadowProjTech_PCF, ShadowProjTech_VSM, ShadowProjTech_BPCF_Low, ShadowProjTech_BPCF_Medium, ShadowProjTech_BPCF_High |
Structures Summary | ||
---|---|---|
LightingChannelContainer bInitialized, BSP, Static, Dynamic, CompositeDynamic, Skybox, Unnamed_1, Unnamed_2, Unnamed_3, Unnamed_4, Unnamed_5, Unnamed_6, Cinematic_1, Cinematic_2, Cinematic_3, Cinematic_4, Cinematic_5, Cinematic_6, Gameplay_1, Gameplay_2, Gameplay_3, Gameplay_4 |
Functions Summary | ||
---|---|---|
![]() | vector | GetDirection () |
![]() | vector | GetOrigin () |
![]() | OnUpdatePropertyBrightness ())) | |
![]() | OnUpdatePropertyLightColor ())) | |
![]() | SetEnabled (bool bSetEnabled) | |
![]() | SetLightProperties (optional float NewBrightness = Brightness, optional color NewLightColor = LightColor, optional LightFunction NewLightFunction = Function) | |
![]() | UpdateColorAndBrightness () |
Inherited Functions from Engine.ActorComponent |
---|
ForceUpdate, SetComponentRBFixed, SetTickGroup |
Variables Detail |
---|
Whether light has ever been built into a lightmap
Array of convex exclusion volumes, populated from ExclusionVolumes by PostEditChange.
Array of convex inclusion volumes, populated from InclusionVolumes by PostEditChange.
GUID used to associate a light component with precomputed shadowing information across levels. The GUID changes whenever the light position changes.
The munged index of this light in the light list > 0 == static light list 0 == not part of any light list < 0 == dynamic light list
GUID used to associate a light component with precomputed shadowing information across levels. The GUID changes whenever any of the lighting relevant properties changes.
deprecated: This variable has been replaced with bForceDynamicLight.
Whether the light can affect dynamic primitives even though the light is not affecting the dynamic channel.
True if the light should cast shadow from primitives which use a composite light environment.
Is this light enabled?
True if this light should use dynamic shadows for all primitives. forces the use of shadow volumes/ stencil shadows which avoid potential issues with cubemaps and also avoids any memory used for static shadowing
Whether to only affect primitives that are in the same level/ share the same GetOutermost() or are in the set of additionally specified ones.
Whether to use the inclusion/ exclusion volumes.
True if the light can be blocked by dynamic shadow casting primitives. controls whether the light should cast shadows from objects that cannot receive static shadowing
True if the light can be blocked by shadow casting primitives. controls whether the light should cast shadows
True if the light can be blocked by static shadow casting primitives. controls whether the light should cast shadows from objects that can receive static shadowing
Array of volumes used by AffectsBounds if bUseVolumes is set. Light will only affect primitives if they neither touching nor are contained by at least one volume. Exclusion overrides inclusion.
Array of volumes used by AffectsBounds if bUseVolumes is set. Light will only affect primitives if they are touching or are contained by at least one volume. Exclusion overrides inclusion.
This is the classification of this light. This is used for placing a light for an explicit purpose. Basically you can now have "type" information with lights and understand the intent of why a light was placed. This is very useful for content people getting maps from others and understanding why there is a dynamic affect light in the middle of the world with a radius of 32k! And also useful for being able to do searches such as the following: show me all lights which effect dynamic objects. Now show me the set of lights which are not explicitly set as Dynamic Affecting lights.
The light environment which the light affects. NULL represents an implicit default light environment including all primitives and lights with LightEnvironment=NULL.
Lighting channels controlling light/ primitive interaction. Only allows interaction if at least one channel is shared
Type of shadowing to apply for the light
override for max square dimensions (in texels) allowed for rendering shadow subject depths 0 defaults to Engine.MaxShadowResolution
override for min dimensions (in texels) allowed for rendering shadow subject depths. 0 defaults to Engine.MinShadowResolution
Shadow color for modulating entire scene
Exponent that controls mod shadow fadeout curve.
Time since the caster was last visible at which the mod shadow will fade out completely.
Array of other levels to affect if bOnlyAffectSameAndSpecifiedLevels is TRUE, own level always implicitly part of array.
Quality of shadow buffer filtering to use on this light
Type of shadow projection to use for this light
Set to True to store the direct flux of this light in a light-map.
Enumerations Detail |
---|
LAC_USER_SELECTED, LAC_DYNAMIC_AFFECTING, LAC_STATIC_AFFECTING, LAC_DYNAMIC_AND_STATIC_AFFECTING};
ShadowProjTech_Default, ShadowProjTech_PCF, ShadowProjTech_VSM, ShadowProjTech_BPCF_Low, ShadowProjTech_BPCF_Medium, ShadowProjTech_BPCF_High};
Structures Detail |
---|
var bool bInitialized;};
var(LightComponent) bool BSP;
var(LightComponent) bool Cinematic_1;
var(LightComponent) bool Cinematic_2;
var(LightComponent) bool Cinematic_3;
var(LightComponent) bool Cinematic_4;
var(LightComponent) bool Cinematic_5;
var(LightComponent) bool Cinematic_6;
var(LightComponent) bool CompositeDynamic;
var(LightComponent) bool Dynamic;
var(LightComponent) bool Gameplay_1;
var(LightComponent) bool Gameplay_2;
var(LightComponent) bool Gameplay_3;
var(LightComponent) bool Gameplay_4;
var(LightComponent) bool Skybox;
var(LightComponent) bool Static;
var(LightComponent) bool Unnamed_1;
var(LightComponent) bool Unnamed_2;
var(LightComponent) bool Unnamed_3;
var(LightComponent) bool Unnamed_4;
var(LightComponent) bool Unnamed_5;
var(LightComponent) bool Unnamed_6;
bInitialized:Whether the lighting channel has been initialized. Used to determine whether UPrimitveComponent::Attach should set defaults.
Functions Detail |
---|
Script interface to retrieve light direction.
Script interface to retrieve light location.
Called from matinee code when Brightness property changes.
Called from matinee code when LightColor property changes.
Toggles the light on or off
@param bSetEnabled TRUE to enable the light or FALSE to disable it
sets Brightness, LightColor, and/or LightFunction
Script interface to update the color and brightness on the render thread.
Defaultproperties |
---|
defaultproperties { Brightness=1.000000 LightColor=(B=255,G=255,R=255,A=0) bEnabled=True CastShadows=True CastStaticShadows=True CastDynamicShadows=True LightingChannels=(bInitialized=True,BSP=True,Static=True,Dynamic=True,CompositeDynamic=True) ModShadowColor=(R=0.000000,G=0.000000,B=0.000000,A=1.000000) ModShadowFadeoutExponent=3.000000 Name="Default__LightComponent" ObjectArchetype=ActorComponent'Engine.Default__ActorComponent' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |