13 lines
224 B
Ucode
13 lines
224 B
Ucode
class ACTION_Crouch extends ScriptedAction;
|
|
|
|
function bool InitActionFor(ScriptedController C)
|
|
{
|
|
C.Pawn.ShouldCrouch(true);
|
|
return false;
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
ActionString="crouch"
|
|
bValidForTrigger=false
|
|
} |