Unarchived and fixed PlayerRagdollMod

This commit is contained in:
SDraw 2023-11-12 21:30:15 +03:00
parent dacde8975b
commit 7d087bd8fe
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5
16 changed files with 307 additions and 155 deletions

12
ml_prm/RagdollToggle.cs Normal file
View file

@ -0,0 +1,12 @@
using UnityEngine;
namespace ml_prm
{
public class RagdollToggle : MonoBehaviour
{
[Tooltip("Whether or not is should use the isOn property to override the current Ragdoll State of the Avatar.")]
[SerializeField] public bool shouldOverride;
[Tooltip("Whether Ragdoll State is active or not on the Avatar. Requires shouldOverride to be true to work.")]
[SerializeField] public bool isOn;
}
}