rott/kf_sources/Engine/Classes/TexScaler.uc
2026-07-14 20:27:09 +07:00

22 lines
313 B
Ucode

class TexScaler extends TexModifier
editinlinenew
native;
cpptext
{
// UTexModifier interface
virtual FMatrix* GetMatrix(FLOAT TimeSeconds);
}
var Matrix M;
var() float UScale;
var() float VScale;
var() float UOffset;
var() float VOffset;
defaultproperties
{
UScale=1.0
VScale=1.0
}