mirror of
https://github.com/hanetzer/sdraw_mods_cvr.git
synced 2025-09-03 10:29:22 +00:00
18 lines
400 B
C#
18 lines
400 B
C#
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;
|
|
}
|
|
}
|
|
}
|