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

18 lines
289 B
Ucode

class ConstantMaterial extends RenderedMaterial
editinlinenew
abstract
native;
cpptext
{
//
// UConstantMaterial interface
//
virtual FColor GetColor(FLOAT TimeSeconds) { return FColor(0,0,0,0); }
}
defaultproperties
{
// MT_ConstantMaterial
MaterialType=1024
}