mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-27 22:40:17 +00:00
17 lines
400 B
C#
17 lines
400 B
C#
|
using UnityEngine;
|
||
|
using SanAndreasUnity.Utilities;
|
||
|
using SanAndreasUnity.Importing.Animation;
|
||
|
|
||
|
namespace SanAndreasUnity.Behaviours.Peds.States
|
||
|
{
|
||
|
|
||
|
public class RunState : BaseMovementState
|
||
|
{
|
||
|
public override AnimId movementAnim { get { return new AnimId (AnimGroup.WalkCycle, AnimIndex.Run); } }
|
||
|
public override AnimId movementWeaponAnim { get { return m_ped.CurrentWeapon.RunAnim; } }
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|