SamsonGame/Assets/Sources/Feel/MMTools/Tools/MMAnimation/MMRagdollerIgnore.cs

16 lines
421 B
C#
Raw Normal View History

2021-12-29 20:50:11 +03:00
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
namespace MoreMountains.Tools
{
/// <summary>
/// Add this class to objects you'd like to be unaffected by the MMRagdoller (like weapons for example)
/// </summary>
[AddComponentMenu("More Mountains/Tools/Animation/MMRagdollerIgnore")]
public class MMRagdollerIgnore : MonoBehaviour
{
}
}