New mod - PlayerRagdollMod

Update to MelonLoader 0.6.1
This commit is contained in:
SDraw 2023-04-08 02:51:46 +03:00
parent 26fc42c850
commit bc6e289495
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5
18 changed files with 640 additions and 9 deletions

18
ml_prm/Utils.cs Normal file
View file

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace ml_prm
{
static class Utils
{
public static void CopyGlobal(this Transform p_source, Transform p_target)
{
p_target.position = p_source.position;
p_target.rotation = p_source.rotation;
}
}
}