1
0
KF2-Dev-Scripts/Engine/Classes/MaterialExpressionConstantBiasScale.uc
2020-12-13 18:01:13 +03:00

31 lines
787 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class MaterialExpressionConstantBiasScale extends MaterialExpression
native(Material);
var ExpressionInput Input;
var() float Bias;
var() float Scale;
cpptext
{
virtual INT Compile(FMaterialCompiler* Compiler, INT OutputIndex);
virtual FString GetCaption() const;
/**
* Replaces references to the passed in expression with references to a different expression or NULL.
* @param OldExpression Expression to find reference to.
* @param NewExpression Expression to replace reference with.
*/
virtual void SwapReferenceTo(UMaterialExpression* OldExpression,UMaterialExpression* NewExpression = NULL);
}
defaultproperties
{
Bias=1
Scale=.5
MenuCategories(0)="Utility"
}