Added all the other GhostSystem Scripts

This commit is contained in:
Thorbjoern
2025-05-26 01:23:52 +02:00
parent e5bca03433
commit 3ec28d4bc5
30 changed files with 1638 additions and 149 deletions
+26
View File
@@ -0,0 +1,26 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace GhostSystem
{
[System.Serializable]
public class GhostFrame
{
public string SceneId;
public string ObjectId;
public System.DateTime Timestamp;
public Vector3 Position;
public Quaternion Rotation;
public GhostFrame(string sceneId, string objectId, Vector3 pos, Quaternion rot)
{
SceneId = sceneId;
ObjectId = objectId;
Position = pos;
Rotation = rot;
Timestamp = System.DateTime.UtcNow;
}
}
}