2023-01-22 16:38:23 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace ABI.CCK.Components
|
|
|
|
|
{
|
2024-08-03 22:24:42 +02:00
|
|
|
|
[AddComponentMenu("ChilloutVR/CVR Object Sync")]
|
|
|
|
|
[HelpURL("https://developers.abinteractive.net/cck/components/object-sync/")]
|
|
|
|
|
public class CVRObjectSync : MonoBehaviour, ICCK_Component
|
2023-01-22 16:38:23 +01:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[HideInInspector]
|
|
|
|
|
public string syncOwner;
|
|
|
|
|
|
|
|
|
|
[HideInInspector]
|
|
|
|
|
public string guid = "";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|