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

18 lines
273 B
Ucode

class AnimNotify_Sound extends AnimNotify
native;
var() sound Sound;
var() float Volume;
var() int Radius;
cpptext
{
// AnimNotify interface.
virtual void Notify( UMeshInstance *Instance, AActor *Owner );
}
defaultproperties
{
Radius=0
Volume=1.0
}