mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 20:43:04 +00:00
16 lines
403 B
C#
16 lines
403 B
C#
using UnityEngine;
|
|
using SanAndreasUnity.Utilities;
|
|
using SanAndreasUnity.Importing.Animation;
|
|
|
|
namespace SanAndreasUnity.Behaviours.Peds.States
|
|
{
|
|
|
|
public class WalkState : BaseMovementState
|
|
{
|
|
public override AnimId movementAnim { get { return new AnimId (AnimGroup.WalkCycle, AnimIndex.Walk); } }
|
|
public override AnimId movementWeaponAnim { get { return m_ped.CurrentWeapon.WalkAnim; } }
|
|
|
|
|
|
}
|
|
|
|
}
|