Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
When adding new functionality to this you will sadly need to touch a number of places: MaterialInstanceTimeVarying.uc for the actual data that will be used in the game MaterialEditorInstanceTimeVarying.uc for the editor property dialog that will be used to edit the data you just added void UMaterialEditorInstanceTimeVarying::CopyToSourceInstance() template< typename MI_TYPE, typename ARRAY_TYPE > (this copies void UpdateParameterValueOverTimeValues( void UMaterialEditorInstanceTimeVarying::RegenerateArrays() the various void UMaterialInstanceTimeVarying::Set (to set the defaul values) static void UpdateMICResources(UMaterialInstanceTimeVarying* Instance) (to send the data over to the rendering thread (if it needs it) Copyright 1998-2008 Epic Games, Inc. All Rights Reserved.
Core.Object | +-- Engine.Surface | +-- Engine.MaterialInterface | +-- Engine.MaterialInstance | +-- Engine.MaterialInstanceTimeVarying
Variables Summary | |
---|---|
MaterialInstanceTimeVarying | |
bool | bAutoActivateAll |
array<FontParameterValueOverTime> | FontParameterValues |
array<ScalarParameterValueOverTime> | ScalarParameterValues |
array<TextureParameterValueOverTime> | TextureParameterValues |
array<VectorParameterValueOverTime> | VectorParameterValues |
Inherited Variables from Engine.MaterialInterface |
---|
PreviewMesh |
Structures Summary | ||
---|---|---|
FontParameterValueOverTime FontValue, FontPage | ||
ParameterValueOverTime ExpressionGUID, StartTime, ParameterName, bLoop, bAutoActivate, CycleTime, bNormalizeTime | ||
ScalarParameterValueOverTime ParameterValue, ParameterValueCurve | ||
TextureParameterValueOverTime ParameterValue | ||
VectorParameterValueOverTime ParameterValue, ParameterValueCurve |
Functions Summary | ||
---|---|---|
![]() | ClearParameterValues () | |
![]() | SetFontParameterValue (name ParameterName, Font FontValue, int FontPage) | |
![]() | SetParent (MaterialInterface NewParent) | |
![]() | SetScalarCurveParameterValue (name ParameterName, InterpCurveFloat Value) | |
![]() | SetScalarParameterValue (name ParameterName, float Value) | |
![]() | SetScalarStartTime (name ParameterName, float Value) | |
![]() | SetTextureParameterValue (name ParameterName, Texture Value) | |
![]() | SetVectorCurveParameterValue (name ParameterName, InterpCurveVector Value) | |
![]() | SetVectorParameterValue (name ParameterName, LinearColor Value) | |
![]() | SetVectorStartTime (name ParameterName, float Value) |
Variables Detail |
---|
causes all parameters to start playing immediately
Structures Detail |
---|
var(MaterialInstanceTimeVarying) int FontPage;};
var(MaterialInstanceTimeVarying) Font FontValue;
var(MaterialInstanceTimeVarying) bool bAutoActivate;};
var(MaterialInstanceTimeVarying) bool bLoop;
var(MaterialInstanceTimeVarying) bool bNormalizeTime;
var(MaterialInstanceTimeVarying) float CycleTime;
var guid ExpressionGUID;
var(MaterialInstanceTimeVarying) name ParameterName;
var float StartTime;
bAutoActivate:This will auto activate this parambLoop:if true, then the CycleTime is the loop time and time loopsbNormalizeTime:if true, then the CycleTime is used to scale time so all keys are between zero and oneCycleTime:this controls time normalization and the loop timeStartTime:when this is parameter is to start "ticking" then this value will be set to the current game time
var(MaterialInstanceTimeVarying) float ParameterValue;};
var(MaterialInstanceTimeVarying) InterpCurveFloat ParameterValueCurve;
ParameterValue:This allows MITVs to have both single scalar and curve valuesParameterValueCurve:This will automatically be used if there are any values in this Curve
var(MaterialInstanceTimeVarying) Texture ParameterValue;};
var(MaterialInstanceTimeVarying) LinearColor ParameterValue;};
var(MaterialInstanceTimeVarying) InterpCurveVector ParameterValueCurve;
ParameterValueCurve:This will automatically be used if there are any values in this Curve
Functions Detail |
---|
Removes all parameter values
Sets the value of the given font parameter.
@param ParameterName The name of the font parameter
@param OutFontValue New font value to set for this MIC
@param OutFontPage New font page value to set for this MIC
For MITVs you can utilize both single Scalar values and InterpCurve values. If there is any data in the InterpCurve, then the MITV will utilize that. Else it will utilize the Scalar value of the same name.
This sets how long after the MITV has been spawned to start "ticking" the named Scalar InterpCurve
This sets how long after the MITV has been spawned to start "ticking" the named Scalar InterpCurve
Defaultproperties |
---|
defaultproperties { Name="Default__MaterialInstanceTimeVarying" ObjectArchetype=MaterialInstance'Engine.Default__MaterialInstance' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |