Better tracking for all avatars

This commit is contained in:
SDraw 2022-10-04 19:58:10 +00:00 committed by SDraw
parent 3b998827f5
commit 71c0068652
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5
6 changed files with 36 additions and 33 deletions

12
ml_dht/Utils.cs Normal file
View file

@ -0,0 +1,12 @@
using UnityEngine;
namespace ml_dht
{
static class Utils
{
public static Matrix4x4 GetMatrix(this Transform p_transform, bool p_pos = true, bool p_rot = true, bool p_scl = false)
{
return Matrix4x4.TRS(p_pos ? p_transform.position : Vector3.zero, p_rot ? p_transform.rotation : Quaternion.identity, p_scl ? p_transform.localScale : Vector3.one);
}
}
}