15 lines
248 B
C#
15 lines
248 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[Serializable]
|
||
|
public class MonsterAnimation
|
||
|
{
|
||
|
public Animator monsterAnimator;
|
||
|
|
||
|
public Transform monsterAnimatorGrabTarget;
|
||
|
|
||
|
public Transform monsterAnimatorGrabPoint;
|
||
|
|
||
|
public bool animatorCollidedOnClient;
|
||
|
}
|