Liberi
An exergame built for kids with CP!
Sync Class Reference

This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of objects. 2) Its static features are used for scene-level network consistency maintenance and provide other utility methods. More...

Inherits MonoBehaviour, MonoBehaviour, and MonoBehaviour.

Public Member Functions

Vector3 GetDirection ()
 
void SetDirection (Vector3 direction, bool ignoreRigidbody=false)
 

Static Public Member Functions

static GameObject GetSpawnablePrefab (string prefabId)
 Get a spawnable prefab by ID. More...
 
static GameObject GetObject (int objectIndex)
 Get an object by its object index. More...
 
static bool ObjectExists (int objectIndex)
 Checks whether or not the object with the given object index exists on the network. More...
 
static bool ObjectExists (GameObject go)
 Checks whether or not the given object exists on the network. More...
 
static int GetObjectIndex (GameObject go)
 Gets the object index of a given object. More...
 
static int GetObjectIndex (Component component)
 Gets the object index of the GameObject of a given component. More...
 
static SpawnInfo GetSpawnInfo (GameObject go)
 Gets the spawn-time information of a given object. More...
 
static SpawnInfo GetSpawnInfo (Component component)
 Gets the spawn-time information of the GameObject of a given component. More...
 
static UJeli GetSpawnDetails (GameObject go)
 Gets the spawn details of a given object. More...
 
static UJeli GetSpawnDetails (Component component)
 Gets the spawn details of the GameObject of a given component. More...
 
static int GetOwner (GameObject go)
 Gets the owner peer index of a given object. More...
 
static int GetOwner (Component component)
 Gets the owner peer index of the GameObject of a given component. More...
 
static bool IsLocal (GameObject go)
 Gets whether or not the given object is owned by the local peer. More...
 
static bool IsLocal (Component component)
 Gets whether or not the GameObject of the given component is owned by the local peer. More...
 
static bool IsLocal (int objectIndex)
 Gets whether or not the object with the given object index is owned by the local peer. More...
 
static bool IsLocalPeerIndex (int peerIndex)
 Gets whether or not the given peer index is that of the local peer. More...
 
static bool IsServerPeerIndex (int peerIndex)
 Gets whether or not the given peer index is that of the server. More...
 
static bool IsClientPeerIndex (int peerIndex)
 Gets whether or not the given peer index is that of a client. More...
 
static bool IsServerOwned (GameObject go)
 Gets whether or not the given object is owned by the server. More...
 
static bool IsServerOwned (Component component)
 Gets whether or not the GameObject of the given component is owned by the server. More...
 
static bool IsClientOwned (GameObject go)
 Gets whether or not the given object is owned by a client. More...
 
static bool IsClientOwned (Component component)
 Gets whether or not the GameObject of the given component is owned by a client. More...
 
static GameObject[] GetPeerObjects (int peerIndex)
 Gets an array containing all the objects owned by the peer with the given peer index. More...
 
static GameObject[] GetLocalObjects ()
 Gets an array containing all the objects owned by the local peer. More...
 
static GameObject GetPeerObject (int peerIndex)
 Gets the first object that is owned by the peer with the given peer index. More...
 
static GameObject GetLocalObject ()
 Gets the first object that is owned by the local peer. More...
 
static T[] GetPeerObjects< T > (int peerIndex)
 Gets an array containing all components of type T attached to objects that are owned by the peer with the given peer index. More...
 
static T[] GetLocalObjects< T > ()
 Gets an array containing all components of type T attached to objects that are owned by the local peer. More...
 
static T GetPeerObject< T > (int peerIndex)
 Gets the first component of type T attached to an object that is owned by the peer with the given peer index. More...
 
static T GetLocalObject< T > ()
 Gets the first component of type T attached to an object that is owned by the local peer. More...
 
