summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Utils/TRS.cs
blob: f5d6f559c83410af67599e8747a855b266e3906e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public struct TRS
{
    public Vector3 position;
    public Quaternion rotation;
    public Vector3 scale;
    public TRS(Vector3 pos, Quaternion rot, Vector3 sc)
    {
        position = pos;
        rotation = rot;
        scale = sc;
    }
}