22 lines
313 B
Ucode
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
|
|
}
|