static GameObject Spawn (string prefabId, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
 Spawn an object onto the network. More...
 
static GameObject Spawn (GameObject prefab, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
 Spawn an object onto the network. More...
 
static GameObject Spawn (string prefabId, Vector3 position, Vector3 direction, int ownerPeerIndex=0, UJeli details=null)
 Spawn an object onto the network. More...
 
static GameObject Spawn (GameObject prefab, Vector3 position, Vector3 direction, int ownerPeerIndex=0, UJeli details=null)
 Spawn an object onto the network. More...
 
static GameObject SpawnLocal (string prefabId, Vector3 position, UJeli details=null)
 Spawn an object locally without propagating onto the network. More...
 
static GameObject SpawnLocal (GameObject prefab, Vector3 position, UJeli details=null)
 Spawn an object locally without propagating onto the network. More...
 
static GameObject SpawnLocal (string prefabId, Vector3 position, Vector3 direction, UJeli details=null)
 Spawn an object locally without propagating onto the network. More...
 
static GameObject SpawnLocal (GameObject prefab, Vector3 position, Vector3 direction, UJeli details=null)
 Spawn an object locally without propagating onto the network. More...
 
static void Teleport (GameObject go, Vector3 target)
 Teleport an object to a target position. More...
 
static void Teleport (Component component, Vector3 target)
 Teleport the GameObject of a given component to a target position. More...
 
static void SendEnabledMessage (GameObject go, string message, params object[] args)
 Invokes a method on all enabled scripts in the GameObject. More...
 
static void SendEnabledMessage (Component component, string message, params object[] args)
 Invokes a method on all enabled scripts in the GameObject of the given component. More...
 
static void Despawn (GameObject go)
 Despawn the given object. More...
 
static void Despawn (Component component)
 Despawn the GameObject of the given component. More...
 
static void DespawnAll ()
 Despawn everything! BAHAHAHAHA! More...
 
static void DespawnPeerObjects (int peerIndex)
 Despawn all objects owned by the peer with the given peer index. More...
 
static Timeline< T > CreateDiscreteState< T > ()
 Utility method for creating a Janus timeline with preset properties suitable for synchronizing discrete states. More...
 
static Timeline< T > CreateContinuousState< T > (float sendRate=10f)
 Utility method for creating a Janus timeline with preset properties suitable for synchronizing continuous states. More...
 
static Timeline< T > CreateContinuousState< T > (TimelineSendFilter< T > sendFilter)
 Utility method for creating a Janus timeline with preset properties suitable for synchronizing continuous states. More...
 
static Timeline< T > CreateEvent< T > ()
 Utility method for creating a Janus timeline with preset properties suitable for broadcasting events. More...
 
static void SetEnumTimelineEncoding< T > (Timeline< T > timeline)
 Automatically set the most efficient encoder and decoder for a timeline with Enum values. More...
 

Public Attributes

bool SyncPosition = false
 
bool SyncDirection = false
 
bool SyncColliderState = false
 
bool SyncColliderSize = false
 
bool SyncAnimator = false
 
DirectionMode DirectionMode = DirectionMode.None
 
float PositionCorrectionStrength = 25f
 
float DirectionCorrectionStrength = 25f
 
float SetTime = 0f
 
float GetTime = 0f
 
float SendRate = 10f
 
bool DrawDebugGizmos
 
Timeline< Vector3 > Position
 
Timeline< float > Angle
 
Timeline< bool > Flipped
 
Timeline< GameMessageAnimationMessages
 

Static Public Attributes

static float MaxSmoothDistance = 5f
 This is the distance between the current and correct positions of an object beyond which smooth correction should not be attempted and an immediate snap is used instead. More...
 
static float MinSmoothDistance = .01f
 This is the distance between the current and correct positions of an object below which smooth correction should not be attempted and an immediate snap is used instead. More...
 
static float ErrorDistance = 1f
 This is the distance between the current and correct positions of an object beyond which the position error timer will activate. If the distance drops below this value, the position error timer resets. While the timer is active, the object is considered to be in an "error" state. More...
 
static float MaxErrorTime = 2f
 This is the length of time an object must be in the error state before a positional snap happens. More...
 

Properties

Sync RootSync [get]
 
bool IsRoot [get]
 
int OwnerPeerIndex [get]
 
int ObjectIndex [get]
 
SpawnInfo SpawnInfo [get]
 
TimelineBase[] Timelines [get]
 
TimelineBase[] EssentialTimelines [get]
 
static TimelineManager TimelineManager [get]
 Gets the Janus timeline manager on this peer. More...
 
static TimelineSynchronizer TimelineSynchronizer [get]
 Gets the Janus timeline synchronizer if this is the server. More...
 
static int LocalPeerIndex [get]
 Gets the peer index of this peer. More...
 
static int ServerPeerIndex [get]
 Gets the peer index of the server. This is always 0. More...
 
static bool IsServer [get]
 Gets whether or not this peer is the server. More...
 
static bool IsClient [get]
 Gets whether or not this peer is a client. More...
 
static bool IsMapSynced [get]
 Gets whether or not the map on this peer is synced to the canonical version on the network. More...
 
static int[] ObjectIndices [get]
 Gets an array containing the object indices of every synchronized object. More...
 
static GameObject[] Objects [get]
 Gets an array containing all synchronized objects. More...
 
static string[] SpawnablePrefabIDs [get]
 Gets an array containing the IDs of all available spawnable prefabs. More...
 
static GameObject[] SpawnablePrefabs [get]
 Gets an array containing all available spawnable prefabs. More...
 

Events

ObjectDespawnImminentHandler DespawnImminent
 
ObjectDespawnedHandler Despawned
 
static PropagateSpawnUpHandler PropagateSpawnUp
 
static PropagateSpawnDownHandler PropagateSpawnDown
 
static PropagateDespawnUpHandler PropagateDespawnUp
 
static PropagateDespawnDownHandler PropagateDespawnDown
 

Detailed Description

This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of objects. 2) Its static features are used for scene-level network consistency maintenance and provide other utility methods.

Definition at line 13 of file Sync.cs.

Member Function Documentation

static Timeline<T> Sync.CreateContinuousState< T > ( float  sendRate = 10f)
inlinestatic

Utility method for creating a Janus timeline with preset properties suitable for synchronizing continuous states.

Definition at line 894 of file Sync.Static.cs.

static Timeline<T> Sync.CreateContinuousState< T > ( TimelineSendFilter< T >  sendFilter)
inlinestatic

Utility method for creating a Janus timeline with preset properties suitable for synchronizing continuous states.

Definition at line 902 of file Sync.Static.cs.

static Timeline<T> Sync.CreateDiscreteState< T > ( )
inlinestatic

Utility method for creating a Janus timeline with preset properties suitable for synchronizing discrete states.

Definition at line 878 of file Sync.Static.cs.

static Timeline<T> Sync.CreateEvent< T > ( )
inlinestatic

Utility method for creating a Janus timeline with preset properties suitable for broadcasting events.

Definition at line 923 of file Sync.Static.cs.

static void Sync.Despawn ( GameObject  go)
inlinestatic

Despawn the given object.

Despawns for networked objects are propagated.

Definition at line 779 of file Sync.Static.cs.

static void Sync.Despawn ( Component  component)
inlinestatic

Despawn the GameObject of the given component.

Despawns for networked objects are propagated.

Definition at line 824 of file Sync.Static.cs.

static void Sync.DespawnAll ( )
inlinestatic

Despawn everything! BAHAHAHAHA!

Definition at line 832 of file Sync.Static.cs.

static void Sync.DespawnPeerObjects ( int  peerIndex)
inlinestatic

Despawn all objects owned by the peer with the given peer index.

Definition at line 854 of file Sync.Static.cs.

static GameObject Sync.GetLocalObject ( )
inlinestatic

Gets the first object that is owned by the local peer.

Definition at line 419 of file Sync.Static.cs.

static T Sync.GetLocalObject< T > ( )
inlinestatic

Gets the first component of type T attached to an object that is owned by the local peer.

Type Constraints
T :Component 

Definition at line 486 of file Sync.Static.cs.

static GameObject [] Sync.GetLocalObjects ( )
inlinestatic

Gets an array containing all the objects owned by the local peer.

Definition at line 394 of file Sync.Static.cs.

static T [] Sync.GetLocalObjects< T > ( )
inlinestatic

Gets an array containing all components of type T attached to objects that are owned by the local peer.

Template Parameters
T
Returns
Type Constraints
T :Component 

Definition at line 455 of file Sync.Static.cs.

static GameObject Sync.GetObject ( int  objectIndex)
inlinestatic

Get an object by its object index.

Definition at line 143 of file Sync.Static.cs.

static int Sync.GetObjectIndex ( GameObject  go)
inlinestatic

Gets the object index of a given object.

Definition at line 190 of file Sync.Static.cs.

static int Sync.GetObjectIndex ( Component  component)
inlinestatic

Gets the object index of the GameObject of a given component.

Definition at line 206 of file Sync.Static.cs.

static int Sync.GetOwner ( GameObject  go)
inlinestatic

Gets the owner peer index of a given object.

Definition at line 263 of file Sync.Static.cs.

static int Sync.GetOwner ( Component  component)
inlinestatic

Gets the owner peer index of the GameObject of a given component.

Definition at line 279 of file Sync.Static.cs.

static GameObject Sync.GetPeerObject ( int  peerIndex)
inlinestatic

Gets the first object that is owned by the peer with the given peer index.

Definition at line 402 of file Sync.Static.cs.

static T Sync.GetPeerObject< T > ( int  peerIndex)
inlinestatic

Gets the first component of type T attached to an object that is owned by the peer with the given peer index.

Type Constraints
T :Component 

Definition at line 464 of file Sync.Static.cs.

static GameObject [] Sync.GetPeerObjects ( int  peerIndex)
inlinestatic

Gets an array containing all the objects owned by the peer with the given peer index.

Definition at line 375 of file Sync.Static.cs.

static T [] Sync.GetPeerObjects< T > ( int  peerIndex)
inlinestatic

Gets an array containing all components of type T attached to objects that are owned by the peer with the given peer index.

Type Constraints
T :Component 

Definition at line 428 of file Sync.Static.cs.

static GameObject Sync.GetSpawnablePrefab ( string  prefabId)
inlinestatic

Get a spawnable prefab by ID.

Parameters
prefabId
Returns

Definition at line 133 of file Sync.Static.cs.

static UJeli Sync.GetSpawnDetails ( GameObject  go)
inlinestatic

Gets the spawn details of a given object.

This is null for objects that were not spawned.

Definition at line 241 of file Sync.Static.cs.

static UJeli Sync.GetSpawnDetails ( Component  component)
inlinestatic

Gets the spawn details of the GameObject of a given component.

This is null for objects that were not spawned.

Definition at line 255 of file Sync.Static.cs.

static SpawnInfo Sync.GetSpawnInfo ( GameObject  go)
inlinestatic

Gets the spawn-time information of a given object.

This is null for objects that were not spawned.

Definition at line 215 of file Sync.Static.cs.

static SpawnInfo Sync.GetSpawnInfo ( Component  component)
inlinestatic

Gets the spawn-time information of the GameObject of a given component.

This is null for objects that were not spawned.

Definition at line 232 of file Sync.Static.cs.

static bool Sync.IsClientOwned ( GameObject  go)
inlinestatic

Gets whether or not the given object is owned by a client.

Definition at line 359 of file Sync.Static.cs.

static bool Sync.IsClientOwned ( Component  component)
inlinestatic

Gets whether or not the GameObject of the given component is owned by a client.

Definition at line 367 of file Sync.Static.cs.

static bool Sync.IsClientPeerIndex ( int  peerIndex)
inlinestatic

Gets whether or not the given peer index is that of a client.

Definition at line 335 of file Sync.Static.cs.

static bool Sync.IsLocal ( GameObject  go)
inlinestatic

Gets whether or not the given object is owned by the local peer.

Definition at line 290 of file Sync.Static.cs.

static bool Sync.IsLocal ( Component  component)
inlinestatic

Gets whether or not the GameObject of the given component is owned by the local peer.

Definition at line 298 of file Sync.Static.cs.

static bool Sync.IsLocal ( int  objectIndex)
inlinestatic

Gets whether or not the object with the given object index is owned by the local peer.

Definition at line 306 of file Sync.Static.cs.

static bool Sync.IsLocalPeerIndex ( int  peerIndex)
inlinestatic

Gets whether or not the given peer index is that of the local peer.

Definition at line 319 of file Sync.Static.cs.

static bool Sync.IsServerOwned ( GameObject  go)
inlinestatic

Gets whether or not the given object is owned by the server.

Definition at line 343 of file Sync.Static.cs.

static bool Sync.IsServerOwned ( Component  component)
inlinestatic

Gets whether or not the GameObject of the given component is owned by the server.

Definition at line 351 of file Sync.Static.cs.

static bool Sync.IsServerPeerIndex ( int  peerIndex)
inlinestatic

Gets whether or not the given peer index is that of the server.

Definition at line 327 of file Sync.Static.cs.

static bool Sync.ObjectExists ( int  objectIndex)
inlinestatic

Checks whether or not the object with the given object index exists on the network.

Definition at line 165 of file Sync.Static.cs.

static bool Sync.ObjectExists ( GameObject  go)
inlinestatic

Checks whether or not the given object exists on the network.

Definition at line 174 of file Sync.Static.cs.

static void Sync.SendEnabledMessage ( GameObject  go,
string  message,
params object[]  args 
)
inlinestatic

Invokes a method on all enabled scripts in the GameObject.

Parameters
goThe GameObject whose scripts to target.
messageThe name of the method to invoke on enabled scripts.
argsThe arguments to pass to the method on invoke.

Definition at line 740 of file Sync.Static.cs.

static void Sync.SendEnabledMessage ( Component  component,
string  message,
params object[]  args 
)
inlinestatic

Invokes a method on all enabled scripts in the GameObject of the given component.

Parameters
componentThe component whose sibling scripts to target.
messageThe name of the method to invoke on enabled scripts.
argsThe arguments to pass to the method on invoke.

Definition at line 770 of file Sync.Static.cs.

static void Sync.SetEnumTimelineEncoding< T > ( Timeline< T >  timeline)
inlinestatic

Automatically set the most efficient encoder and decoder for a timeline with Enum values.

Definition at line 939 of file Sync.Static.cs.

static GameObject Sync.Spawn ( string  prefabId,
Vector3  position,
int  ownerPeerIndex = 0,
UJeli  details = null 
)
inlinestatic

Spawn an object onto the network.

Parameters
prefabIdThe ID of the spawnable prefab from which to create this object.
positionThe position at which to spawn the object.
ownerPeerIndexThe peer index of the peer that will own this object. Defaults to the server peer index.
detailsAdditional spawn-time details for the object.
Returns
The spawned object.

Definition at line 499 of file Sync.Static.cs.

static GameObject Sync.Spawn ( GameObject  prefab,
Vector3  position,
int  ownerPeerIndex = 0,
UJeli  details = null 
)
inlinestatic

Spawn an object onto the network.

Parameters
prefabThe spawnable prefab from which to create this object.
positionThe position at which to spawn the object.
ownerPeerIndexThe peer index of the peer that will own this object. Defaults to the server peer index.
detailsAdditional spawn-time details for the object.
Returns
The spawned object.

Definition at line 518 of file Sync.Static.cs.

static GameObject Sync.Spawn ( string  prefabId,
Vector3  position,
Vector3  direction,
int  ownerPeerIndex = 0,
UJeli  details = null 
)
inlinestatic

Spawn an object onto the network.

Parameters
prefabIdThe ID of the spawnable prefab from which to create this object.
positionThe position at which to spawn the object.
directionThe direction in which to spawn the object.
ownerPeerIndexThe peer index of the peer that will own this object. Defaults to the server peer index.
detailsAdditional spawn-time details for the object.
Returns
The spawned object.

Definition at line 533 of file Sync.Static.cs.

static GameObject Sync.Spawn ( GameObject  prefab,
Vector3  position,
Vector3  direction,
int  ownerPeerIndex = 0,
UJeli  details = null 
)
inlinestatic

Spawn an object onto the network.

Parameters
prefabThe spawnable prefab from which to create this object.
positionThe position at which to spawn the object.
directionThe direction in which to spawn the object.
ownerPeerIndexThe peer index of the peer that will own this object. Defaults to the server peer index.
detailsAdditional spawn-time details for the object.
Returns
The spawned object.

Definition at line 553 of file Sync.Static.cs.

static GameObject Sync.SpawnLocal ( string  prefabId,
Vector3  position,
UJeli  details = null 
)
inlinestatic

Spawn an object locally without propagating onto the network.

Parameters
prefabIdThe ID of the spawnable prefab from which to create this object.
positionThe position at which to spawn the object.
detailsAdditional spawn-time details for the object.
Returns
The spawned object.

Use this to spawn client-side effects.

Definition at line 623 of file Sync.Static.cs.

static GameObject Sync.SpawnLocal ( GameObject  prefab,
Vector3  position,
UJeli  details = null 
)
inlinestatic

Spawn an object locally without propagating onto the network.

Parameters
prefabThe spawnable prefab from which to create this object.
positionThe position at which to spawn the object.
detailsAdditional spawn-time details for the object.
Returns
The spawned object.

Use this to spawn client-side effects.

Definition at line 641 of file Sync.Static.cs.

static GameObject Sync.SpawnLocal ( string  prefabId,
Vector3  position,
Vector3  direction,
UJeli  details = null 
)
inlinestatic

Spawn an object locally without propagating onto the network.

Parameters
prefabIdThe ID of the spawnable prefab from which to create this object.
positionThe position at which to spawn the object.
directionThe direction in which to spawn the object.
detailsAdditional spawn-time details for the object.
Returns
The spawned object.

Use this to spawn client-side effects.

Definition at line 655 of file Sync.Static.cs.

static GameObject Sync.SpawnLocal ( GameObject  prefab,
Vector3  position,
Vector3  direction,
UJeli  details = null 
)
inlinestatic

Spawn an object locally without propagating onto the network.

Parameters
prefabThe spawnable prefab from which to create this object.
positionThe position at which to spawn the object.
directionThe direction in which to spawn the object.
detailsAdditional spawn-time details for the object.
Returns
The spawned object.

Use this to spawn client-side effects.

Definition at line 674 of file Sync.Static.cs.

static void Sync.Teleport ( GameObject  go,
Vector3  target 
)
inlinestatic

Teleport an object to a target position.

Parameters
goThe object to teleport.
targetThe target position to which the object is to be teleported.

This operation may only be performed on the owner peer of the object or on the server.

Definition at line 701 of file Sync.Static.cs.

static void Sync.Teleport ( Component  component,
Vector3  target 
)
inlinestatic

Teleport the GameObject of a given component to a target position.

Parameters
componentThe component whose GameObject to teleport.
targetThe target position to which the object is to be teleported.

This operation may only be performed on the owner peer of the object or on the server.

Definition at line 729 of file Sync.Static.cs.

Member Data Documentation

float Sync.ErrorDistance = 1f
static

This is the distance between the current and correct positions of an object beyond which the position error timer will activate. If the distance drops below this value, the position error timer resets. While the timer is active, the object is considered to be in an "error" state.

Definition at line 122 of file Sync.Static.cs.

float Sync.MaxErrorTime = 2f
static

This is the length of time an object must be in the error state before a positional snap happens.

Definition at line 126 of file Sync.Static.cs.

float Sync.MaxSmoothDistance = 5f
static

This is the distance between the current and correct positions of an object beyond which smooth correction should not be attempted and an immediate snap is used instead.

Definition at line 110 of file Sync.Static.cs.

float Sync.MinSmoothDistance = .01f
static

This is the distance between the current and correct positions of an object below which smooth correction should not be attempted and an immediate snap is used instead.

Definition at line 115 of file Sync.Static.cs.

Property Documentation

bool Sync.IsClient
staticget

Gets whether or not this peer is a client.

Definition at line 61 of file Sync.Static.cs.

bool Sync.IsMapSynced
staticget

Gets whether or not the map on this peer is synced to the canonical version on the network.

Note that this will always return true for the server.

Definition at line 70 of file Sync.Static.cs.

bool Sync.IsServer
staticget

Gets whether or not this peer is the server.

Definition at line 53 of file Sync.Static.cs.

int Sync.LocalPeerIndex
staticget

Gets the peer index of this peer.

Definition at line 37 of file Sync.Static.cs.

int [] Sync.ObjectIndices
staticget

Gets an array containing the object indices of every synchronized object.

Definition at line 78 of file Sync.Static.cs.

GameObject [] Sync.Objects
staticget

Gets an array containing all synchronized objects.

Definition at line 86 of file Sync.Static.cs.

int Sync.ServerPeerIndex
staticget

Gets the peer index of the server. This is always 0.

Definition at line 45 of file Sync.Static.cs.

string [] Sync.SpawnablePrefabIDs
staticget

Gets an array containing the IDs of all available spawnable prefabs.

Definition at line 94 of file Sync.Static.cs.

GameObject [] Sync.SpawnablePrefabs
staticget

Gets an array containing all available spawnable prefabs.

Definition at line 102 of file Sync.Static.cs.

TimelineManager Sync.TimelineManager
staticget

Gets the Janus timeline manager on this peer.

Definition at line 21 of file Sync.Static.cs.

TimelineSynchronizer Sync.TimelineSynchronizer
staticget

Gets the Janus timeline synchronizer if this is the server.

Definition at line 29 of file Sync.Static.cs.


The documentation for this class was generated from the following files: