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

25 lines
359 B
Ucode

// ifdef WITH_LIPSinc
class AnimNotify_LIPSinc extends AnimNotify
native;
var() name LIPSincAnimName;
var() float Volume;
var() int Radius;
var() float Pitch;
cpptext
{
// AnimNotify interface.
virtual void Notify( UMeshInstance *Instance, AActor *Owner );
}
defaultproperties
{
Radius=80
Volume=1.0
Pitch=1.0
}
// endif