17 lines
1004 B
Ucode
17 lines
1004 B
Ucode
|
//=============================================================================
|
||
|
// KFSM_PlayerSlasher_Melee
|
||
|
//=============================================================================
|
||
|
// Player controlled stalker attacks
|
||
|
//=============================================================================
|
||
|
// Killing Floor 2
|
||
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
||
|
//=============================================================================
|
||
|
class KFSM_PlayerSlasher_Melee extends KFSM_PlayerMeleeBase;
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
Attacks.Add((Type=PZA_Default, Stance=EAS_UpperBody, Anims=(Player_Light_Atk_V1,Player_Light_Atk_V1, Player_Light_Atk_V2, Player_Light_Atk_V3)))
|
||
|
Attacks.Add((Type=PZA_Sprinting, Stance=EAS_FullBody, Anims=(Player_Lunge_Combo)))
|
||
|
Attacks.Add((Type=PZA_Jumping, Stance=EAS_FullBody, Anims=(Player_Jump_Atk), bForceDisableRootMotion=true))
|
||
|
Attacks.Add((Type=PZA_Headless, Stance=EAS_UpperBody, Anims=(Player_Headless_Atk_V1, Player_Headless_Atk_V2)))
|
||
|
}
|