![]() |
Liberi
An exergame built for kids with CP!
|
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< GameMessage > | AnimationMessages |
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... | |
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.
|
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.
|
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.
|
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.
|
inlinestatic |
Utility method for creating a Janus timeline with preset properties suitable for broadcasting events.
Definition at line 923 of file Sync.Static.cs.
|
inlinestatic |
Despawn the given object.
Despawns for networked objects are propagated.
Definition at line 779 of file Sync.Static.cs.
|
inlinestatic |
Despawn the GameObject of the given component.
Despawns for networked objects are propagated.
Definition at line 824 of file Sync.Static.cs.
|
inlinestatic |
Despawn everything! BAHAHAHAHA!
Definition at line 832 of file Sync.Static.cs.
|
inlinestatic |
Despawn all objects owned by the peer with the given peer index.
Definition at line 854 of file Sync.Static.cs.
|
inlinestatic |
Gets the first object that is owned by the local peer.
Definition at line 419 of file Sync.Static.cs.
|
inlinestatic |
Gets the first component of type T attached to an object that is owned by the local peer.
T | : | Component |
Definition at line 486 of file Sync.Static.cs.
|
inlinestatic |
Gets an array containing all the objects owned by the local peer.
Definition at line 394 of file Sync.Static.cs.
|
inlinestatic |
Gets an array containing all components of type T attached to objects that are owned by the local peer.
T |
T | : | Component |
Definition at line 455 of file Sync.Static.cs.
|
inlinestatic |
Get an object by its object index.
Definition at line 143 of file Sync.Static.cs.
|
inlinestatic |
Gets the object index of a given object.
Definition at line 190 of file Sync.Static.cs.
|
inlinestatic |
Gets the object index of the GameObject of a given component.
Definition at line 206 of file Sync.Static.cs.
|
inlinestatic |
Gets the owner peer index of a given object.
Definition at line 263 of file Sync.Static.cs.
|
inlinestatic |
Gets the owner peer index of the GameObject of a given component.
Definition at line 279 of file Sync.Static.cs.
|
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.
|
inlinestatic |
Gets the first component of type T attached to an object that is owned by the peer with the given peer index.
T | : | Component |
Definition at line 464 of file Sync.Static.cs.
|
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.
|
inlinestatic |
Gets an array containing all components of type T attached to objects that are owned by the peer with the given peer index.
T | : | Component |
Definition at line 428 of file Sync.Static.cs.
|
inlinestatic |
Get a spawnable prefab by ID.
prefabId |
Definition at line 133 of file Sync.Static.cs.
|
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.
|
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.
|
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.
|
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.
|
inlinestatic |
Gets whether or not the given object is owned by a client.
Definition at line 359 of file Sync.Static.cs.
|
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.
|
inlinestatic |
Gets whether or not the given peer index is that of a client.
Definition at line 335 of file Sync.Static.cs.
|
inlinestatic |
Gets whether or not the given object is owned by the local peer.
Definition at line 290 of file Sync.Static.cs.
|
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.
|
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.
|
inlinestatic |
Gets whether or not the given peer index is that of the local peer.
Definition at line 319 of file Sync.Static.cs.
|
inlinestatic |
Gets whether or not the given object is owned by the server.
Definition at line 343 of file Sync.Static.cs.
|
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.
|
inlinestatic |
Gets whether or not the given peer index is that of the server.
Definition at line 327 of file Sync.Static.cs.
|
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.
|
inlinestatic |
Checks whether or not the given object exists on the network.
Definition at line 174 of file Sync.Static.cs.
|
inlinestatic |
Invokes a method on all enabled scripts in the GameObject.
go | The GameObject whose scripts to target. |
message | The name of the method to invoke on enabled scripts. |
args | The arguments to pass to the method on invoke. |
Definition at line 740 of file Sync.Static.cs.
|
inlinestatic |
Invokes a method on all enabled scripts in the GameObject of the given component.
component | The component whose sibling scripts to target. |
message | The name of the method to invoke on enabled scripts. |
args | The arguments to pass to the method on invoke. |
Definition at line 770 of file Sync.Static.cs.
|
inlinestatic |
Automatically set the most efficient encoder and decoder for a timeline with Enum values.
Definition at line 939 of file Sync.Static.cs.
|
inlinestatic |
Spawn an object onto the network.
prefabId | The ID of the spawnable prefab from which to create this object. |
position | The position at which to spawn the object. |
ownerPeerIndex | The peer index of the peer that will own this object. Defaults to the server peer index. |
details | Additional spawn-time details for the object. |
Definition at line 499 of file Sync.Static.cs.
|
inlinestatic |
Spawn an object onto the network.
prefab | The spawnable prefab from which to create this object. |
position | The position at which to spawn the object. |
ownerPeerIndex | The peer index of the peer that will own this object. Defaults to the server peer index. |
details | Additional spawn-time details for the object. |
Definition at line 518 of file Sync.Static.cs.
|
inlinestatic |
Spawn an object onto the network.
prefabId | The ID of the spawnable prefab from which to create this object. |
position | The position at which to spawn the object. |
direction | The direction in which to spawn the object. |
ownerPeerIndex | The peer index of the peer that will own this object. Defaults to the server peer index. |
details | Additional spawn-time details for the object. |
Definition at line 533 of file Sync.Static.cs.
|
inlinestatic |
Spawn an object onto the network.
prefab | The spawnable prefab from which to create this object. |
position | The position at which to spawn the object. |
direction | The direction in which to spawn the object. |
ownerPeerIndex | The peer index of the peer that will own this object. Defaults to the server peer index. |
details | Additional spawn-time details for the object. |
Definition at line 553 of file Sync.Static.cs.
|
inlinestatic |
Spawn an object locally without propagating onto the network.
prefabId | The ID of the spawnable prefab from which to create this object. |
position | The position at which to spawn the object. |
details | Additional spawn-time details for the object. |
Use this to spawn client-side effects.
Definition at line 623 of file Sync.Static.cs.
|
inlinestatic |
Spawn an object locally without propagating onto the network.
prefab | The spawnable prefab from which to create this object. |
position | The position at which to spawn the object. |
details | Additional spawn-time details for the object. |
Use this to spawn client-side effects.
Definition at line 641 of file Sync.Static.cs.
|
inlinestatic |
Spawn an object locally without propagating onto the network.
prefabId | The ID of the spawnable prefab from which to create this object. |
position | The position at which to spawn the object. |
direction | The direction in which to spawn the object. |
details | Additional spawn-time details for the object. |
Use this to spawn client-side effects.
Definition at line 655 of file Sync.Static.cs.
|
inlinestatic |
Spawn an object locally without propagating onto the network.
prefab | The spawnable prefab from which to create this object. |
position | The position at which to spawn the object. |
direction | The direction in which to spawn the object. |
details | Additional spawn-time details for the object. |
Use this to spawn client-side effects.
Definition at line 674 of file Sync.Static.cs.
|
inlinestatic |
Teleport an object to a target position.
go | The object to teleport. |
target | The 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.
|
inlinestatic |
Teleport the GameObject of a given component to a target position.
component | The component whose GameObject to teleport. |
target | The 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.
|
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.
|
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.
|
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.
|
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.
|
staticget |
Gets whether or not this peer is a client.
Definition at line 61 of file Sync.Static.cs.
|
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.
|
staticget |
Gets whether or not this peer is the server.
Definition at line 53 of file Sync.Static.cs.
|
staticget |
Gets the peer index of this peer.
Definition at line 37 of file Sync.Static.cs.
|
staticget |
Gets an array containing the object indices of every synchronized object.
Definition at line 78 of file Sync.Static.cs.
|
staticget |
Gets an array containing all synchronized objects.
Definition at line 86 of file Sync.Static.cs.
|
staticget |
Gets the peer index of the server. This is always 0.
Definition at line 45 of file Sync.Static.cs.
|
staticget |
Gets an array containing the IDs of all available spawnable prefabs.
Definition at line 94 of file Sync.Static.cs.
|
staticget |
Gets an array containing all available spawnable prefabs.
Definition at line 102 of file Sync.Static.cs.
|
staticget |
Gets the Janus timeline manager on this peer.
Definition at line 21 of file Sync.Static.cs.
|
staticget |
Gets the Janus timeline synchronizer if this is the server.
Definition at line 29 of file Sync.Static.cs.