Advertisement
KTVX94

Animation IDs

Mar 21st, 2019
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class AnimationIDs
  6. {
  7.     public const int idle = 0;
  8.     public const int walk = 1;
  9.     public const int run = 2;
  10.     public const int squat = 3;
  11.     public const int rise = 4;
  12.     public const int doubleJump = 12;
  13.     public const int fall = 5;
  14.     public const int land = 6;
  15.     public const int block = 7;
  16.     public const int atk1 = 8;
  17.     public const int atk2 = 9;
  18.     public const int atk3 = 10;
  19.     public const int strongAtk = 11;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement