目录结构调整
This commit is contained in:
19
Assets/Scripts/ThirdParty/PhysicsTools/PosOri.cs
vendored
Normal file
19
Assets/Scripts/ThirdParty/PhysicsTools/PosOri.cs
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace PhysicsTools
|
||||
{
|
||||
[Serializable]
|
||||
public class PosOri
|
||||
{
|
||||
public Vector3 pos;
|
||||
|
||||
public Quaternion rot;
|
||||
|
||||
public PosOri(Vector3 p, Quaternion q)
|
||||
{
|
||||
pos = p;
|
||||
rot = q;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user