From 18d965d562022c690620aa2b478a4498c6bbd6f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Wed, 11 Apr 2018 09:43:45 +0100 Subject: [PATCH 01/47] Changed BitWriter class to take a pre allocated buffer --- MLAPI/MLAPI.csproj | 4 +- .../{BinaryDistributor.cs => BitReader.cs} | 11 ++---- .../{BinaryCollector.cs => BitWriter.cs} | 39 ++++++++++++------- 3 files changed, 32 insertions(+), 22 deletions(-) rename MLAPI/NetworkingManagerComponents/Binary/{BinaryDistributor.cs => BitReader.cs} (94%) rename MLAPI/NetworkingManagerComponents/Binary/{BinaryCollector.cs => BitWriter.cs} (94%) diff --git a/MLAPI/MLAPI.csproj b/MLAPI/MLAPI.csproj index 9c7949f..9b8a4bc 100644 --- a/MLAPI/MLAPI.csproj +++ b/MLAPI/MLAPI.csproj @@ -78,8 +78,8 @@ - - + + diff --git a/MLAPI/NetworkingManagerComponents/Binary/BinaryDistributor.cs b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs similarity index 94% rename from MLAPI/NetworkingManagerComponents/Binary/BinaryDistributor.cs rename to MLAPI/NetworkingManagerComponents/Binary/BitReader.cs index fa4857f..2541fc4 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BinaryDistributor.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs @@ -1,13 +1,10 @@ -using MLAPI.NetworkingManagerComponents.Binary; -using System; -using System.Collections.Generic; -using System.Linq; +using System; using System.Runtime.InteropServices; using System.Text; -namespace Tofvesson.Common +namespace MLAPI.NetworkingManagerComponents.Binary { - public class BinaryDistributor + public class BitReader { private delegate T Getter(); private static readonly float[] holder_f = new float[1]; @@ -17,7 +14,7 @@ namespace Tofvesson.Common private readonly byte[] readFrom; private long bitCount = 0; - public BinaryDistributor(byte[] readFrom) => this.readFrom = readFrom; + public BitReader(byte[] readFrom) => this.readFrom = readFrom; public bool ReadBool() { diff --git a/MLAPI/NetworkingManagerComponents/Binary/BinaryCollector.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs similarity index 94% rename from MLAPI/NetworkingManagerComponents/Binary/BinaryCollector.cs rename to MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index ae47506..400de4a 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BinaryCollector.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -1,15 +1,12 @@ -using MLAPI.NetworkingManagerComponents.Binary; -using System; +using System; using System.Collections.Generic; -using System.IO; -using System.Linq; using System.Reflection; -using System.Runtime.InteropServices; using System.Text; +using UnityEngine; -namespace Tofvesson.Common +namespace MLAPI.NetworkingManagerComponents.Binary { - public sealed class BinaryCollector : IDisposable + public sealed class BitWiter : IDisposable { // Collects reusable private static readonly List expired = new List(); @@ -41,7 +38,7 @@ namespace Tofvesson.Common dec_hi, dec_flags; - static BinaryCollector() + static BitWiter() { dec_lo = typeof(decimal).GetField("lo", BindingFlags.NonPublic); dec_mid = typeof(decimal).GetField("mid", BindingFlags.NonPublic); @@ -56,7 +53,7 @@ namespace Tofvesson.Common /// /// Allocates a new binary collector. /// - public BinaryCollector(int bufferSize) + public BitWiter(int bufferSize) { this.bufferSize = bufferSize; for (int i = expired.Count - 1; i >= 0; --i) @@ -106,17 +103,33 @@ namespace Tofvesson.Common public void WriteLongArray(long[] l) => Push(l); public void WriteString(string s) => Push(s); - public byte[] ToArray() + public long Finalize(ref byte[] buffer) { + if(buffer == null) + { + Debug.LogWarning("MLAPI: no buffer provided"); + return 0; + } long bitCount = 0; for (int i = 0; i < collectCount; ++i) bitCount += GetBitCount(collect[i]); - byte[] alloc = new byte[(bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1)]; + if(buffer.Length < ((bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1))) + { + Debug.LogWarning("MLAPI: The buffer size is not large enough"); + return 0; + } long bitOffset = 0; foreach (var item in collect) - Serialize(item, alloc, ref bitOffset); + Serialize(item, buffer, ref bitOffset); - return alloc; + return (bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1)); + } + + public long GetFinalizeSize() + { + long bitCount = 0; + for (int i = 0; i < collectCount; ++i) bitCount += GetBitCount(collect[i]); + return ((bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1)); } private static void Serialize(T t, byte[] writeTo, ref long bitOffset) From 45f82180d2c9aa6f69d4b473109f0da289b8057c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Wed, 11 Apr 2018 19:03:14 +0100 Subject: [PATCH 02/47] Removed collect list from GC --- .../Binary/BitWriter.cs | 53 ++++++++++--------- 1 file changed, 29 insertions(+), 24 deletions(-) diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index 400de4a..6f70667 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -6,10 +6,9 @@ using UnityEngine; namespace MLAPI.NetworkingManagerComponents.Binary { - public sealed class BitWiter : IDisposable + public sealed class BitWriter : IDisposable { - // Collects reusable - private static readonly List expired = new List(); + private static readonly Queue> listPool = new Queue>(); private static readonly float[] holder_f = new float[1]; private static readonly double[] holder_d = new double[1]; @@ -38,43 +37,45 @@ namespace MLAPI.NetworkingManagerComponents.Binary dec_hi, dec_flags; - static BitWiter() + static BitWriter() { dec_lo = typeof(decimal).GetField("lo", BindingFlags.NonPublic); dec_mid = typeof(decimal).GetField("mid", BindingFlags.NonPublic); dec_hi = typeof(decimal).GetField("hi", BindingFlags.NonPublic); dec_flags = typeof(decimal).GetField("flags", BindingFlags.NonPublic); + + for (int i = 0; i < 10; i++) + { + listPool.Enqueue(new List()); + } } - private object[] collect; + private List collect = null; + private bool tempAlloc = false; private readonly int bufferSize; private int collectCount = 0; /// /// Allocates a new binary collector. /// - public BitWiter(int bufferSize) + public BitWriter() { - this.bufferSize = bufferSize; - for (int i = expired.Count - 1; i >= 0; --i) - if (expired[i].IsAlive) - { - collect = (object[])expired[i].Target; - if (collect.Length >= bufferSize) - { - expired.RemoveAt(i); // This entry he been un-expired for now - break; - } - } - else expired.RemoveAt(i); // Entry has been collected by GC - if (collect == null || collect.Length < bufferSize) - collect = new object[bufferSize]; + if (listPool.Count == 0) + { + Debug.LogWarning("MLAPI: There can be no more than 10 BitWriters. Have you forgotten do dispose? (It will still work with worse performance)"); + collect = new List(); + tempAlloc = true; + } + else + { + collect = listPool.Dequeue(); + } } private void Push(T b) { if (b is string || b.GetType().IsArray || IsSupportedType(b.GetType())) - collect[collectCount++] = b is string ? Encoding.UTF8.GetBytes(b as string) : b as object; + collect.Add(b is string ? Encoding.UTF8.GetBytes(b as string) : b as object); //else // Debug.LogWarning("MLAPI: The type \"" + b.GetType() + "\" is not supported by the Binary Serializer. It will be ignored"); } @@ -122,7 +123,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary foreach (var item in collect) Serialize(item, buffer, ref bitOffset); - return (bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1)); + return (bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1); } public long GetFinalizeSize() @@ -367,8 +368,12 @@ namespace MLAPI.NetworkingManagerComponents.Binary // Creates a weak reference to the allocated collector so that reuse may be possible public void Dispose() { - expired.Add(new WeakReference(collect)); - collect = null; + if (!tempAlloc) + { + collect.Clear(); + listPool.Enqueue(collect); + } + collect = null; //GC picks this } } } From b124f5ed3ee5a4d11c50c6db94d8861cdbe89608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Wed, 11 Apr 2018 19:03:50 +0100 Subject: [PATCH 03/47] Removed unused bufferSize --- MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index 6f70667..68118ff 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -52,7 +52,6 @@ namespace MLAPI.NetworkingManagerComponents.Binary private List collect = null; private bool tempAlloc = false; - private readonly int bufferSize; private int collectCount = 0; /// From 902fb77ed4ba38306fb82f67ccde8b35cb0659b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Thu, 12 Apr 2018 16:12:57 +0100 Subject: [PATCH 04/47] Added support for fixed size arrays --- .../Binary/BitReader.cs | 24 ++++++++-------- .../Binary/BitWriter.cs | 28 +++++++++++-------- 2 files changed, 29 insertions(+), 23 deletions(-) diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs index 2541fc4..af448d5 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs @@ -41,16 +41,16 @@ namespace MLAPI.NetworkingManagerComponents.Binary public short ReadShort() => (short)ZigZagDecode(ReadUShort(), 2); public int ReadInt() => (int)ZigZagDecode(ReadUInt(), 4); public long ReadLong() => ZigZagDecode(ReadULong(), 8); - public float[] ReadFloatArray() => ReadArray(ReadFloat); - public double[] ReadDoubleArray() => ReadArray(ReadDouble); - public byte[] ReadByteArray() => ReadArray(ReadByte); - public ushort[] ReadUShortArray() => ReadArray(ReadUShort); - public uint[] ReadUIntArray() => ReadArray(ReadUInt); - public ulong[] ReadULongArray() => ReadArray(ReadULong); - public sbyte[] ReadSByteArray() => ReadArray(ReadSByte); - public short[] ReadShortArray() => ReadArray(ReadShort); - public int[] ReadIntArray() => ReadArray(ReadInt); - public long[] ReadLongArray() => ReadArray(ReadLong); + public float[] ReadFloatArray(int known = -1) => ReadArray(ReadFloat, known); + public double[] ReadDoubleArray(int known = -1) => ReadArray(ReadDouble, known); + public byte[] ReadByteArray(int known = -1) => ReadArray(ReadByte, known); + public ushort[] ReadUShortArray(int known = -1) => ReadArray(ReadUShort, known); + public uint[] ReadUIntArray(int known = -1) => ReadArray(ReadUInt, known); + public ulong[] ReadULongArray(int known = -1) => ReadArray(ReadULong, known); + public sbyte[] ReadSByteArray(int known = -1) => ReadArray(ReadSByte, known); + public short[] ReadShortArray(int known = -1) => ReadArray(ReadShort, known); + public int[] ReadIntArray(int known = -1) => ReadArray(ReadInt, known); + public long[] ReadLongArray(int known = -1) => ReadArray(ReadLong, known); public string ReadString() => Encoding.UTF8.GetString(ReadByteArray()); private ulong ReadULong() @@ -79,9 +79,9 @@ namespace MLAPI.NetworkingManagerComponents.Binary } return res; } - private T[] ReadArray(Getter g) + private T[] ReadArray(Getter g, int knownSize = -1) { - T[] result = new T[ReadUShort()]; + T[] result = new T[knownSize > 0 ? (uint)knownSize : ReadUInt()]; for (ushort s = 0; s < result.Length; ++s) result[s] = g(); return result; diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index 68118ff..114add6 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -91,17 +91,23 @@ namespace MLAPI.NetworkingManagerComponents.Binary public void WriteShort(short s) => Push(s); public void WriteInt(int i) => Push(i); public void WriteLong(long l) => Push(l); - public void WriteFloatArray(float[] f) => Push(f); - public void WriteDoubleArray(double[] d) => Push(d); - public void WriteByteArray(byte[] b) => Push(b); - public void WriteUShortArray(ushort[] s) => Push(s); - public void WriteUIntArray(uint[] i) => Push(i); - public void WriteULongArray(ulong[] l) => Push(l); - public void WriteSByteArray(sbyte[] b) => Push(b); - public void WriteShortArray(short[] s) => Push(s); - public void WriteIntArray(int[] i) => Push(i); - public void WriteLongArray(long[] l) => Push(l); public void WriteString(string s) => Push(s); + public void WriteFloatArray(float[] f, bool known = false) => PushArray(f, known); + public void WriteDoubleArray(double[] d, bool known = false) => PushArray(d, known); + public void WriteByteArray(byte[] b, bool known = false) => PushArray(b, known); + public void WriteUShortArray(ushort[] s, bool known = false) => PushArray(s, known); + public void WriteUIntArray(uint[] i, bool known = false) => PushArray(i, known); + public void WriteULongArray(ulong[] l, bool known = false) => PushArray(l, known); + public void WriteSByteArray(sbyte[] b, bool known = false) => PushArray(b, known); + public void WriteShortArray(short[] s, bool known = false) => PushArray(s, known); + public void WriteIntArray(int[] i, bool known = false) => PushArray(i, known); + public void WriteLongArray(long[] l, bool known = false) => PushArray(l, known); + + private void PushArray(T[] t, bool knownSize = false) + { + if (!knownSize) Push(t); + else foreach (T t1 in t) Push(t1); + } public long Finalize(ref byte[] buffer) { @@ -139,7 +145,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary if (type.IsArray) { var array = t as Array; - Serialize((ushort)array.Length, writeTo, ref bitOffset); + Serialize((uint)array.Length, writeTo, ref bitOffset); foreach (var element in array) Serialize(element, writeTo, ref bitOffset); } From 435db1f14bfe8902c853dfbfb8d656218a332414 Mon Sep 17 00:00:00 2001 From: GabrielTofvesson Date: Fri, 13 Apr 2018 16:28:30 +0200 Subject: [PATCH 05/47] Optimized byte serialization Fixed various bugs Added option to pad misalignments for improved performance (at the possible cost of compression size if called in more than one non-consecutive instance) --- .../Binary/BitReader.cs | 1 + .../Binary/BitWriter.cs | 179 +++++++++--------- 2 files changed, 91 insertions(+), 89 deletions(-) diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs index af448d5..a853b85 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs @@ -35,6 +35,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary bitCount += 8; return result; } + public void SkipPadded() => bitCount += (8 - (bitCount % 8)) % 8; public ushort ReadUShort() => (ushort)ReadULong(); public uint ReadUInt() => (uint)ReadULong(); public sbyte ReadSByte() => (sbyte)ZigZagDecode(ReadByte(), 1); diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index 114add6..c5c41f2 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -1,6 +1,8 @@ using System; using System.Collections.Generic; +using System.Diagnostics; using System.Reflection; +using System.Runtime.InteropServices; using System.Text; using UnityEngine; @@ -52,7 +54,6 @@ namespace MLAPI.NetworkingManagerComponents.Binary private List collect = null; private bool tempAlloc = false; - private int collectCount = 0; /// /// Allocates a new binary collector. @@ -73,10 +74,11 @@ namespace MLAPI.NetworkingManagerComponents.Binary private void Push(T b) { - if (b is string || b.GetType().IsArray || IsSupportedType(b.GetType())) + if (b == null) collect.Add(b); + else if (b is string || b.GetType().IsArray || IsSupportedType(b.GetType())) collect.Add(b is string ? Encoding.UTF8.GetBytes(b as string) : b as object); - //else - // Debug.LogWarning("MLAPI: The type \"" + b.GetType() + "\" is not supported by the Binary Serializer. It will be ignored"); + else + Debug.LogWarning("MLAPI: The type \"" + b.GetType() + "\" is not supported by the Binary Serializer. It will be ignored"); } @@ -87,11 +89,12 @@ namespace MLAPI.NetworkingManagerComponents.Binary public void WriteUShort(ushort s) => Push(s); public void WriteUInt(uint i) => Push(i); public void WriteULong(ulong l) => Push(l); - public void WriteSByte(sbyte b) => Push(b); - public void WriteShort(short s) => Push(s); - public void WriteInt(int i) => Push(i); - public void WriteLong(long l) => Push(l); + public void WriteSByte(sbyte b) => Push(ZigZagEncode(b, 8)); + public void WriteShort(short s) => Push(ZigZagEncode(s, 8)); + public void WriteInt(int i) => Push(ZigZagEncode(i, 8)); + public void WriteLong(long l) => Push(ZigZagEncode(l, 8)); public void WriteString(string s) => Push(s); + public void WriteAlignBits() => Push(null); public void WriteFloatArray(float[] f, bool known = false) => PushArray(f, known); public void WriteDoubleArray(double[] d, bool known = false) => PushArray(d, known); public void WriteByteArray(byte[] b, bool known = false) => PushArray(b, known); @@ -103,10 +106,12 @@ namespace MLAPI.NetworkingManagerComponents.Binary public void WriteIntArray(int[] i, bool known = false) => PushArray(i, known); public void WriteLongArray(long[] l, bool known = false) => PushArray(l, known); - private void PushArray(T[] t, bool knownSize = false) + public void PushArray(T[] t, bool knownSize = false) { - if (!knownSize) Push(t); - else foreach (T t1 in t) Push(t1); + if (!knownSize) Push((uint)t.Length); + bool signed = IsSigned(t.GetType().GetElementType()); + int size = Marshal.SizeOf(t.GetType().GetElementType()); + foreach (T t1 in t) Push(signed ? (object)ZigZagEncode(t1 as long? ?? t1 as int? ?? t1 as short? ?? t1 as sbyte? ?? 0, size) : (object)t1); } public long Finalize(ref byte[] buffer) @@ -117,16 +122,22 @@ namespace MLAPI.NetworkingManagerComponents.Binary return 0; } long bitCount = 0; - for (int i = 0; i < collectCount; ++i) bitCount += GetBitCount(collect[i]); + for (int i = 0; i < collect.Count; ++i) bitCount += collect[i] == null ? (8 - (bitCount % 8)) % 8 : GetBitCount(collect[i]); - if(buffer.Length < ((bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1))) + if (buffer.Length < ((bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1))) { Debug.LogWarning("MLAPI: The buffer size is not large enough"); return 0; } long bitOffset = 0; + bool isAligned = true; foreach (var item in collect) - Serialize(item, buffer, ref bitOffset); + if (item == null) + { + bitOffset += (8 - (bitOffset % 8)) % 8; + isAligned = true; + } + else Serialize(item, buffer, ref bitOffset, ref isAligned); return (bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1); } @@ -134,35 +145,36 @@ namespace MLAPI.NetworkingManagerComponents.Binary public long GetFinalizeSize() { long bitCount = 0; - for (int i = 0; i < collectCount; ++i) bitCount += GetBitCount(collect[i]); + for (int i = 0; i < collect.Count; ++i) bitCount += collect[i]==null ? (8 - (bitCount % 8)) % 8 : GetBitCount(collect[i]); return ((bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1)); } - private static void Serialize(T t, byte[] writeTo, ref long bitOffset) + private static void Serialize(T t, byte[] writeTo, ref long bitOffset, ref bool isAligned) { Type type = t.GetType(); bool size = false; if (type.IsArray) { var array = t as Array; - Serialize((uint)array.Length, writeTo, ref bitOffset); + Serialize((uint)array.Length, writeTo, ref bitOffset, ref isAligned); foreach (var element in array) - Serialize(element, writeTo, ref bitOffset); + Serialize(element, writeTo, ref bitOffset, ref isAligned); } else if (IsSupportedType(type)) { - long offset = GetBitAllocation(type); + long offset = t is bool ? 1 : BytesToRead(t) * 8; if (type == typeof(bool)) { WriteBit(writeTo, t as bool? ?? false, bitOffset); bitOffset += offset; + isAligned = bitOffset % 8 == 0; } else if (type == typeof(decimal)) { - WriteDynamic(writeTo, (int)dec_lo.GetValue(t), 4, bitOffset); - WriteDynamic(writeTo, (int)dec_mid.GetValue(t), 4, bitOffset + 32); - WriteDynamic(writeTo, (int)dec_hi.GetValue(t), 4, bitOffset + 64); - WriteDynamic(writeTo, (int)dec_flags.GetValue(t), 4, bitOffset + 96); + WriteDynamic(writeTo, (int)dec_lo.GetValue(t), 4, bitOffset, isAligned); + WriteDynamic(writeTo, (int)dec_mid.GetValue(t), 4, bitOffset + 32, isAligned); + WriteDynamic(writeTo, (int)dec_hi.GetValue(t), 4, bitOffset + 64, isAligned); + WriteDynamic(writeTo, (int)dec_flags.GetValue(t), 4, bitOffset + 96, isAligned); bitOffset += offset; } else if ((size = type == typeof(float)) || type == typeof(double)) @@ -181,71 +193,75 @@ namespace MLAPI.NetworkingManagerComponents.Binary // Since floating point flag bits are seemingly the highest bytes of the floating point values // and even very small values have them, we swap the endianness in the hopes of reducing the size - if(size) Serialize(BinaryHelpers.SwapEndian((uint)result_holder.GetValue(0)), writeTo, ref bitOffset); - else Serialize(BinaryHelpers.SwapEndian((ulong)result_holder.GetValue(0)), writeTo, ref bitOffset); + if(size) Serialize(BinaryHelpers.SwapEndian((uint)result_holder.GetValue(0)), writeTo, ref bitOffset, ref isAligned); + else Serialize(BinaryHelpers.SwapEndian((ulong)result_holder.GetValue(0)), writeTo, ref bitOffset, ref isAligned); } - //bitOffset += offset; } else { - bool signed = IsSigned(t.GetType()); + //bool signed = IsSigned(t.GetType()); ulong value; - if (signed) + /*if (signed) { Type t1 = t.GetType(); if (t1 == typeof(sbyte)) value = (byte)ZigZagEncode(t as sbyte? ?? 0, 1); else if (t1 == typeof(short)) value = (ushort)ZigZagEncode(t as short? ?? 0, 2); else if (t1 == typeof(int)) value = (uint)ZigZagEncode(t as int? ?? 0, 4); - else /*if (t1 == typeof(long))*/ value = (ulong)ZigZagEncode(t as long? ?? 0, 8); + else /*if (t1 == typeof(long)) value = (ulong)ZigZagEncode(t as long? ?? 0, 8); + } + else*/ + if (t is byte) + { + WriteByte(writeTo, t as byte? ?? 0, bitOffset, isAligned); + return; } - else if (t is byte) value = t as byte? ?? 0; else if (t is ushort) value = t as ushort? ?? 0; else if (t is uint) value = t as uint? ?? 0; else /*if (t is ulong)*/ value = t as ulong? ?? 0; - if (value <= 240) WriteByte(writeTo, (byte)value, bitOffset); + if (value <= 240) WriteByte(writeTo, (byte)value, bitOffset, isAligned); else if (value <= 2287) { - WriteByte(writeTo, (value - 240) / 256 + 241, bitOffset); - WriteByte(writeTo, (value - 240) % 256, bitOffset + 8); + WriteByte(writeTo, (value - 240) / 256 + 241, bitOffset, isAligned); + WriteByte(writeTo, (value - 240) % 256, bitOffset + 8, isAligned); } else if (value <= 67823) { - WriteByte(writeTo, 249, bitOffset); - WriteByte(writeTo, (value - 2288) / 256, bitOffset + 8); - WriteByte(writeTo, (value - 2288) % 256, bitOffset + 16); + WriteByte(writeTo, 249, bitOffset, isAligned); + WriteByte(writeTo, (value - 2288) / 256, bitOffset + 8, isAligned); + WriteByte(writeTo, (value - 2288) % 256, bitOffset + 16, isAligned); } else { - WriteByte(writeTo, value & 255, bitOffset + 8); - WriteByte(writeTo, (value >> 8) & 255, bitOffset + 16); - WriteByte(writeTo, (value >> 16) & 255, bitOffset + 24); + WriteByte(writeTo, value & 255, bitOffset + 8, isAligned); + WriteByte(writeTo, (value >> 8) & 255, bitOffset + 16, isAligned); + WriteByte(writeTo, (value >> 16) & 255, bitOffset + 24, isAligned); if (value > 16777215) { - WriteByte(writeTo, (value >> 24) & 255, bitOffset + 32); + WriteByte(writeTo, (value >> 24) & 255, bitOffset + 32, isAligned); if (value > 4294967295) { - WriteByte(writeTo, (value >> 32) & 255, bitOffset + 40); + WriteByte(writeTo, (value >> 32) & 255, bitOffset + 40, isAligned); if (value > 1099511627775) { - WriteByte(writeTo, (value >> 40) & 55, bitOffset + 48); + WriteByte(writeTo, (value >> 40) & 55, bitOffset + 48, isAligned); if (value > 281474976710655) { - WriteByte(writeTo, (value >> 48) & 255, bitOffset + 56); + WriteByte(writeTo, (value >> 48) & 255, bitOffset + 56, isAligned); if (value > 72057594037927935) { - WriteByte(writeTo, 255, bitOffset); - WriteByte(writeTo, (value >> 56) & 255, bitOffset + 64); + WriteByte(writeTo, 255, bitOffset, isAligned); + WriteByte(writeTo, (value >> 56) & 255, bitOffset + 64, isAligned); } - else WriteByte(writeTo, 254, bitOffset); + else WriteByte(writeTo, 254, bitOffset, isAligned); } - else WriteByte(writeTo, 253, bitOffset); + else WriteByte(writeTo, 253, bitOffset, isAligned); } - else WriteByte(writeTo, 252, bitOffset); + else WriteByte(writeTo, 252, bitOffset, isAligned); } - else WriteByte(writeTo, 251, bitOffset); + else WriteByte(writeTo, 251, bitOffset, isAligned); } - else WriteByte(writeTo, 250, bitOffset); + else WriteByte(writeTo, 250, bitOffset, isAligned); } bitOffset += BytesToRead(value) * 8; } @@ -255,7 +271,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary private static byte Read7BitRange(byte higher, byte lower, int bottomBits) => (byte)((higher << bottomBits) & (lower & (0xFF << (8-bottomBits)))); private static byte ReadNBits(byte from, int offset, int count) => (byte)(from & ((0xFF >> (8-count)) << offset)); - private static bool IsSigned(Type t) => Convert.ToBoolean(t.GetField("MinValue").GetValue(null)); + private static bool IsSigned(Type t) => t == typeof(sbyte) || t == typeof(short) || t == typeof(int) || t == typeof(long); private static Type GetUnsignedType(Type t) => t == typeof(sbyte) ? typeof(byte) : @@ -274,13 +290,16 @@ namespace MLAPI.NetworkingManagerComponents.Binary { Type elementType = type.GetElementType(); - count += 16; // Int16 array size. Arrays shouldn't be syncing more than 65k elements - foreach (var element in t as Array) - count += GetBitCount(element); + count += BytesToRead((t as Array).Length) * 8; // Int16 array size. Arrays shouldn't be syncing more than 65k elements + + if (elementType == typeof(bool)) count += (t as Array).Length; + else + foreach (var element in t as Array) + count += GetBitCount(element); } else if (IsSupportedType(type)) { - long ba = GetBitAllocation(type); + long ba = t is bool ? 1 : BytesToRead(t)*8; if (ba == 0) count += Encoding.UTF8.GetByteCount(t as string); else if (t is bool || t is decimal) count += ba; else count += BytesToRead(t) * 8; @@ -292,33 +311,32 @@ namespace MLAPI.NetworkingManagerComponents.Binary private static void WriteBit(byte[] b, bool bit, long index) => b[index / 8] = (byte)((b[index / 8] & ~(1 << (int)(index % 8))) | (bit ? 1 << (int)(index % 8) : 0)); - private static void WriteByte(byte[] b, ulong value, long index) => WriteByte(b, (byte)value, index); - private static void WriteByte(byte[] b, byte value, long index) + private static void WriteByte(byte[] b, ulong value, long index, bool isAligned) => WriteByte(b, (byte)value, index, isAligned); + private static void WriteByte(byte[] b, byte value, long index, bool isAligned) { - int byteIndex = (int)(index / 8); - int shift = (int)(index % 8); - byte upper_mask = (byte)(0xFF << shift); - byte lower_mask = (byte)~upper_mask; + if (isAligned) b[index / 8] = value; + else + { + int byteIndex = (int)(index / 8); + int shift = (int)(index % 8); + byte upper_mask = (byte)(0xFF << shift); - b[byteIndex] = (byte)((b[byteIndex] & lower_mask) | (value << shift)); - if(shift != 0 && byteIndex + 1 < b.Length) + b[byteIndex] = (byte)((b[byteIndex] & (byte)~upper_mask) | (value << shift)); b[byteIndex + 1] = (byte)((b[byteIndex + 1] & upper_mask) | (value >> (8 - shift))); + } } - private static void WriteBits(byte[] b, byte value, int bits, int offset, long index) - { - for (int i = 0; i < bits; ++i) - WriteBit(b, (value & (1 << (i + offset))) != 0, index + i); - } - private static void WriteDynamic(byte[] b, int value, int byteCount, long index) + private static void WriteDynamic(byte[] b, int value, int byteCount, long index, bool isAligned) { for (int i = 0; i < byteCount; ++i) - WriteByte(b, (byte)((value >> (8 * i)) & 0xFF), index + (8 * i)); + WriteByte(b, (byte)((value >> (8 * i)) & 0xFF), index + (8 * i), isAligned); } private static int BytesToRead(object i) { + if (i is byte) return 1; bool size; ulong integer; + if (i is decimal) return BytesToRead((int)dec_flags.GetValue(i)) + BytesToRead((int)dec_lo.GetValue(i)) + BytesToRead((int)dec_mid.GetValue(i)) + BytesToRead((int)dec_hi.GetValue(i)); if ((size = i is float) || i is double) { int bytes = size ? 4 : 8; @@ -337,7 +355,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary else integer = BinaryHelpers.SwapEndian((ulong)result_holder.GetValue(0)); } } - else integer = i as ulong? ?? 0; + else integer = i as ulong? ?? i as uint? ?? i as ushort? ?? i as byte? ?? 0; return integer <= 240 ? 1 : integer <= 2287 ? 2 : @@ -352,24 +370,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary // Supported datatypes for serialization private static bool IsSupportedType(Type t) => supportedTypes.Contains(t); - - // Specifies how many bits will be written - private static long GetBitAllocation(Type t) => - t == typeof(bool) ? 1 : - t == typeof(byte) ? 8 : - t == typeof(sbyte) ? 8 : - t == typeof(short) ? 16 : - t == typeof(char) ? 16 : - t == typeof(ushort) ? 16 : - t == typeof(int) ? 32 : - t == typeof(uint) ? 32 : - t == typeof(long) ? 64 : - t == typeof(ulong) ? 64 : - t == typeof(float) ? 32 : - t == typeof(double) ? 64 : - t == typeof(decimal) ? 128 : - 0; // Unknown type - + // Creates a weak reference to the allocated collector so that reuse may be possible public void Dispose() { From 21b5942106a585270841f7e6ff10f0042e455876 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Fri, 13 Apr 2018 17:08:04 +0100 Subject: [PATCH 06/47] Added spawn position and rotation to ConnectionApproval --- .../MonoBehaviours/Core/NetworkingManager.cs | 21 ++++++++++--------- .../Core/SpawnManager.cs | 4 ++-- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index 16a1753..bcdf548 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -136,7 +136,7 @@ namespace MLAPI.MonoBehaviours.Core /// /// The callback to invoke during connection approval /// - public Action> ConnectionApprovalCallback = null; + public Action> ConnectionApprovalCallback = null; /// /// The current NetworkingConfiguration /// @@ -586,13 +586,14 @@ namespace MLAPI.MonoBehaviours.Core /// /// Starts a Host /// - public void StartHost() + public void StartHost(Vector3? pos = null, Quaternion? rot = null) { if (isServer || isClient) { Debug.LogWarning("MLAPI: Cannot start host while an instance is already running"); return; } + ConnectionConfig cConfig = Init(true); if (NetworkConfig.ConnectionApproval) { @@ -622,7 +623,7 @@ namespace MLAPI.MonoBehaviours.Core if(NetworkConfig.HandleObjectSpawning) { - SpawnManager.SpawnPlayerObject(netId.GetClientId(), 0); + SpawnManager.SpawnPlayerObject(netId.GetClientId(), 0, pos.GetValueOrDefault(), rot.GetValueOrDefault()); } if (OnServerStarted != null) @@ -952,7 +953,7 @@ namespace MLAPI.MonoBehaviours.Core } else { - HandleApproval(clientId, true); + HandleApproval(clientId, true, Vector3.zero, Quaternion.identity); } } } @@ -1035,7 +1036,7 @@ namespace MLAPI.MonoBehaviours.Core if (isPlayerObject) { - SpawnManager.SpawnPlayerObject(ownerId, networkId); + SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); } else { @@ -1086,7 +1087,7 @@ namespace MLAPI.MonoBehaviours.Core if (isPlayerObject) { connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); - SpawnManager.SpawnPlayerObject(ownerId, networkId); + SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); } else { @@ -1161,7 +1162,7 @@ namespace MLAPI.MonoBehaviours.Core float yRot = messageReader.ReadSingle(); float zRot = messageReader.ReadSingle(); SpawnManager.spawnedObjects[netId].transform.position = new Vector3(xPos, yPos, zPos); - SpawnManager.spawnedObjects[netId].transform.rotation = Quaternion.Euler(new Vector3(xRot, yRot, zRot)); + SpawnManager.spawnedObjects[netId].transform.rotation = Quaternion.Euler(xRot, yRot, zRot); SpawnManager.spawnedObjects[netId].gameObject.SetActive(true); } } @@ -1336,7 +1337,7 @@ namespace MLAPI.MonoBehaviours.Core if (isPlayerObject) { connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); - SpawnManager.SpawnPlayerObject(ownerId, networkId); + SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); } else { @@ -1778,7 +1779,7 @@ namespace MLAPI.MonoBehaviours.Core } } - private void HandleApproval(uint clientId, bool approved) + private void HandleApproval(uint clientId, bool approved, Vector3 position, Quaternion rotation) { if(approved) { @@ -1819,7 +1820,7 @@ namespace MLAPI.MonoBehaviours.Core if(NetworkConfig.HandleObjectSpawning) { uint networkId = SpawnManager.GetNetworkObjectId(); - GameObject go = SpawnManager.SpawnPlayerObject(clientId, networkId); + GameObject go = SpawnManager.SpawnPlayerObject(clientId, networkId, position, rotation); connectedClients[clientId].PlayerObject = go; } int sizeOfStream = 17 + ((connectedClients.Count - 1) * 4); diff --git a/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs b/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs index 81ac495..7b9e06b 100644 --- a/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs @@ -217,14 +217,14 @@ namespace MLAPI.NetworkingManagerComponents.Core } } - internal static GameObject SpawnPlayerObject(uint clientId, uint networkId) + internal static GameObject SpawnPlayerObject(uint clientId, uint networkId, Vector3 position, Quaternion rotation) { if (string.IsNullOrEmpty(netManager.NetworkConfig.PlayerPrefabName) || !netManager.NetworkConfig.NetworkPrefabIds.ContainsKey(netManager.NetworkConfig.PlayerPrefabName)) { Debug.LogWarning("MLAPI: There is no player prefab in the NetworkConfig, or it's not registered at as a spawnable prefab"); return null; } - GameObject go = MonoBehaviour.Instantiate(netManager.NetworkConfig.NetworkedPrefabs[netManager.NetworkConfig.NetworkPrefabIds[netManager.NetworkConfig.PlayerPrefabName]].prefab); + GameObject go = MonoBehaviour.Instantiate(netManager.NetworkConfig.NetworkedPrefabs[netManager.NetworkConfig.NetworkPrefabIds[netManager.NetworkConfig.PlayerPrefabName]].prefab, position, rotation); NetworkedObject netObject = go.GetComponent(); if (netObject == null) { From a588584673031483dbc979419125c49b5fadcf9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Sat, 14 Apr 2018 09:08:18 +0100 Subject: [PATCH 07/47] Added allocating Finalize overload to BitWriter --- .../Binary/BitWriter.cs | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index c5c41f2..5a6c46b 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Diagnostics; using System.Reflection; using System.Runtime.InteropServices; using System.Text; @@ -114,6 +113,26 @@ namespace MLAPI.NetworkingManagerComponents.Binary foreach (T t1 in t) Push(signed ? (object)ZigZagEncode(t1 as long? ?? t1 as int? ?? t1 as short? ?? t1 as sbyte? ?? 0, size) : (object)t1); } + public byte[] Finalize() + { + long bitCount = 0; + for (int i = 0; i < collect.Count; ++i) bitCount += collect[i] == null ? (8 - (bitCount % 8)) % 8 : GetBitCount(collect[i]); + byte[] buffer = new byte[((bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1))]; + + long bitOffset = 0; + bool isAligned = true; + foreach (var item in collect) + if (item == null) + { + bitOffset += (8 - (bitOffset % 8)) % 8; + isAligned = true; + } + else Serialize(item, buffer, ref bitOffset, ref isAligned); + + return buffer; + } + + //The ref is not needed. It's purley there to indicate that it's treated as a reference inside the method. public long Finalize(ref byte[] buffer) { if(buffer == null) @@ -145,7 +164,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary public long GetFinalizeSize() { long bitCount = 0; - for (int i = 0; i < collect.Count; ++i) bitCount += collect[i]==null ? (8 - (bitCount % 8)) % 8 : GetBitCount(collect[i]); + for (int i = 0; i < collect.Count; ++i) bitCount += collect[i] == null ? (8 - (bitCount % 8)) % 8 : GetBitCount(collect[i]); return ((bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1)); } From f8057144dca4b619937234066e4b134f7afce7e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= Date: Tue, 17 Apr 2018 10:18:30 +0200 Subject: [PATCH 08/47] Added further duplication checks to netconfig --- .../MonoBehaviours/Core/NetworkingManager.cs | 25 ++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index bcdf548..f8e8cdb 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -155,7 +155,7 @@ namespace MLAPI.MonoBehaviours.Core { if (NetworkConfig == null) return; //May occur when the component is added - + if(NetworkConfig.EnableSceneSwitching && !NetworkConfig.RegisteredScenes.Contains(SceneManager.GetActiveScene().name)) { Debug.LogWarning("MLAPI: The active scene is not registered as a networked scene. The MLAPI has added it"); @@ -252,10 +252,17 @@ namespace MLAPI.MonoBehaviours.Core NetworkConfig.NetworkPrefabIds = new Dictionary(); NetworkConfig.NetworkPrefabNames = new Dictionary(); NetworkConfig.NetworkedPrefabs.OrderBy(x => x.name); + HashSet networkedPrefabName = new HashSet(); for (int i = 0; i < NetworkConfig.NetworkedPrefabs.Count; i++) { + if (networkedPrefabName.Contains(NetworkConfig.NetworkedPrefabs[i].name)) + { + Debug.LogWarning("MLAPI: Duplicate NetworkedPrefabName " + NetworkConfig.NetworkedPrefabs[i].name); + continue; + } NetworkConfig.NetworkPrefabIds.Add(NetworkConfig.NetworkedPrefabs[i].name, i); NetworkConfig.NetworkPrefabNames.Add(i, NetworkConfig.NetworkedPrefabs[i].name); + networkedPrefabName.Add(NetworkConfig.NetworkedPrefabs[i].name); } if (NetworkConfig.EnableSceneSwitching) { @@ -321,22 +328,38 @@ namespace MLAPI.MonoBehaviours.Core if (NetworkConfig.EnableEncryption) { + HashSet addedEncryptedChannels = new HashSet(); for (int i = 0; i < NetworkConfig.Channels.Count; i++) { + if (addedEncryptedChannels.Contains(NetworkConfig.Channels[i].Name)) + { + Debug.LogWarning("MLAPI: Duplicate encrypted channel name " + NetworkConfig.Channels[i].Name); + continue; + } if (NetworkConfig.Channels[i].Encrypted) { NetworkConfig.EncryptedChannels.Add(NetworkConfig.Channels[i].Name); NetworkConfig.EncryptedChannelsHashSet.Add(NetworkConfig.Channels[i].Name); } + addedEncryptedChannels.Add(NetworkConfig.Channels[i].Name); } } if (NetworkConfig.AllowPassthroughMessages) { + HashSet addedPassthroughMessages = new HashSet(); for (int i = 0; i < NetworkConfig.MessageTypes.Count; i++) { + if (addedPassthroughMessages.Contains(NetworkConfig.MessageTypes[i].Name)) + { + Debug.LogWarning("MLAPI: Duplicate passthrough message type " + NetworkConfig.MessageTypes[i].Name); + continue; + } if (NetworkConfig.MessageTypes[i].Passthrough) + { NetworkConfig.PassthroughMessageHashSet.Add(MessageManager.messageTypes[NetworkConfig.MessageTypes[i].Name]); + addedPassthroughMessages.Add(NetworkConfig.MessageTypes[i].Name); + } } } From 89e666d09ae5a1b8cd0b22e9c131ef06297196ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= Date: Tue, 17 Apr 2018 14:47:08 +0200 Subject: [PATCH 09/47] Moved send and message handle methods to own class --- MLAPI/MLAPI.csproj | 3 + .../MonoBehaviours/Core/NetworkedBehaviour.cs | 32 +- .../MonoBehaviours/Core/NetworkingManager.cs | 747 +----------------- .../Core/InternalMessageHandler.Receive.cs | 445 +++++++++++ .../Core/InternalMessageHandler.Send.cs | 339 ++++++++ .../Core/InternalMessageHandler.cs | 16 + .../Core/NetworkPoolManager.cs | 4 +- .../Core/NetworkSceneManager.cs | 2 +- .../Core/SpawnManager.cs | 10 +- 9 files changed, 851 insertions(+), 747 deletions(-) create mode 100644 MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs create mode 100644 MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs create mode 100644 MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs diff --git a/MLAPI/MLAPI.csproj b/MLAPI/MLAPI.csproj index f0b660f..8507873 100644 --- a/MLAPI/MLAPI.csproj +++ b/MLAPI/MLAPI.csproj @@ -97,6 +97,9 @@ + + + diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index 4d97a46..e8840ff 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -450,7 +450,7 @@ namespace MLAPI.MonoBehaviours.Core } } } - NetworkingManager.singleton.Send(clientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); + InternalMessageHandler.Send(clientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); } } @@ -555,7 +555,7 @@ namespace MLAPI.MonoBehaviours.Core } } } - NetworkingManager.singleton.Send("MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); + InternalMessageHandler.Send("MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); } lastSyncTime = NetworkingManager.singleton.NetworkTime; } @@ -695,7 +695,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Server can not send messages to server."); return; } - NetworkingManager.singleton.Send(NetId.ServerNetId.GetClientId(), messageType, channelName, data); + InternalMessageHandler.Send(NetId.ServerNetId.GetClientId(), messageType, channelName, data); } /// @@ -728,7 +728,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Server can not send messages to server."); return; } - NetworkingManager.singleton.Send(NetId.ServerNetId.GetClientId(), messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); + InternalMessageHandler.Send(NetId.ServerNetId.GetClientId(), messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); } /// @@ -761,7 +761,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Invalid Passthrough send. Ensure AllowPassthroughMessages are turned on and that the MessageType " + messageType + " is registered as a passthroughMessageType"); return; } - NetworkingManager.singleton.Send(ownerClientId, messageType, channelName, data); + InternalMessageHandler.Send(ownerClientId, messageType, channelName, data); } /// @@ -794,7 +794,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Invalid Passthrough send. Ensure AllowPassthroughMessages are turned on and that the MessageType " + messageType + " is registered as a passthroughMessageType"); return; } - NetworkingManager.singleton.Send(ownerClientId, messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); + InternalMessageHandler.Send(ownerClientId, messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); } /// @@ -827,7 +827,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Sending messages from client to other clients is not yet supported"); return; } - NetworkingManager.singleton.Send(messageType, channelName, data, ownerClientId); + InternalMessageHandler.Send(messageType, channelName, data, ownerClientId); } /// @@ -860,7 +860,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Sending messages from client to other clients is not yet supported"); return; } - NetworkingManager.singleton.Send(messageType, channelName, data, ownerClientId, networkId, networkedObject.GetOrderIndex(this)); + InternalMessageHandler.Send(messageType, channelName, data, ownerClientId, networkId, networkedObject.GetOrderIndex(this)); } /// @@ -894,7 +894,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Invalid Passthrough send. Ensure AllowPassthroughMessages are turned on and that the MessageType " + messageType + " is registered as a passthroughMessageType"); return; } - NetworkingManager.singleton.Send(clientId, messageType, channelName, data); + InternalMessageHandler.Send(clientId, messageType, channelName, data); } /// @@ -929,7 +929,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Invalid Passthrough send. Ensure AllowPassthroughMessages are turned on and that the MessageType " + messageType + " is registered as a passthroughMessageType"); return; } - NetworkingManager.singleton.Send(clientId, messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); + InternalMessageHandler.Send(clientId, messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); } /// @@ -964,7 +964,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Sending messages from client to other clients is not yet supported"); return; } - NetworkingManager.singleton.Send(clientIds, messageType, channelName, data); + InternalMessageHandler.Send(clientIds, messageType, channelName, data); } /// @@ -999,7 +999,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Sending messages from client to other clients is not yet supported"); return; } - NetworkingManager.singleton.Send(clientIds, messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); + InternalMessageHandler.Send(clientIds, messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); } /// @@ -1034,7 +1034,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Sending messages from client to other clients is not yet supported"); return; } - NetworkingManager.singleton.Send(clientIds, messageType, channelName, data); + InternalMessageHandler.Send(clientIds, messageType, channelName, data); } /// @@ -1069,7 +1069,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Sending messages from client to other clients is not yet supported"); return; } - NetworkingManager.singleton.Send(clientIds, messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); + InternalMessageHandler.Send(clientIds, messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); } /// @@ -1103,7 +1103,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Sending messages from client to other clients is not yet supported"); return; } - NetworkingManager.singleton.Send(messageType, channelName, data); + InternalMessageHandler.Send(messageType, channelName, data); } /// @@ -1136,7 +1136,7 @@ namespace MLAPI.MonoBehaviours.Core Debug.LogWarning("MLAPI: Sending messages from client to other clients is not yet supported"); return; } - NetworkingManager.singleton.Send(messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); + InternalMessageHandler.Send(messageType, channelName, data, networkId, networkedObject.GetOrderIndex(this)); } /// diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index f8e8cdb..20df98f 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -142,9 +142,9 @@ namespace MLAPI.MonoBehaviours.Core /// public NetworkConfig NetworkConfig; - private EllipticDiffieHellman clientDiffieHellman; - private Dictionary diffieHellmanPublicKeys; - private byte[] clientAesKey; + internal EllipticDiffieHellman clientDiffieHellman; + internal Dictionary diffieHellmanPublicKeys; + internal byte[] clientAesKey; /// /// An inspector bool that acts as a Trigger for regenerating RSA keys. Should not be used outside Unity editor. @@ -778,7 +778,7 @@ namespace MLAPI.MonoBehaviours.Core writer.Write(NetworkConfig.ConnectionData); } } - Send(netId.GetClientId(), "MLAPI_CONNECTION_REQUEST", "MLAPI_INTERNAL", writeStream.GetBuffer(), null, null, true); + InternalMessageHandler.Send(netId.GetClientId(), "MLAPI_CONNECTION_REQUEST", "MLAPI_INTERNAL", writeStream.GetBuffer(), null, null, true); } } break; @@ -901,7 +901,7 @@ namespace MLAPI.MonoBehaviours.Core netIdTarget = targetNetworkId; netOrderId = networkOrderId; } - PassthroughSend(passthroughTarget, clientId, messageType, channelId, incommingData, netIdTarget, netOrderId); + InternalMessageHandler.PassthroughSend(passthroughTarget, clientId, messageType, channelId, incommingData, netIdTarget, netOrderId); return; } @@ -949,137 +949,13 @@ namespace MLAPI.MonoBehaviours.Core case 0: //Client to server > sends connection buffer if (isServer) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - byte[] configHash = messageReader.ReadBytes(32); - if (!NetworkConfig.CompareConfig(configHash)) - { - Debug.LogWarning("MLAPI: NetworkConfiguration missmatch. The configuration between the server and client does not match."); - DisconnectClient(clientId); - return; - } - byte[] aesKey = new byte[0]; - if (NetworkConfig.EnableEncryption) - { - ushort diffiePublicSize = messageReader.ReadUInt16(); - byte[] diffiePublic = messageReader.ReadBytes(diffiePublicSize); - diffieHellmanPublicKeys.Add(clientId, diffiePublic); - - } - if (NetworkConfig.ConnectionApproval) - { - ushort bufferSize = messageReader.ReadUInt16(); - byte[] connectionBuffer = messageReader.ReadBytes(bufferSize); - ConnectionApprovalCallback(connectionBuffer, clientId, HandleApproval); - } - else - { - HandleApproval(clientId, true, Vector3.zero, Quaternion.identity); - } - } - } + InternalMessageHandler.HandleConnectionRequest(clientId, incommingData, channelId); } break; case 1: //Server informs client it has been approved: if (isClient) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - myClientId = messageReader.ReadUInt32(); - uint sceneIndex = 0; - if (NetworkConfig.EnableSceneSwitching) - { - sceneIndex = messageReader.ReadUInt32(); - } - - if (NetworkConfig.EnableEncryption) - { - ushort keyLength = messageReader.ReadUInt16(); - byte[] serverPublicKey = messageReader.ReadBytes(keyLength); - clientAesKey = clientDiffieHellman.GetSharedSecret(serverPublicKey); - if (NetworkConfig.SignKeyExchange) - { - ushort signatureLength = messageReader.ReadUInt16(); - byte[] publicKeySignature = messageReader.ReadBytes(signatureLength); - using (RSACryptoServiceProvider rsa = new RSACryptoServiceProvider()) - { - rsa.PersistKeyInCsp = false; - rsa.FromXmlString(NetworkConfig.RSAPublicKey); - if (!rsa.VerifyData(serverPublicKey, new SHA512CryptoServiceProvider(), publicKeySignature)) - { - //Man in the middle. - Debug.LogWarning("MLAPI: Signature doesnt match for the key exchange public part. Disconnecting"); - StopClient(); - return; - } - } - } - } - - float netTime = messageReader.ReadSingle(); - int remoteStamp = messageReader.ReadInt32(); - byte error; - NetId netId = new NetId(clientId); - int msDelay = NetworkTransport.GetRemoteDelayTimeMS(netId.HostId, netId.ConnectionId, remoteStamp, out error); - if ((NetworkError)error != NetworkError.Ok) - msDelay = 0; - networkTime = netTime + (msDelay / 1000f); - - connectedClients.Add(clientId, new NetworkedClient() { ClientId = clientId }); - int clientCount = messageReader.ReadInt32(); - for (int i = 0; i < clientCount; i++) - { - uint _clientId = messageReader.ReadUInt32(); - connectedClients.Add(_clientId, new NetworkedClient() { ClientId = _clientId }); - } - if (NetworkConfig.HandleObjectSpawning) - { - SpawnManager.DestroySceneObjects(); - int objectCount = messageReader.ReadInt32(); - for (int i = 0; i < objectCount; i++) - { - bool isPlayerObject = messageReader.ReadBoolean(); - uint networkId = messageReader.ReadUInt32(); - uint ownerId = messageReader.ReadUInt32(); - int prefabId = messageReader.ReadInt32(); - bool isActive = messageReader.ReadBoolean(); - bool sceneObject = messageReader.ReadBoolean(); - - float xPos = messageReader.ReadSingle(); - float yPos = messageReader.ReadSingle(); - float zPos = messageReader.ReadSingle(); - - float xRot = messageReader.ReadSingle(); - float yRot = messageReader.ReadSingle(); - float zRot = messageReader.ReadSingle(); - - if (isPlayerObject) - { - SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - } - else - { - GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, - new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - - go.GetComponent().sceneObject = sceneObject; - go.SetActive(isActive); - } - } - } - if (NetworkConfig.EnableSceneSwitching) - { - NetworkSceneManager.OnSceneSwitch(sceneIndex); - } - } - } - _isClientConnected = true; - if (OnClientConnectedCallback != null) - OnClientConnectedCallback.Invoke(clientId); + InternalMessageHandler.HandleConnectionApproved(clientId, incommingData, channelId); } break; case 2: @@ -1087,45 +963,7 @@ namespace MLAPI.MonoBehaviours.Core //MLAPI_ADD_OBJECT if (isClient) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - if (NetworkConfig.HandleObjectSpawning) - { - bool isPlayerObject = messageReader.ReadBoolean(); - uint networkId = messageReader.ReadUInt32(); - uint ownerId = messageReader.ReadUInt32(); - int prefabId = messageReader.ReadInt32(); - bool sceneObject = messageReader.ReadBoolean(); - - float xPos = messageReader.ReadSingle(); - float yPos = messageReader.ReadSingle(); - float zPos = messageReader.ReadSingle(); - - float xRot = messageReader.ReadSingle(); - float yRot = messageReader.ReadSingle(); - float zRot = messageReader.ReadSingle(); - - if (isPlayerObject) - { - connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); - SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - } - else - { - GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, - new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - go.GetComponent().sceneObject = sceneObject; - } - } - else - { - uint ownerId = messageReader.ReadUInt32(); - connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); - } - } - } + InternalMessageHandler.HandleAddObject(clientId, incommingData, channelId); } break; case 3: @@ -1133,266 +971,57 @@ namespace MLAPI.MonoBehaviours.Core //MLAPI_CLIENT_DISCONNECT if (isClient) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - uint disconnectedClientId = messageReader.ReadUInt32(); - OnClientDisconnect(disconnectedClientId); - } - } + InternalMessageHandler.HandleClientDisconnect(clientId, incommingData, channelId); } break; case 4: //Server infroms clients to destroy an object if (isClient) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - uint netId = messageReader.ReadUInt32(); - SpawnManager.OnDestroyObject(netId, true); - } - } + InternalMessageHandler.HandleDestroyObject(clientId, incommingData, channelId); } break; case 5: //Scene switch if (isClient) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - NetworkSceneManager.OnSceneSwitch(messageReader.ReadUInt32()); - } - } + InternalMessageHandler.HandleSwitchScene(clientId, incommingData, channelId); } break; case 6: //Spawn pool object if (isClient) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - uint netId = messageReader.ReadUInt32(); - float xPos = messageReader.ReadSingle(); - float yPos = messageReader.ReadSingle(); - float zPos = messageReader.ReadSingle(); - float xRot = messageReader.ReadSingle(); - float yRot = messageReader.ReadSingle(); - float zRot = messageReader.ReadSingle(); - SpawnManager.spawnedObjects[netId].transform.position = new Vector3(xPos, yPos, zPos); - SpawnManager.spawnedObjects[netId].transform.rotation = Quaternion.Euler(xRot, yRot, zRot); - SpawnManager.spawnedObjects[netId].gameObject.SetActive(true); - } - } + InternalMessageHandler.HandleSpawnPoolObject(clientId, incommingData, channelId); } break; case 7: //Destroy pool object if (isClient) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - uint netId = messageReader.ReadUInt32(); - SpawnManager.spawnedObjects[netId].gameObject.SetActive(false); - } - } + InternalMessageHandler.HandleDestroyPoolObject(clientId, incommingData, channelId); } break; case 8: //Change owner if (isClient) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - uint netId = messageReader.ReadUInt32(); - uint ownerClientId = messageReader.ReadUInt32(); - if (SpawnManager.spawnedObjects[netId].OwnerClientId == MyClientId) - { - //We are current owner. - SpawnManager.spawnedObjects[netId].InvokeBehaviourOnLostOwnership(); - } - if (ownerClientId == MyClientId) - { - //We are new owner. - SpawnManager.spawnedObjects[netId].InvokeBehaviourOnGainedOwnership(); - } - SpawnManager.spawnedObjects[netId].ownerClientId = ownerClientId; - } - } + InternalMessageHandler.HandleChangeOwner(clientId, incommingData, channelId); } break; case 9: //Syncvar if (isClient) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - byte dirtyCount = messageReader.ReadByte(); - uint netId = messageReader.ReadUInt32(); - ushort orderIndex = messageReader.ReadUInt16(); - if (dirtyCount > 0) - { - for (int i = 0; i < dirtyCount; i++) - { - byte fieldIndex = messageReader.ReadByte(); - if (!SpawnManager.spawnedObjects.ContainsKey(netId)) - { - Debug.LogWarning("MLAPI: Sync message recieved for a non existant object with id: " + netId); - return; - } - else if (SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex) == null) - { - Debug.LogWarning("MLAPI: Sync message recieved for a non existant behaviour"); - return; - } - else if (fieldIndex > (SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedFieldTypes.Count - 1)) - { - Debug.LogWarning("MLAPI: Sync message recieved for field out of bounds"); - return; - } - FieldType type = SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedFieldTypes[fieldIndex]; - switch (type) - { - case FieldType.Bool: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadBoolean(), fieldIndex); - break; - case FieldType.Byte: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadByte(), fieldIndex); - break; - case FieldType.Char: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadChar(), fieldIndex); - break; - case FieldType.Double: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadDouble(), fieldIndex); - break; - case FieldType.Single: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadSingle(), fieldIndex); - break; - case FieldType.Int: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadInt32(), fieldIndex); - break; - case FieldType.Long: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadInt64(), fieldIndex); - break; - case FieldType.SByte: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadSByte(), fieldIndex); - break; - case FieldType.Short: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadInt16(), fieldIndex); - break; - case FieldType.UInt: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadUInt32(), fieldIndex); - break; - case FieldType.ULong: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadUInt64(), fieldIndex); - break; - case FieldType.UShort: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadUInt16(), fieldIndex); - break; - case FieldType.String: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadString(), fieldIndex); - break; - case FieldType.Vector3: - { //Cases aren't their own scope. Therefor we create a scope for them as they share the X,Y,Z local variables otherwise. - float x = messageReader.ReadSingle(); - float y = messageReader.ReadSingle(); - float z = messageReader.ReadSingle(); - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(new Vector3(x, y, z), fieldIndex); - } - break; - case FieldType.Vector2: - { - float x = messageReader.ReadSingle(); - float y = messageReader.ReadSingle(); - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(new Vector2(x, y), fieldIndex); - } - break; - case FieldType.Quaternion: - { - float x = messageReader.ReadSingle(); - float y = messageReader.ReadSingle(); - float z = messageReader.ReadSingle(); - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(Quaternion.Euler(x, y, z), fieldIndex); - } - break; - } - } - } - } - } + InternalMessageHandler.HandleSyncVarUpdate(clientId, incommingData, channelId); } break; case 10: if (isClient) //MLAPI_ADD_OBJECTS (plural) { - Debug.LogError("AddObjects"); - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - if (NetworkConfig.HandleObjectSpawning) - { - ushort objectCount = messageReader.ReadUInt16(); - for (int i = 0; i < objectCount; i++) - { - bool isPlayerObject = messageReader.ReadBoolean(); - uint networkId = messageReader.ReadUInt32(); - uint ownerId = messageReader.ReadUInt32(); - int prefabId = messageReader.ReadInt32(); - bool sceneObject = messageReader.ReadBoolean(); - - float xPos = messageReader.ReadSingle(); - float yPos = messageReader.ReadSingle(); - float zPos = messageReader.ReadSingle(); - - float xRot = messageReader.ReadSingle(); - float yRot = messageReader.ReadSingle(); - float zRot = messageReader.ReadSingle(); - - if (isPlayerObject) - { - connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); - SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - } - else - { - GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, - new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - go.GetComponent().sceneObject = sceneObject; - } - } - } - } - } + InternalMessageHandler.HandleAddObjects(clientId, incommingData, channelId); } - break; case 11: if (isClient) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - float netTime = messageReader.ReadSingle(); - int timestamp = messageReader.ReadInt32(); - - NetId netId = new NetId(clientId); - byte error; - int msDelay = NetworkTransport.GetRemoteDelayTimeMS(netId.HostId, netId.ConnectionId, timestamp, out error); - if ((NetworkError)error != NetworkError.Ok) - msDelay = 0; - networkTime = netTime + (msDelay / 1000f); - } - } + InternalMessageHandler.HandleTimeSync(clientId, incommingData, channelId); } break; } @@ -1402,335 +1031,7 @@ namespace MLAPI.MonoBehaviours.Core } } - #region SEND METHODS - internal void PassthroughSend(uint targetId, uint sourceId, ushort messageType, int channelId, byte[] data, uint? networkId = null, ushort? orderId = null) - { - NetId targetNetId = new NetId(targetId); - if (isHost && targetNetId.IsHost()) - { - //Host trying to send data to it's own client - Debug.LogWarning("MLAPI: Send method got message aimed at server from the server?"); - return; - } - - int sizeOfStream = 10; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) - { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(messageType); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(true); - writer.Write(sourceId); - if(NetworkConfig.EncryptedChannelsHashSet.Contains(MessageManager.reverseChannels[channelId])) - { - //Encrypted message - byte[] encrypted = CryptographyHelper.Encrypt(data, connectedClients[targetId].AesKey); - writer.Write((ushort)encrypted.Length); - writer.Write(encrypted); - } - else - { - writer.Write((ushort)data.Length); - writer.Write(data); - } - } - - byte error; - NetworkTransport.QueueMessageForSending(targetNetId.HostId, targetNetId.ConnectionId, channelId, stream.GetBuffer(), sizeOfStream, out error); - } - } - - internal void Send(uint clientId, string messageType, string channelName, byte[] data, uint? networkId = null, ushort? orderId = null, bool skipQueue = false) - { - NetId netId = new NetId(clientId); - if(isHost && netId.IsHost()) - { - //Don't invoke the message on our own machine. Instant stack overflow. - Debug.LogWarning("MLAPI: Cannot send message to own client"); - return; - } - else if(netId.IsHost()) - { - //Client trying to send data to host - netId = NetId.ServerNetId; - } - - bool isPassthrough = (!isServer && clientId != NetId.ServerNetId.GetClientId() && NetworkConfig.AllowPassthroughMessages); - if (isPassthrough && !NetworkConfig.PassthroughMessageHashSet.Contains(MessageManager.messageTypes[messageType])) - { - Debug.LogWarning("MLAPI: The The MessageType " + messageType + " is not registered as an allowed passthrough message type."); - return; - } - - int sizeOfStream = 6; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - if (isPassthrough) - sizeOfStream += 4; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) - { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(MessageManager.messageTypes[messageType]); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(isPassthrough); - if (isPassthrough) - writer.Write(clientId); - - if (NetworkConfig.EncryptedChannelsHashSet.Contains(channelName)) - { - //This is an encrypted message. - byte[] encrypted; - if (isServer) - encrypted = CryptographyHelper.Encrypt(data, connectedClients[clientId].AesKey); - else - encrypted = CryptographyHelper.Encrypt(data, clientAesKey); - - writer.Write((ushort)encrypted.Length); - writer.Write(encrypted); - } - else - { - //Send in plaintext. - writer.Write((ushort)data.Length); - writer.Write(data); - } - } - byte error; - if (isPassthrough) - netId = NetId.ServerNetId; - if (skipQueue) - NetworkTransport.Send(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], stream.GetBuffer(), sizeOfStream, out error); - else - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], stream.GetBuffer(), sizeOfStream, out error); - } - } - - internal void Send(uint[] clientIds, string messageType, string channelName, byte[] data, uint? networkId = null, ushort? orderId = null) - { - if (NetworkConfig.EncryptedChannelsHashSet.Contains(channelName)) - { - Debug.LogWarning("MLAPI: Cannot send messages over encrypted channel to multiple clients."); - return; - } - - int sizeOfStream = 6; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) - { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(MessageManager.messageTypes[messageType]); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(false); - writer.Write((ushort)data.Length); - writer.Write(data); - } - int channel = MessageManager.channels[channelName]; - for (int i = 0; i < clientIds.Length; i++) - { - NetId netId = new NetId(clientIds[i]); - if (isHost && netId.IsHost()) - { - //Don't invoke the message on our own machine. Instant stack overflow. - continue; - } - else if (netId.IsHost()) - { - //Client trying to send data to host - netId = NetId.ServerNetId; - } - byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); - } - } - } - - internal void Send(List clientIds, string messageType, string channelName, byte[] data, uint? networkId = null, ushort? orderId = null) - { - if (NetworkConfig.EncryptedChannelsHashSet.Contains(channelName)) - { - Debug.LogWarning("MLAPI: Cannot send messages over encrypted channel to multiple clients."); - return; - } - - //2 bytes for messageType, 2 bytes for buffer length and one byte for target bool - int sizeOfStream = 6; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) - { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(MessageManager.messageTypes[messageType]); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(false); - writer.Write((ushort)data.Length); - writer.Write(data); - } - int channel = MessageManager.channels[channelName]; - for (int i = 0; i < clientIds.Count; i++) - { - NetId netId = new NetId(clientIds[i]); - if (isHost && netId.IsHost()) - { - //Don't invoke the message on our own machine. Instant stack overflow. - continue; - } - else if (netId.IsHost()) - { - //Client trying to send data to host - netId = NetId.ServerNetId; - } - byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); - } - } - } - - internal void Send(string messageType, string channelName, byte[] data, uint? networkId = null, ushort? orderId = null) - { - if (connectedClients.Count == 0) - return; - if (NetworkConfig.EncryptedChannels.Contains(channelName)) - { - Debug.LogWarning("MLAPI: Cannot send messages over encrypted channel to multiple clients."); - return; - } - - //2 bytes for messageType, 2 bytes for buffer length and one byte for target bool - int sizeOfStream = 6; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) - { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(MessageManager.messageTypes[messageType]); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(false); - writer.Write((ushort)data.Length); - writer.Write(data); - } - int channel = MessageManager.channels[channelName]; - foreach (KeyValuePair pair in connectedClients) - { - NetId netId = new NetId(pair.Key); - if(isHost && netId.IsHost()) - { - //Don't invoke the message on our own machine. Instant stack overflow. - continue; - } - else if (netId.IsHost()) - { - //Client trying to send data to host - netId = NetId.ServerNetId; - } - byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); - } - } - } - - internal void Send(string messageType, string channelName, byte[] data, uint clientIdToIgnore, uint? networkId = null, ushort? orderId = null) - { - if (NetworkConfig.EncryptedChannels.Contains(channelName)) - { - Debug.LogWarning("MLAPI: Cannot send messages over encrypted channel to multiple clients."); - return; - } - - //2 bytes for messageType, 2 bytes for buffer length and one byte for target bool - int sizeOfStream = 5; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) - { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(MessageManager.messageTypes[messageType]); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(false); - writer.Write((ushort)data.Length); - writer.Write(data); - } - int channel = MessageManager.channels[channelName]; - foreach (KeyValuePair pair in connectedClients) - { - if (pair.Key == clientIdToIgnore) - continue; - - NetId netId = new NetId(pair.Key); - if (isHost && netId.IsHost()) - { - //Don't invoke the message on our own machine. Instant stack overflow. - continue; - } - else if (netId.IsHost()) - { - //Client trying to send data to host - netId = NetId.ServerNetId; - } - byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); - } - } - } - #endregion - - private void DisconnectClient(uint clientId) + internal void DisconnectClient(uint clientId) { if (!isServer) return; @@ -1752,7 +1053,7 @@ namespace MLAPI.MonoBehaviours.Core NetworkTransport.Disconnect(netId.HostId, netId.ConnectionId, out error); } - private void OnClientDisconnect(uint clientId) + internal void OnClientDisconnect(uint clientId) { if (pendingClients.Contains(clientId)) pendingClients.Remove(clientId); @@ -1779,7 +1080,7 @@ namespace MLAPI.MonoBehaviours.Core { writer.Write(clientId); } - Send("MLAPI_CLIENT_DISCONNECT", "MLAPI_INTERNAL", stream.GetBuffer(), clientId); + InternalMessageHandler.Send("MLAPI_CLIENT_DISCONNECT", "MLAPI_INTERNAL", stream.GetBuffer(), clientId); } } } @@ -1797,12 +1098,12 @@ namespace MLAPI.MonoBehaviours.Core foreach (KeyValuePair pair in connectedClients) { - Send("MLAPI_TIME_SYNC", "MLAPI_TIME_SYNC", stream.GetBuffer()); + InternalMessageHandler.Send("MLAPI_TIME_SYNC", "MLAPI_TIME_SYNC", stream.GetBuffer()); } } } - private void HandleApproval(uint clientId, bool approved, Vector3 position, Quaternion rotation) + internal void HandleApproval(uint clientId, bool approved, Vector3 position, Quaternion rotation) { if(approved) { @@ -1925,7 +1226,7 @@ namespace MLAPI.MonoBehaviours.Core } } } - Send(clientId, "MLAPI_CONNECTION_APPROVED", "MLAPI_INTERNAL", writeStream.GetBuffer(), null, null, true); + InternalMessageHandler.Send(clientId, "MLAPI_CONNECTION_APPROVED", "MLAPI_INTERNAL", writeStream.GetBuffer(), null, null, true); if (OnClientConnectedCallback != null) OnClientConnectedCallback.Invoke(clientId); @@ -1963,7 +1264,7 @@ namespace MLAPI.MonoBehaviours.Core writer.Write(clientId); } } - Send("MLAPI_ADD_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer(), clientId); + InternalMessageHandler.Send("MLAPI_ADD_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer(), clientId); } //Flush syncvars: foreach (KeyValuePair networkedObject in SpawnManager.spawnedObjects) diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs new file mode 100644 index 0000000..9d0dcd0 --- /dev/null +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs @@ -0,0 +1,445 @@ +using System; +using System.IO; +using System.Security.Cryptography; +using MLAPI.Data; +using MLAPI.MonoBehaviours.Core; +using UnityEngine; +using UnityEngine.Networking; + +namespace MLAPI.NetworkingManagerComponents.Core +{ + internal static partial class InternalMessageHandler + { + internal static void HandleConnectionRequest(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + byte[] configHash = messageReader.ReadBytes(32); + if (!netManager.NetworkConfig.CompareConfig(configHash)) + { + Debug.LogWarning("MLAPI: NetworkConfiguration missmatch. The configuration between the server and client does not match."); + netManager.DisconnectClient(clientId); + return; + } + byte[] aesKey = new byte[0]; + if (netManager.NetworkConfig.EnableEncryption) + { + ushort diffiePublicSize = messageReader.ReadUInt16(); + byte[] diffiePublic = messageReader.ReadBytes(diffiePublicSize); + netManager.diffieHellmanPublicKeys.Add(clientId, diffiePublic); + + } + if (netManager.NetworkConfig.ConnectionApproval) + { + ushort bufferSize = messageReader.ReadUInt16(); + byte[] connectionBuffer = messageReader.ReadBytes(bufferSize); + netManager.ConnectionApprovalCallback(connectionBuffer, clientId, netManager.HandleApproval); + } + else + { + netManager.HandleApproval(clientId, true, Vector3.zero, Quaternion.identity); + } + } + } + } + + internal static void HandleConnectionApproved(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + netManager.myClientId = messageReader.ReadUInt32(); + uint sceneIndex = 0; + if (netManager.NetworkConfig.EnableSceneSwitching) + { + sceneIndex = messageReader.ReadUInt32(); + } + + if (netManager.NetworkConfig.EnableEncryption) + { + ushort keyLength = messageReader.ReadUInt16(); + byte[] serverPublicKey = messageReader.ReadBytes(keyLength); + netManager.clientAesKey = netManager.clientDiffieHellman.GetSharedSecret(serverPublicKey); + if (netManager.NetworkConfig.SignKeyExchange) + { + ushort signatureLength = messageReader.ReadUInt16(); + byte[] publicKeySignature = messageReader.ReadBytes(signatureLength); + using (RSACryptoServiceProvider rsa = new RSACryptoServiceProvider()) + { + rsa.PersistKeyInCsp = false; + rsa.FromXmlString(netManager.NetworkConfig.RSAPublicKey); + if (!rsa.VerifyData(serverPublicKey, new SHA512CryptoServiceProvider(), publicKeySignature)) + { + //Man in the middle. + Debug.LogWarning("MLAPI: Signature doesnt match for the key exchange public part. Disconnecting"); + netManager.StopClient(); + return; + } + } + } + } + + float netTime = messageReader.ReadSingle(); + int remoteStamp = messageReader.ReadInt32(); + byte error; + NetId netId = new NetId(clientId); + int msDelay = NetworkTransport.GetRemoteDelayTimeMS(netId.HostId, netId.ConnectionId, remoteStamp, out error); + if ((NetworkError)error != NetworkError.Ok) + msDelay = 0; + netManager.networkTime = netTime + (msDelay / 1000f); + + netManager.connectedClients.Add(clientId, new NetworkedClient() { ClientId = clientId }); + int clientCount = messageReader.ReadInt32(); + for (int i = 0; i < clientCount; i++) + { + uint _clientId = messageReader.ReadUInt32(); + netManager.connectedClients.Add(_clientId, new NetworkedClient() { ClientId = _clientId }); + } + if (netManager.NetworkConfig.HandleObjectSpawning) + { + SpawnManager.DestroySceneObjects(); + int objectCount = messageReader.ReadInt32(); + for (int i = 0; i < objectCount; i++) + { + bool isPlayerObject = messageReader.ReadBoolean(); + uint networkId = messageReader.ReadUInt32(); + uint ownerId = messageReader.ReadUInt32(); + int prefabId = messageReader.ReadInt32(); + bool isActive = messageReader.ReadBoolean(); + bool sceneObject = messageReader.ReadBoolean(); + + float xPos = messageReader.ReadSingle(); + float yPos = messageReader.ReadSingle(); + float zPos = messageReader.ReadSingle(); + + float xRot = messageReader.ReadSingle(); + float yRot = messageReader.ReadSingle(); + float zRot = messageReader.ReadSingle(); + + if (isPlayerObject) + { + SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + } + else + { + GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, + new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + + go.GetComponent().sceneObject = sceneObject; + go.SetActive(isActive); + } + } + } + if (netManager.NetworkConfig.EnableSceneSwitching) + { + NetworkSceneManager.OnSceneSwitch(sceneIndex); + } + } + } + netManager._isClientConnected = true; + if (netManager.OnClientConnectedCallback != null) + netManager.OnClientConnectedCallback.Invoke(clientId); + } + + internal static void HandleAddObject(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + if (netManager.NetworkConfig.HandleObjectSpawning) + { + bool isPlayerObject = messageReader.ReadBoolean(); + uint networkId = messageReader.ReadUInt32(); + uint ownerId = messageReader.ReadUInt32(); + int prefabId = messageReader.ReadInt32(); + bool sceneObject = messageReader.ReadBoolean(); + + float xPos = messageReader.ReadSingle(); + float yPos = messageReader.ReadSingle(); + float zPos = messageReader.ReadSingle(); + + float xRot = messageReader.ReadSingle(); + float yRot = messageReader.ReadSingle(); + float zRot = messageReader.ReadSingle(); + + if (isPlayerObject) + { + netManager.connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); + SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + } + else + { + GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, + new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + go.GetComponent().sceneObject = sceneObject; + } + } + else + { + uint ownerId = messageReader.ReadUInt32(); + netManager.connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); + } + } + } + } + + internal static void HandleClientDisconnect(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + uint disconnectedClientId = messageReader.ReadUInt32(); + netManager.OnClientDisconnect(disconnectedClientId); + } + } + } + + internal static void HandleDestroyObject(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + uint netId = messageReader.ReadUInt32(); + SpawnManager.OnDestroyObject(netId, true); + } + } + } + + internal static void HandleSwitchScene(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + NetworkSceneManager.OnSceneSwitch(messageReader.ReadUInt32()); + } + } + } + + internal static void HandleSpawnPoolObject(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + uint netId = messageReader.ReadUInt32(); + + float xPos = messageReader.ReadSingle(); + float yPos = messageReader.ReadSingle(); + float zPos = messageReader.ReadSingle(); + + float xRot = messageReader.ReadSingle(); + float yRot = messageReader.ReadSingle(); + float zRot = messageReader.ReadSingle(); + + SpawnManager.spawnedObjects[netId].transform.position = new Vector3(xPos, yPos, zPos); + SpawnManager.spawnedObjects[netId].transform.rotation = Quaternion.Euler(xRot, yRot, zRot); + SpawnManager.spawnedObjects[netId].gameObject.SetActive(true); + } + } + } + + internal static void HandleDestroyPoolObject(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + uint netId = messageReader.ReadUInt32(); + SpawnManager.spawnedObjects[netId].gameObject.SetActive(false); + } + } + } + + internal static void HandleChangeOwner(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + uint netId = messageReader.ReadUInt32(); + uint ownerClientId = messageReader.ReadUInt32(); + if (SpawnManager.spawnedObjects[netId].OwnerClientId == netManager.MyClientId) + { + //We are current owner. + SpawnManager.spawnedObjects[netId].InvokeBehaviourOnLostOwnership(); + } + if (ownerClientId == netManager.MyClientId) + { + //We are new owner. + SpawnManager.spawnedObjects[netId].InvokeBehaviourOnGainedOwnership(); + } + SpawnManager.spawnedObjects[netId].ownerClientId = ownerClientId; + } + } + } + + internal static void HandleSyncVarUpdate(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + byte dirtyCount = messageReader.ReadByte(); + uint netId = messageReader.ReadUInt32(); + ushort orderIndex = messageReader.ReadUInt16(); + if (dirtyCount > 0) + { + for (int i = 0; i < dirtyCount; i++) + { + byte fieldIndex = messageReader.ReadByte(); + if (!SpawnManager.spawnedObjects.ContainsKey(netId)) + { + Debug.LogWarning("MLAPI: Sync message recieved for a non existant object with id: " + netId); + return; + } + else if (SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex) == null) + { + Debug.LogWarning("MLAPI: Sync message recieved for a non existant behaviour"); + return; + } + else if (fieldIndex > (SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedFieldTypes.Count - 1)) + { + Debug.LogWarning("MLAPI: Sync message recieved for field out of bounds"); + return; + } + FieldType type = SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedFieldTypes[fieldIndex]; + switch (type) + { + case FieldType.Bool: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadBoolean(), fieldIndex); + break; + case FieldType.Byte: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadByte(), fieldIndex); + break; + case FieldType.Char: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadChar(), fieldIndex); + break; + case FieldType.Double: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadDouble(), fieldIndex); + break; + case FieldType.Single: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadSingle(), fieldIndex); + break; + case FieldType.Int: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadInt32(), fieldIndex); + break; + case FieldType.Long: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadInt64(), fieldIndex); + break; + case FieldType.SByte: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadSByte(), fieldIndex); + break; + case FieldType.Short: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadInt16(), fieldIndex); + break; + case FieldType.UInt: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadUInt32(), fieldIndex); + break; + case FieldType.ULong: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadUInt64(), fieldIndex); + break; + case FieldType.UShort: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadUInt16(), fieldIndex); + break; + case FieldType.String: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadString(), fieldIndex); + break; + case FieldType.Vector3: + { //Cases aren't their own scope. Therefor we create a scope for them as they share the X,Y,Z local variables otherwise. + float x = messageReader.ReadSingle(); + float y = messageReader.ReadSingle(); + float z = messageReader.ReadSingle(); + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(new Vector3(x, y, z), fieldIndex); + } + break; + case FieldType.Vector2: + { + float x = messageReader.ReadSingle(); + float y = messageReader.ReadSingle(); + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(new Vector2(x, y), fieldIndex); + } + break; + case FieldType.Quaternion: + { + float x = messageReader.ReadSingle(); + float y = messageReader.ReadSingle(); + float z = messageReader.ReadSingle(); + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(Quaternion.Euler(x, y, z), fieldIndex); + } + break; + } + } + } + } + } + } + + internal static void HandleAddObjects(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + if (netManager.NetworkConfig.HandleObjectSpawning) + { + ushort objectCount = messageReader.ReadUInt16(); + for (int i = 0; i < objectCount; i++) + { + bool isPlayerObject = messageReader.ReadBoolean(); + uint networkId = messageReader.ReadUInt32(); + uint ownerId = messageReader.ReadUInt32(); + int prefabId = messageReader.ReadInt32(); + bool sceneObject = messageReader.ReadBoolean(); + + float xPos = messageReader.ReadSingle(); + float yPos = messageReader.ReadSingle(); + float zPos = messageReader.ReadSingle(); + + float xRot = messageReader.ReadSingle(); + float yRot = messageReader.ReadSingle(); + float zRot = messageReader.ReadSingle(); + + if (isPlayerObject) + { + netManager.connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); + SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + } + else + { + GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, + new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + go.GetComponent().sceneObject = sceneObject; + } + } + } + } + } + } + + internal static void HandleTimeSync(uint clientId, byte[] incommingData, int channelId) + { + using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + { + using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + { + float netTime = messageReader.ReadSingle(); + int timestamp = messageReader.ReadInt32(); + + NetId netId = new NetId(clientId); + byte error; + int msDelay = NetworkTransport.GetRemoteDelayTimeMS(netId.HostId, netId.ConnectionId, timestamp, out error); + if ((NetworkError)error != NetworkError.Ok) + msDelay = 0; + netManager.networkTime = netTime + (msDelay / 1000f); + } + } + } + } +} diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs new file mode 100644 index 0000000..118725d --- /dev/null +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs @@ -0,0 +1,339 @@ +using System.Collections.Generic; +using System.IO; +using MLAPI.Data; +using MLAPI.MonoBehaviours.Core; +using MLAPI.NetworkingManagerComponents.Cryptography; +using UnityEngine; +using UnityEngine.Networking; + +namespace MLAPI.NetworkingManagerComponents.Core +{ + internal static partial class InternalMessageHandler + { + internal static void PassthroughSend(uint targetId, uint sourceId, ushort messageType, int channelId, byte[] data, uint? networkId = null, ushort? orderId = null) + { + NetId targetNetId = new NetId(targetId); + if (netManager.isHost && targetNetId.IsHost()) + { + //Host trying to send data to it's own client + Debug.LogWarning("MLAPI: Send method got message aimed at server from the server?"); + return; + } + + int sizeOfStream = 10; + if (networkId != null) + sizeOfStream += 4; + if (orderId != null) + sizeOfStream += 2; + sizeOfStream += data.Length; + + using (MemoryStream stream = new MemoryStream(sizeOfStream)) + { + using (BinaryWriter writer = new BinaryWriter(stream)) + { + writer.Write(messageType); + writer.Write(networkId != null); + if (networkId != null) + writer.Write(networkId.Value); + if (orderId != null) + writer.Write(orderId.Value); + writer.Write(true); + writer.Write(sourceId); + if (netManager.NetworkConfig.EncryptedChannelsHashSet.Contains(MessageManager.reverseChannels[channelId])) + { + //Encrypted message + byte[] encrypted = CryptographyHelper.Encrypt(data, netManager.connectedClients[targetId].AesKey); + writer.Write((ushort)encrypted.Length); + writer.Write(encrypted); + } + else + { + writer.Write((ushort)data.Length); + writer.Write(data); + } + } + + byte error; + NetworkTransport.QueueMessageForSending(targetNetId.HostId, targetNetId.ConnectionId, channelId, stream.GetBuffer(), sizeOfStream, out error); + } + } + + internal static void Send(uint clientId, string messageType, string channelName, byte[] data, uint? networkId = null, ushort? orderId = null, bool skipQueue = false) + { + NetId netId = new NetId(clientId); + if (netManager.isHost && netId.IsHost()) + { + //Don't invoke the message on our own machine. Instant stack overflow. + Debug.LogWarning("MLAPI: Cannot send message to own client"); + return; + } + else if (netId.IsHost()) + { + //Client trying to send data to host + netId = NetId.ServerNetId; + } + + bool isPassthrough = (!netManager.isServer && clientId != NetId.ServerNetId.GetClientId() && netManager.NetworkConfig.AllowPassthroughMessages); + if (isPassthrough && !netManager.NetworkConfig.PassthroughMessageHashSet.Contains(MessageManager.messageTypes[messageType])) + { + Debug.LogWarning("MLAPI: The The MessageType " + messageType + " is not registered as an allowed passthrough message type."); + return; + } + + int sizeOfStream = 6; + if (networkId != null) + sizeOfStream += 4; + if (orderId != null) + sizeOfStream += 2; + if (isPassthrough) + sizeOfStream += 4; + sizeOfStream += data.Length; + + using (MemoryStream stream = new MemoryStream(sizeOfStream)) + { + using (BinaryWriter writer = new BinaryWriter(stream)) + { + writer.Write(MessageManager.messageTypes[messageType]); + writer.Write(networkId != null); + if (networkId != null) + writer.Write(networkId.Value); + if (orderId != null) + writer.Write(orderId.Value); + writer.Write(isPassthrough); + if (isPassthrough) + writer.Write(clientId); + + if (netManager.NetworkConfig.EncryptedChannelsHashSet.Contains(channelName)) + { + //This is an encrypted message. + byte[] encrypted; + if (netManager.isServer) + encrypted = CryptographyHelper.Encrypt(data, netManager.connectedClients[clientId].AesKey); + else + encrypted = CryptographyHelper.Encrypt(data, netManager.clientAesKey); + + writer.Write((ushort)encrypted.Length); + writer.Write(encrypted); + } + else + { + //Send in plaintext. + writer.Write((ushort)data.Length); + writer.Write(data); + } + } + byte error; + if (isPassthrough) + netId = NetId.ServerNetId; + if (skipQueue) + NetworkTransport.Send(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], stream.GetBuffer(), sizeOfStream, out error); + else + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], stream.GetBuffer(), sizeOfStream, out error); + } + } + + internal static void Send(uint[] clientIds, string messageType, string channelName, byte[] data, uint? networkId = null, ushort? orderId = null) + { + if (netManager.NetworkConfig.EncryptedChannelsHashSet.Contains(channelName)) + { + Debug.LogWarning("MLAPI: Cannot send messages over encrypted channel to multiple clients."); + return; + } + + int sizeOfStream = 6; + if (networkId != null) + sizeOfStream += 4; + if (orderId != null) + sizeOfStream += 2; + sizeOfStream += data.Length; + + using (MemoryStream stream = new MemoryStream(sizeOfStream)) + { + using (BinaryWriter writer = new BinaryWriter(stream)) + { + writer.Write(MessageManager.messageTypes[messageType]); + writer.Write(networkId != null); + if (networkId != null) + writer.Write(networkId.Value); + if (orderId != null) + writer.Write(orderId.Value); + writer.Write(false); + writer.Write((ushort)data.Length); + writer.Write(data); + } + int channel = MessageManager.channels[channelName]; + for (int i = 0; i < clientIds.Length; i++) + { + NetId netId = new NetId(clientIds[i]); + if (netManager.isHost && netId.IsHost()) + { + //Don't invoke the message on our own machine. Instant stack overflow. + continue; + } + else if (netId.IsHost()) + { + //Client trying to send data to host + netId = NetId.ServerNetId; + } + byte error; + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); + } + } + } + + internal static void Send(List clientIds, string messageType, string channelName, byte[] data, uint? networkId = null, ushort? orderId = null) + { + if (netManager.NetworkConfig.EncryptedChannelsHashSet.Contains(channelName)) + { + Debug.LogWarning("MLAPI: Cannot send messages over encrypted channel to multiple clients."); + return; + } + + //2 bytes for messageType, 2 bytes for buffer length and one byte for target bool + int sizeOfStream = 6; + if (networkId != null) + sizeOfStream += 4; + if (orderId != null) + sizeOfStream += 2; + sizeOfStream += data.Length; + + using (MemoryStream stream = new MemoryStream(sizeOfStream)) + { + using (BinaryWriter writer = new BinaryWriter(stream)) + { + writer.Write(MessageManager.messageTypes[messageType]); + writer.Write(networkId != null); + if (networkId != null) + writer.Write(networkId.Value); + if (orderId != null) + writer.Write(orderId.Value); + writer.Write(false); + writer.Write((ushort)data.Length); + writer.Write(data); + } + int channel = MessageManager.channels[channelName]; + for (int i = 0; i < clientIds.Count; i++) + { + NetId netId = new NetId(clientIds[i]); + if (netManager.isHost && netId.IsHost()) + { + //Don't invoke the message on our own machine. Instant stack overflow. + continue; + } + else if (netId.IsHost()) + { + //Client trying to send data to host + netId = NetId.ServerNetId; + } + byte error; + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); + } + } + } + + internal static void Send(string messageType, string channelName, byte[] data, uint? networkId = null, ushort? orderId = null) + { + if (netManager.connectedClients.Count == 0) + return; + if (netManager.NetworkConfig.EncryptedChannels.Contains(channelName)) + { + Debug.LogWarning("MLAPI: Cannot send messages over encrypted channel to multiple clients."); + return; + } + + //2 bytes for messageType, 2 bytes for buffer length and one byte for target bool + int sizeOfStream = 6; + if (networkId != null) + sizeOfStream += 4; + if (orderId != null) + sizeOfStream += 2; + sizeOfStream += data.Length; + + using (MemoryStream stream = new MemoryStream(sizeOfStream)) + { + using (BinaryWriter writer = new BinaryWriter(stream)) + { + writer.Write(MessageManager.messageTypes[messageType]); + writer.Write(networkId != null); + if (networkId != null) + writer.Write(networkId.Value); + if (orderId != null) + writer.Write(orderId.Value); + writer.Write(false); + writer.Write((ushort)data.Length); + writer.Write(data); + } + int channel = MessageManager.channels[channelName]; + foreach (KeyValuePair pair in netManager.connectedClients) + { + NetId netId = new NetId(pair.Key); + if (netManager.isHost && netId.IsHost()) + { + //Don't invoke the message on our own machine. Instant stack overflow. + continue; + } + else if (netId.IsHost()) + { + //Client trying to send data to host + netId = NetId.ServerNetId; + } + byte error; + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); + } + } + } + + internal static void Send(string messageType, string channelName, byte[] data, uint clientIdToIgnore, uint? networkId = null, ushort? orderId = null) + { + if (netManager.NetworkConfig.EncryptedChannels.Contains(channelName)) + { + Debug.LogWarning("MLAPI: Cannot send messages over encrypted channel to multiple clients."); + return; + } + + //2 bytes for messageType, 2 bytes for buffer length and one byte for target bool + int sizeOfStream = 5; + if (networkId != null) + sizeOfStream += 4; + if (orderId != null) + sizeOfStream += 2; + sizeOfStream += data.Length; + + using (MemoryStream stream = new MemoryStream(sizeOfStream)) + { + using (BinaryWriter writer = new BinaryWriter(stream)) + { + writer.Write(MessageManager.messageTypes[messageType]); + writer.Write(networkId != null); + if (networkId != null) + writer.Write(networkId.Value); + if (orderId != null) + writer.Write(orderId.Value); + writer.Write(false); + writer.Write((ushort)data.Length); + writer.Write(data); + } + int channel = MessageManager.channels[channelName]; + foreach (KeyValuePair pair in netManager.connectedClients) + { + if (pair.Key == clientIdToIgnore) + continue; + + NetId netId = new NetId(pair.Key); + if (netManager.isHost && netId.IsHost()) + { + //Don't invoke the message on our own machine. Instant stack overflow. + continue; + } + else if (netId.IsHost()) + { + //Client trying to send data to host + netId = NetId.ServerNetId; + } + byte error; + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); + } + } + } + } +} diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs new file mode 100644 index 0000000..adff8dc --- /dev/null +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs @@ -0,0 +1,16 @@ +using System; +using MLAPI.MonoBehaviours.Core; + +namespace MLAPI.NetworkingManagerComponents.Core +{ + internal static partial class InternalMessageHandler + { + private static NetworkingManager netManager + { + get + { + return NetworkingManager.singleton; + } + } + } +} diff --git a/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs b/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs index c3e9c63..a4df814 100644 --- a/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs @@ -78,7 +78,7 @@ namespace MLAPI.NetworkingManagerComponents.Core writer.Write(rotation.eulerAngles.y); writer.Write(rotation.eulerAngles.z); } - NetworkingManager.singleton.Send("MLAPI_SPAWN_POOL_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); + InternalMessageHandler.Send("MLAPI_SPAWN_POOL_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); } return go; } @@ -101,7 +101,7 @@ namespace MLAPI.NetworkingManagerComponents.Core { writer.Write(netObject.NetworkId); } - NetworkingManager.singleton.Send("MLAPI_DESTROY_POOL_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); + InternalMessageHandler.Send("MLAPI_DESTROY_POOL_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); } } } diff --git a/MLAPI/NetworkingManagerComponents/Core/NetworkSceneManager.cs b/MLAPI/NetworkingManagerComponents/Core/NetworkSceneManager.cs index eb5078f..ea80aeb 100644 --- a/MLAPI/NetworkingManagerComponents/Core/NetworkSceneManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/NetworkSceneManager.cs @@ -64,7 +64,7 @@ namespace MLAPI.NetworkingManagerComponents.Core { writer.Write(sceneNameToIndex[sceneName]); } - NetworkingManager.singleton.Send("MLAPI_SWITCH_SCENE", "MLAPI_INTERNAL", stream.GetBuffer()); + InternalMessageHandler.Send("MLAPI_SWITCH_SCENE", "MLAPI_INTERNAL", stream.GetBuffer()); } } diff --git a/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs b/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs index 7b9e06b..114d75b 100644 --- a/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs @@ -45,7 +45,7 @@ namespace MLAPI.NetworkingManagerComponents.Core writer.Write(netId); writer.Write(netObject.ownerClientId); } - netManager.Send("MLAPI_CHANGE_OWNER", "MLAPI_INTERNAL", stream.GetBuffer()); + InternalMessageHandler.Send("MLAPI_CHANGE_OWNER", "MLAPI_INTERNAL", stream.GetBuffer()); } } @@ -62,7 +62,7 @@ namespace MLAPI.NetworkingManagerComponents.Core writer.Write(netId); writer.Write(clientId); } - netManager.Send("MLAPI_CHANGE_OWNER", "MLAPI_INTERNAL", stream.GetBuffer()); + InternalMessageHandler.Send("MLAPI_CHANGE_OWNER", "MLAPI_INTERNAL", stream.GetBuffer()); } } @@ -131,7 +131,7 @@ namespace MLAPI.NetworkingManagerComponents.Core writer.Write(sceneObjectsToSync[i].transform.rotation.eulerAngles.z); } } - NetworkingManager.singleton.Send("MLAPI_ADD_OBJECTS", "MLAPI_INTERNAL", stream.GetBuffer()); + InternalMessageHandler.Send("MLAPI_ADD_OBJECTS", "MLAPI_INTERNAL", stream.GetBuffer()); } } @@ -213,7 +213,7 @@ namespace MLAPI.NetworkingManagerComponents.Core writer.Write(netObject.transform.rotation.eulerAngles.z); } - netManager.Send("MLAPI_ADD_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); + InternalMessageHandler.Send("MLAPI_ADD_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); } } @@ -269,7 +269,7 @@ namespace MLAPI.NetworkingManagerComponents.Core { writer.Write(networkId); } - netManager.Send("MLAPI_DESTROY_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); + InternalMessageHandler.Send("MLAPI_DESTROY_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); } } } From 7054220a40ed9ab7da347fc199b91d51bb6f4b0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= Date: Tue, 17 Apr 2018 14:52:13 +0200 Subject: [PATCH 10/47] Replaced deltaTime usage with Unscaled deltaTime --- MLAPI/MonoBehaviours/Core/NetworkingManager.cs | 2 +- MLAPI/MonoBehaviours/Prototyping/NetworkedTransform.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index 20df98f..d07274e 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -813,7 +813,7 @@ namespace MLAPI.MonoBehaviours.Core lastTimeSyncTime = NetworkTime; } - networkTime += Time.deltaTime; + networkTime += Time.unscaledDeltaTime; } } diff --git a/MLAPI/MonoBehaviours/Prototyping/NetworkedTransform.cs b/MLAPI/MonoBehaviours/Prototyping/NetworkedTransform.cs index e6f2458..64d8abd 100644 --- a/MLAPI/MonoBehaviours/Prototyping/NetworkedTransform.cs +++ b/MLAPI/MonoBehaviours/Prototyping/NetworkedTransform.cs @@ -135,7 +135,7 @@ namespace MLAPI.MonoBehaviours.Prototyping //Snap, set T to 1 (100% of the lerp) lerpT = 1f; } - lerpT += Time.deltaTime / timeForLerp; + lerpT += Time.unscaledDeltaTime / timeForLerp; transform.position = Vector3.Lerp(lerpStartPos, lerpEndPos, lerpT); transform.rotation = Quaternion.Slerp(lerpStartRot, lerpEndRot, lerpT); } From 045e458aa8367a6ea77e87986dd1438b89a11122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 17:02:18 +0200 Subject: [PATCH 11/47] Added EditorScripts for reference purpose and modified the NEtworkingManager to use the inpsector more --- MLAPI-Editor/GithubAsset.cs | 8 + MLAPI-Editor/GithubRelease.cs | 13 ++ MLAPI-Editor/JSONStructs/GithubAsset.cs | 8 + MLAPI-Editor/JSONStructs/GithubRelease.cs | 13 ++ MLAPI-Editor/MLAPI-Editor.csproj | 66 +++++++ MLAPI-Editor/MLAPIEditor.cs | 173 ++++++++++++++++++ MLAPI-Editor/NetworkedAnimatorEditor.cs | 97 ++++++++++ MLAPI-Editor/NetworkedBehaviourEditor.cs | 84 +++++++++ MLAPI-Editor/NetworkedObjectEditor.cs | 51 ++++++ MLAPI-Editor/NetworkingManagerEditor.cs | 75 ++++++++ MLAPI-Editor/Properties/AssemblyInfo.cs | 36 ++++ MLAPI-Editor/TrackedObjectEditor.cs | 34 ++++ MLAPI.sln | 8 + MLAPI/Data/NetworkConfig.cs | 6 +- MLAPI/Data/NetworkedPrefab.cs | 16 +- .../MonoBehaviours/Core/NetworkingManager.cs | 33 +--- 16 files changed, 692 insertions(+), 29 deletions(-) create mode 100644 MLAPI-Editor/GithubAsset.cs create mode 100644 MLAPI-Editor/GithubRelease.cs create mode 100644 MLAPI-Editor/JSONStructs/GithubAsset.cs create mode 100644 MLAPI-Editor/JSONStructs/GithubRelease.cs create mode 100644 MLAPI-Editor/MLAPI-Editor.csproj create mode 100644 MLAPI-Editor/MLAPIEditor.cs create mode 100644 MLAPI-Editor/NetworkedAnimatorEditor.cs create mode 100644 MLAPI-Editor/NetworkedBehaviourEditor.cs create mode 100644 MLAPI-Editor/NetworkedObjectEditor.cs create mode 100644 MLAPI-Editor/NetworkingManagerEditor.cs create mode 100644 MLAPI-Editor/Properties/AssemblyInfo.cs create mode 100644 MLAPI-Editor/TrackedObjectEditor.cs diff --git a/MLAPI-Editor/GithubAsset.cs b/MLAPI-Editor/GithubAsset.cs new file mode 100644 index 0000000..a407e74 --- /dev/null +++ b/MLAPI-Editor/GithubAsset.cs @@ -0,0 +1,8 @@ +using System; + +[Serializable] +public class GithubAsset +{ + public string browser_download_url; + public string name; +} diff --git a/MLAPI-Editor/GithubRelease.cs b/MLAPI-Editor/GithubRelease.cs new file mode 100644 index 0000000..fc5fe0a --- /dev/null +++ b/MLAPI-Editor/GithubRelease.cs @@ -0,0 +1,13 @@ +using System; + +[Serializable] +public class GithubRelease +{ + public string html_url; + public string tag_name; + public string name; + public string body; + public string published_at; + public bool prerelease; + public GithubAsset[] assets; +} diff --git a/MLAPI-Editor/JSONStructs/GithubAsset.cs b/MLAPI-Editor/JSONStructs/GithubAsset.cs new file mode 100644 index 0000000..a407e74 --- /dev/null +++ b/MLAPI-Editor/JSONStructs/GithubAsset.cs @@ -0,0 +1,8 @@ +using System; + +[Serializable] +public class GithubAsset +{ + public string browser_download_url; + public string name; +} diff --git a/MLAPI-Editor/JSONStructs/GithubRelease.cs b/MLAPI-Editor/JSONStructs/GithubRelease.cs new file mode 100644 index 0000000..fc5fe0a --- /dev/null +++ b/MLAPI-Editor/JSONStructs/GithubRelease.cs @@ -0,0 +1,13 @@ +using System; + +[Serializable] +public class GithubRelease +{ + public string html_url; + public string tag_name; + public string name; + public string body; + public string published_at; + public bool prerelease; + public GithubAsset[] assets; +} diff --git a/MLAPI-Editor/MLAPI-Editor.csproj b/MLAPI-Editor/MLAPI-Editor.csproj new file mode 100644 index 0000000..df4bf2e --- /dev/null +++ b/MLAPI-Editor/MLAPI-Editor.csproj @@ -0,0 +1,66 @@ + + + + + Debug + AnyCPU + {A45DBD43-D640-4562-9F24-6745269CEDF7} + Library + Properties + MLAPI_Editor + MLAPI-Editor + v4.6.1 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + ..\..\..\..\..\Program Files\Unity\Editor\Data\Managed\UnityEditor.dll + + + ..\..\..\..\..\Program Files\Unity\Editor\Data\Managed\UnityEngine.dll + + + + + + + + + + + + + + + + {EE431720-A9ED-43DC-9E74-10B693816D38} + MLAPI + + + + \ No newline at end of file diff --git a/MLAPI-Editor/MLAPIEditor.cs b/MLAPI-Editor/MLAPIEditor.cs new file mode 100644 index 0000000..ff0ab69 --- /dev/null +++ b/MLAPI-Editor/MLAPIEditor.cs @@ -0,0 +1,173 @@ +using System; +using System.Collections.Generic; +using System.IO; +using UnityEditor; +using UnityEngine; + +public class MLAPIEditor : EditorWindow +{ + private GithubRelease[] releases = new GithubRelease[0]; + private bool[] foldoutStatus = new bool[0]; + private long lastUpdated = 0; + private string currentVersion; + + [MenuItem("Window/MLAPI")] + public static void ShowWindow() + { + GetWindow(); + } + + private void Init() + { + lastUpdated = 0; + + if (EditorPrefs.HasKey("MLAPI_version")) + currentVersion = EditorPrefs.GetString("MLAPI_version"); + else + currentVersion = "None"; + } + + private void Awake() + { + Init(); + } + + private void OnFocus() + { + Init(); + } + + private void OnGUI() + { + if(foldoutStatus != null) + { + for (int i = 0; i < foldoutStatus.Length; i++) + { + if (releases[i] == null) + continue; + foldoutStatus[i] = EditorGUILayout.Foldout(foldoutStatus[i], releases[i].tag_name + " - " + releases[i].name); + if (foldoutStatus[i]) + { + EditorGUI.indentLevel++; + EditorGUILayout.LabelField("Release notes", EditorStyles.boldLabel); + EditorGUILayout.LabelField(releases[i].body, EditorStyles.wordWrappedLabel); + EditorGUILayout.Space(); + EditorGUILayout.Space(); + if (releases[i].prerelease) + { + GUIStyle style = new GUIStyle(EditorStyles.boldLabel); + style.normal.textColor = new Color(1f, 0.5f, 0f); + EditorGUILayout.LabelField("Pre-release", style); + } + else + { + GUIStyle style = new GUIStyle(EditorStyles.boldLabel); + style.normal.textColor = new Color(0f, 1f, 0f); + EditorGUILayout.LabelField("Stable-release", style); + } + if (currentVersion == releases[i].tag_name) + { + GUIStyle boldStyle = new GUIStyle(EditorStyles.boldLabel); + boldStyle.normal.textColor = new Color(0.3f, 1f, 0.3f); + EditorGUILayout.LabelField("Installed", boldStyle); + } + EditorGUILayout.LabelField("Release date: " + DateTime.Parse(DateTime.Parse(releases[i].published_at).ToString()), EditorStyles.miniBoldLabel); + + if(currentVersion != releases[i].tag_name && GUILayout.Button("Install")) + InstallRelease(i); + + EditorGUI.indentLevel--; + } + } + } + + GUILayout.BeginArea(new Rect(5, position.height - 20, position.width, 20)); + + if (GUILayout.Button("Check for updates")) + GetReleases(); + + GUILayout.EndArea(); + + string lastUpdatedString = lastUpdated == 0 ? "Never" : new DateTime(lastUpdated).ToShortTimeString(); + EditorGUI.LabelField(new Rect(5, position.height - 40, position.width, 20), "Last checked: " + lastUpdatedString, EditorStyles.centeredGreyMiniLabel); + + if ((DateTime.Now - new DateTime(lastUpdated)).Seconds > 3600) + GetReleases(); + + Repaint(); + } + + private void InstallRelease(int index) + { + for (int i = 0; i < releases[index].assets.Length; i++) + { + WWW www = new WWW(releases[index].assets[i].browser_download_url); + while (!www.isDone && string.IsNullOrEmpty(www.error)) + { + EditorGUI.ProgressBar(new Rect(5, position.height - 60, position.width, 20), www.progress, "Installing " + i + "/" + releases[index].assets.Length); + } + + if(!Directory.Exists(Application.dataPath + "/MLAPI/Lib/")) + Directory.CreateDirectory(Application.dataPath + "/MLAPI/Lib/"); + + File.WriteAllBytes(Application.dataPath + "/MLAPI/Lib/" + releases[index].assets[i].name, www.bytes); + + if (releases[index].assets[i].name.EndsWith(".unitypackage")) + AssetDatabase.ImportPackage(Application.dataPath + "/MLAPI/Lib/" + releases[index].assets[i].name, true); + } + + EditorPrefs.SetString("MLAPI_version", releases[index].tag_name); + currentVersion = releases[index].tag_name; + AssetDatabase.Refresh(); + } + + private void GetReleases() + { + lastUpdated = DateTime.Now.Ticks; + + WWW www = new WWW("https://api.github.com/repos/TwoTenPvP/MLAPI/releases"); + while(!www.isDone && string.IsNullOrEmpty(www.error)) + { + EditorGUI.ProgressBar(new Rect(5, position.height - 60, position.width, 20), www.progress, "Fetching..."); + } + string json = www.text; + + //This makes it from a json array to the individual objects in the array. + //The JSON serializer cant take arrays. We have to split it up outselves. + List releasesJson = new List(); + int depth = 0; + string currentObject = ""; + for (int i = 1; i < json.Length - 1; i++) + { + if (json[i] == '[') + depth++; + else if (json[i] == ']') + depth--; + else if (json[i] == '{') + depth++; + else if (json[i] == '}') + depth--; + + if ((depth == 0 && json[i] != ',') || depth > 0) + currentObject += json[i]; + + if (depth == 0 && json[i] == ',') + { + releasesJson.Add(currentObject); + currentObject = ""; + } + } + + releases = new GithubRelease[releasesJson.Count]; + foldoutStatus = new bool[releasesJson.Count]; + + for (int i = 0; i < releasesJson.Count; i++) + { + releases[i] = JsonUtility.FromJson(releasesJson[i]); + if (i == 0) + foldoutStatus[i] = true; + else + foldoutStatus[i] = false; + } + } +} diff --git a/MLAPI-Editor/NetworkedAnimatorEditor.cs b/MLAPI-Editor/NetworkedAnimatorEditor.cs new file mode 100644 index 0000000..bbe7f04 --- /dev/null +++ b/MLAPI-Editor/NetworkedAnimatorEditor.cs @@ -0,0 +1,97 @@ +using MLAPI.MonoBehaviours.Prototyping; +using System; +using UnityEditor.Animations; +using UnityEngine; + +namespace UnityEditor +{ + [CustomEditor(typeof(NetworkedAnimator), true)] + [CanEditMultipleObjects] + public class NetworkAnimatorEditor : Editor + { + private NetworkedAnimator networkedAnimatorTarget; + [NonSerialized] + private bool initialized; + + private SerializedProperty animatorProperty; + private GUIContent animatorLabel; + + void Init() + { + if (initialized) + return; + + initialized = true; + networkedAnimatorTarget = target as NetworkedAnimator; + + animatorProperty = serializedObject.FindProperty("_animator"); + animatorLabel = new GUIContent("Animator", "The Animator component to synchronize."); + } + + public override void OnInspectorGUI() + { + Init(); + serializedObject.Update(); + DrawControls(); + serializedObject.ApplyModifiedProperties(); + } + + void DrawControls() + { + EditorGUI.BeginChangeCheck(); + EditorGUILayout.PropertyField(animatorProperty, animatorLabel); + + if (EditorGUI.EndChangeCheck()) + networkedAnimatorTarget.ResetParameterOptions(); + + if (networkedAnimatorTarget.animator == null) + return; + + var controller = networkedAnimatorTarget.animator.runtimeAnimatorController as AnimatorController; + if (controller != null) + { + var showWarning = false; + EditorGUI.indentLevel += 1; + int i = 0; + + foreach (var p in controller.parameters) + { + if (i >= 32) + { + showWarning = true; + break; + } + + bool oldSend = networkedAnimatorTarget.GetParameterAutoSend(i); + bool send = EditorGUILayout.Toggle(p.name, oldSend); + if (send != oldSend) + { + networkedAnimatorTarget.SetParameterAutoSend(i, send); + EditorUtility.SetDirty(target); + } + i += 1; + } + + if (showWarning) + EditorGUILayout.HelpBox("NetworkAnimator can only select between the first 32 parameters in a mecanim controller", MessageType.Warning); + + EditorGUI.indentLevel -= 1; + } + + if (Application.isPlaying) + { + EditorGUILayout.Separator(); + if (networkedAnimatorTarget.param0 != "") + EditorGUILayout.LabelField("Param 0", networkedAnimatorTarget.param0); + if (networkedAnimatorTarget.param1 != "") + EditorGUILayout.LabelField("Param 1", networkedAnimatorTarget.param1); + if (networkedAnimatorTarget.param2 != "") + EditorGUILayout.LabelField("Param 2", networkedAnimatorTarget.param2); + if (networkedAnimatorTarget.param3 != "") + EditorGUILayout.LabelField("Param 3", networkedAnimatorTarget.param3); + if (networkedAnimatorTarget.param4 != "") + EditorGUILayout.LabelField("Param 4", networkedAnimatorTarget.param4); + } + } + } +} diff --git a/MLAPI-Editor/NetworkedBehaviourEditor.cs b/MLAPI-Editor/NetworkedBehaviourEditor.cs new file mode 100644 index 0000000..c72ccec --- /dev/null +++ b/MLAPI-Editor/NetworkedBehaviourEditor.cs @@ -0,0 +1,84 @@ +using MLAPI.Attributes; +using MLAPI.MonoBehaviours.Core; +using System; +using System.Collections.Generic; +using System.Reflection; +using UnityEngine; + +namespace UnityEditor +{ + [CustomEditor(typeof(NetworkedBehaviour), true)] + [CanEditMultipleObjects] + public class NetworkedBehaviourInspector : Editor + { + private bool initialized; + protected List syncedVarNames = new List(); + + private GUIContent syncedVarLabelGuiContent; + + private void Init(MonoScript script) + { + initialized = true; + + syncedVarLabelGuiContent = new GUIContent("SyncedVar", "This variable has been marked with the [SyncedVar] attribute."); + + FieldInfo[] fields = script.GetClass().GetFields(BindingFlags.Public | BindingFlags.Instance | BindingFlags.FlattenHierarchy | BindingFlags.NonPublic); + for (int i = 0; i < fields.Length; i++) + { + Attribute[] attributes = (Attribute[])fields[i].GetCustomAttributes(typeof(SyncedVar), true); + if (attributes.Length > 0) + syncedVarNames.Add(fields[i].Name); + } + } + + public override void OnInspectorGUI() + { + if (!initialized) + { + serializedObject.Update(); + SerializedProperty scriptProperty = serializedObject.FindProperty("m_Script"); + if (scriptProperty == null) + return; + + MonoScript targetScript = scriptProperty.objectReferenceValue as MonoScript; + Init(targetScript); + } + + EditorGUI.BeginChangeCheck(); + serializedObject.Update(); + + SerializedProperty property = serializedObject.GetIterator(); + bool expanded = true; + while (property.NextVisible(expanded)) + { + bool isSyncVar = syncedVarNames.Contains(property.name); + if (property.propertyType == SerializedPropertyType.ObjectReference) + { + if (property.name == "m_Script") + EditorGUI.BeginDisabledGroup(true); + + EditorGUILayout.PropertyField(property, true); + + if (isSyncVar) + GUILayout.Label(syncedVarLabelGuiContent, EditorStyles.miniLabel, GUILayout.Width(EditorStyles.miniLabel.CalcSize(syncedVarLabelGuiContent).x)); + + if (property.name == "m_Script") + EditorGUI.EndDisabledGroup(); + } + else + { + EditorGUILayout.BeginHorizontal(); + EditorGUILayout.PropertyField(property, true); + + if (isSyncVar) + GUILayout.Label(syncedVarLabelGuiContent, EditorStyles.miniLabel, GUILayout.Width(EditorStyles.miniLabel.CalcSize(syncedVarLabelGuiContent).x)); + + EditorGUILayout.EndHorizontal(); + } + expanded = false; + } + serializedObject.ApplyModifiedProperties(); + EditorGUI.EndChangeCheck(); + } + } +} diff --git a/MLAPI-Editor/NetworkedObjectEditor.cs b/MLAPI-Editor/NetworkedObjectEditor.cs new file mode 100644 index 0000000..65ae98b --- /dev/null +++ b/MLAPI-Editor/NetworkedObjectEditor.cs @@ -0,0 +1,51 @@ +using MLAPI.MonoBehaviours.Core; +using UnityEngine; + +namespace UnityEditor +{ + [CustomEditor(typeof(NetworkedObject), true)] + [CanEditMultipleObjects] + public class NetworkedObjectEditor : Editor + { + private bool initialized; + private NetworkedObject networkedObject; + + private void Init() + { + if (initialized) + return; + initialized = true; + networkedObject = (NetworkedObject)target; + } + + public override void OnInspectorGUI() + { + Init(); + if (NetworkingManager.singleton == null || (!NetworkingManager.singleton.isServer && !NetworkingManager.singleton.isClient)) + base.OnInspectorGUI(); //Only run this if we are NOT running server. This is where the ServerOnly box is drawn + + if (!networkedObject.isSpawned && NetworkingManager.singleton != null && NetworkingManager.singleton.isServer) + { + EditorGUILayout.BeginHorizontal(); + EditorGUILayout.LabelField(new GUIContent("Spawn", "Spawns the object across the network")); + if (GUILayout.Toggle(false, "Spawn", EditorStyles.miniButtonLeft)) + { + networkedObject.Spawn(); + EditorUtility.SetDirty(target); + } + EditorGUILayout.EndHorizontal(); + } + else if(networkedObject.isSpawned) + { + EditorGUILayout.LabelField("NetworkId: ", networkedObject.NetworkId.ToString(), EditorStyles.label); + EditorGUILayout.LabelField("OwnerId: ", networkedObject.OwnerClientId.ToString(), EditorStyles.label); + EditorGUILayout.LabelField("isSpawned: ", networkedObject.isSpawned.ToString(), EditorStyles.label); + EditorGUILayout.LabelField("isLocalPlayer: ", networkedObject.isLocalPlayer.ToString(), EditorStyles.label); + EditorGUILayout.LabelField("isOwner: ", networkedObject.isOwner.ToString(), EditorStyles.label); + EditorGUILayout.LabelField("isPoolObject: ", networkedObject.isPlayerObject.ToString(), EditorStyles.label); + EditorGUILayout.LabelField("isPlayerObject: ", networkedObject.isPlayerObject.ToString(), EditorStyles.label); + //EditorGUILayout.LabelField("ServerOnly: ", networkedObject.ServerOnly.ToString(), EditorStyles.label); + } + } + } +} diff --git a/MLAPI-Editor/NetworkingManagerEditor.cs b/MLAPI-Editor/NetworkingManagerEditor.cs new file mode 100644 index 0000000..5fcf807 --- /dev/null +++ b/MLAPI-Editor/NetworkingManagerEditor.cs @@ -0,0 +1,75 @@ +using MLAPI.MonoBehaviours.Core; +using UnityEditor; +using UnityEngine; +using UnityEditorInternal; + +[CustomEditor(typeof(NetworkingManager), true)] +[CanEditMultipleObjects] +public class NetworkingManagerEditor : Editor +{ + private ReorderableList networkedObjectList; + + private NetworkingManager networkingManager; + private bool initialized; + + private void Init() + { + if (initialized) + return; + initialized = true; + networkingManager = (NetworkingManager)target; + } + + private void OnEnable() + { + networkedObjectList = new ReorderableList(serializedObject, serializedObject.FindProperty("NetworkConfig").FindPropertyRelative("NetworkedPrefabs"), true, true, true, true); + networkedObjectList.drawElementCallback = (Rect rect, int index, bool isActive, bool isFocused) => + { + var element = networkedObjectList.serializedProperty.GetArrayElementAtIndex(index); + rect.y += 2; + EditorGUI.PropertyField(new Rect(rect.x, rect.y, rect.width - 30, EditorGUIUtility.singleLineHeight), + element.FindPropertyRelative("prefab"), GUIContent.none); + EditorGUI.PropertyField(new Rect(rect.x + rect.width - 30, rect.y, 30, EditorGUIUtility.singleLineHeight), + element.FindPropertyRelative("playerPrefab"), GUIContent.none); + }; + + networkedObjectList.drawHeaderCallback = (Rect rect) => { + EditorGUI.LabelField(rect, "Networked Prefabs"); + }; + } + + public override void OnInspectorGUI() + { + Init(); + if (!networkingManager.isServer && !networkingManager.isClient) + { + EditorGUILayout.Space(); + serializedObject.Update(); + networkedObjectList.DoLayoutList(); + serializedObject.ApplyModifiedProperties(); + base.OnInspectorGUI(); //Only draw if we don't have a running client or server + } + else + { + string instanceType = ""; + if (networkingManager.isHost) + instanceType = "Host"; + else if (networkingManager.isServer) + instanceType = "Server"; + else if (networkingManager.isClient) + instanceType = "Client"; + + EditorGUILayout.HelpBox("You cannot edit the NetworkConfig when a " + instanceType + " is running", MessageType.Info); + if (GUILayout.Toggle(false, "Stop " + instanceType, EditorStyles.miniButtonMid)) + { + if (networkingManager.isHost) + networkingManager.StopHost(); + else if (networkingManager.isServer) + networkingManager.StopServer(); + else if (networkingManager.isClient) + networkingManager.StopClient(); + } + } + Repaint(); + } +} diff --git a/MLAPI-Editor/Properties/AssemblyInfo.cs b/MLAPI-Editor/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..225a422 --- /dev/null +++ b/MLAPI-Editor/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("MLAPI-Editor")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MLAPI-Editor")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("a45dbd43-d640-4562-9f24-6745269cedf7")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/MLAPI-Editor/TrackedObjectEditor.cs b/MLAPI-Editor/TrackedObjectEditor.cs new file mode 100644 index 0000000..ebed8b1 --- /dev/null +++ b/MLAPI-Editor/TrackedObjectEditor.cs @@ -0,0 +1,34 @@ +using MLAPI.MonoBehaviours.Core; +using UnityEngine; + +namespace UnityEditor +{ + [CustomEditor(typeof(TrackedObject), true)] + [CanEditMultipleObjects] + public class TrackedObjectEditor : Editor + { + private TrackedObject trackedObject; + private bool initialized; + + private void Init() + { + if (initialized) + return; + + trackedObject = (TrackedObject)target; + initialized = true; + } + + public override void OnInspectorGUI() + { + Init(); + base.OnInspectorGUI(); + if(NetworkingManager.singleton != null && NetworkingManager.singleton.isServer) + { + EditorGUILayout.LabelField("Total points: ", trackedObject.TotalPoints.ToString(), EditorStyles.label); + EditorGUILayout.LabelField("Avg time between points: ", trackedObject.AvgTimeBetweenPointsMs.ToString() + " ms", EditorStyles.label); + } + Repaint(); + } + } +} diff --git a/MLAPI.sln b/MLAPI.sln index ba2e831..53a018d 100644 --- a/MLAPI.sln +++ b/MLAPI.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 15.0.27130.2027 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MLAPI", "MLAPI\MLAPI.csproj", "{EE431720-A9ED-43DC-9E74-10B693816D38}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MLAPI-Editor", "MLAPI-Editor\MLAPI-Editor.csproj", "{A45DBD43-D640-4562-9F24-6745269CEDF7}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -18,6 +20,12 @@ Global {EE431720-A9ED-43DC-9E74-10B693816D38}.Development|Any CPU.Build.0 = Development|Any CPU {EE431720-A9ED-43DC-9E74-10B693816D38}.Release|Any CPU.ActiveCfg = Release|Any CPU {EE431720-A9ED-43DC-9E74-10B693816D38}.Release|Any CPU.Build.0 = Release|Any CPU + {A45DBD43-D640-4562-9F24-6745269CEDF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A45DBD43-D640-4562-9F24-6745269CEDF7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A45DBD43-D640-4562-9F24-6745269CEDF7}.Development|Any CPU.ActiveCfg = Debug|Any CPU + {A45DBD43-D640-4562-9F24-6745269CEDF7}.Development|Any CPU.Build.0 = Debug|Any CPU + {A45DBD43-D640-4562-9F24-6745269CEDF7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A45DBD43-D640-4562-9F24-6745269CEDF7}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/MLAPI/Data/NetworkConfig.cs b/MLAPI/Data/NetworkConfig.cs index c49b806..5c9bf3d 100644 --- a/MLAPI/Data/NetworkConfig.cs +++ b/MLAPI/Data/NetworkConfig.cs @@ -50,13 +50,16 @@ namespace MLAPI.Data /// /// A list of spawnable prefabs /// + [HideInInspector] public List NetworkedPrefabs = new List(); internal Dictionary NetworkPrefabIds; internal Dictionary NetworkPrefabNames; /// /// The default player prefab /// - public string PlayerPrefabName; + [SerializeField] + [HideInInspector] + internal string PlayerPrefabName; /// /// The size of the receive message buffer. This is the max message size. /// @@ -100,6 +103,7 @@ namespace MLAPI.Data /// /// The data to send during connection which can be used to decide on if a client should get accepted /// + [HideInInspector] public byte[] ConnectionData = new byte[0]; /// /// The amount of seconds to keep a lag compensation position history diff --git a/MLAPI/Data/NetworkedPrefab.cs b/MLAPI/Data/NetworkedPrefab.cs index 9354827..e8d9eef 100644 --- a/MLAPI/Data/NetworkedPrefab.cs +++ b/MLAPI/Data/NetworkedPrefab.cs @@ -1,4 +1,5 @@ -using System; +using MLAPI.MonoBehaviours.Core; +using System; using UnityEngine; namespace MLAPI.Data @@ -9,13 +10,18 @@ namespace MLAPI.Data [Serializable] public class NetworkedPrefab { - /// - /// The name of the networked prefab - /// - public string name; + internal string name + { + get + { + return prefab.GetComponent().NetworkedPrefabName; + } + } /// /// The gameobject of the prefab /// public GameObject prefab; + + public bool playerPrefab; } } diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index d07274e..8d8c465 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -173,34 +173,21 @@ namespace MLAPI.MonoBehaviours.Core { if (string.IsNullOrEmpty(NetworkConfig.NetworkedPrefabs[i].name)) { - Debug.LogWarning("MLAPI: The NetworkedPrefab " + NetworkConfig.NetworkedPrefabs[i].prefab.name + " does not have a NetworkedPrefabName. It has been set to the gameObject name"); - NetworkConfig.NetworkedPrefabs[i].name = NetworkConfig.NetworkedPrefabs[i].prefab.name; + Debug.LogWarning("MLAPI: The NetworkedPrefab " + NetworkConfig.NetworkedPrefabs[i].prefab.name + " does not have a NetworkedPrefabName."); } } - } - - if (NetworkConfig.HandleObjectSpawning) - { - if(!string.IsNullOrEmpty(NetworkConfig.PlayerPrefabName)) + int playerPrefabCount = NetworkConfig.NetworkedPrefabs.Count(x => x.playerPrefab == true); + if (playerPrefabCount == 0) { - //Handle spawning is on and a prefabName is set - GameObject playerPrefab = null; - for (int i = 0; i < NetworkConfig.NetworkedPrefabs.Count; i++) - { - if (NetworkConfig.NetworkedPrefabs[i].name == NetworkConfig.PlayerPrefabName) - { - playerPrefab = NetworkConfig.NetworkedPrefabs[i].prefab; - break; - } - } - if (playerPrefab == null) - Debug.LogWarning("MLAPI: There is no NetworkedPrefab with the name specified in the PlayerPrefabName"); + Debug.LogWarning("MLAPI: There is no NetworkedPrefab marked as a PlayerPrefab"); + } + else if (playerPrefabCount > 1) + { + Debug.LogWarning("MLAPI: Only one networked prefab can be marked as a player prefab"); } else - { - //Handle spawning but no prefabName is set - Debug.LogWarning("MLAPI: There is no PlayerPrefabName set."); - } + NetworkConfig.PlayerPrefabName = NetworkConfig.NetworkedPrefabs.Find(x => x.playerPrefab == true).name; + } if (!NetworkConfig.EnableEncryption) From c10e79a5e3ecf2a7b74b4ec13fcc6747355023fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 17:03:27 +0200 Subject: [PATCH 12/47] Added missing XML doc --- MLAPI/Data/NetworkedPrefab.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MLAPI/Data/NetworkedPrefab.cs b/MLAPI/Data/NetworkedPrefab.cs index e8d9eef..1ec5a91 100644 --- a/MLAPI/Data/NetworkedPrefab.cs +++ b/MLAPI/Data/NetworkedPrefab.cs @@ -21,7 +21,9 @@ namespace MLAPI.Data /// The gameobject of the prefab /// public GameObject prefab; - + /// + /// Wheter or not this is a playerPrefab + /// public bool playerPrefab; } } From 25a3abdde151fe6565a34db3b334a0cbc5777260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 17:06:05 +0200 Subject: [PATCH 13/47] Added temp protocol docs & update API reference to 1.0 --- Protocol.md | 216 ++++++++++++++ docs/WebKI.xml | 238 ++++++++++----- docs/WebTOC.xml | 278 +++++++++++------- docs/fti/FTI_100.json | 2 +- docs/fti/FTI_101.json | 2 +- docs/fti/FTI_102.json | 2 +- docs/fti/FTI_103.json | 2 +- docs/fti/FTI_104.json | 2 +- docs/fti/FTI_105.json | 2 +- docs/fti/FTI_107.json | 2 +- docs/fti/FTI_108.json | 2 +- docs/fti/FTI_109.json | 2 +- docs/fti/FTI_110.json | 2 +- docs/fti/FTI_111.json | 2 +- docs/fti/FTI_112.json | 2 +- docs/fti/FTI_113.json | 2 +- docs/fti/FTI_114.json | 2 +- docs/fti/FTI_115.json | 2 +- docs/fti/FTI_116.json | 2 +- docs/fti/FTI_117.json | 2 +- docs/fti/FTI_118.json | 2 +- docs/fti/FTI_119.json | 2 +- docs/fti/FTI_120.json | 2 +- docs/fti/FTI_97.json | 2 +- docs/fti/FTI_98.json | 2 +- docs/fti/FTI_99.json | 2 +- docs/fti/FTI_Files.json | 2 +- docs/html/F_MLAPI_Data_Channel_Encrypted.htm | 21 ++ docs/html/F_MLAPI_Data_Channel_Name.htm | 21 ++ docs/html/F_MLAPI_Data_Channel_Type.htm | 21 ++ docs/html/F_MLAPI_Data_MessageType_Name.htm | 21 ++ .../F_MLAPI_Data_MessageType_Passthrough.htm | 21 ++ docs/html/F_MLAPI_Data_NetId_ConnectionId.htm | 21 ++ docs/html/F_MLAPI_Data_NetId_HostId.htm | 21 ++ docs/html/F_MLAPI_Data_NetId_Meta.htm | 21 ++ ...NetworkConfig_AllowPassthroughMessages.htm | 21 ++ .../F_MLAPI_Data_NetworkConfig_Channels.htm | 21 ++ ...rkConfig_ClientConnectionBufferTimeout.htm | 21 ++ ...LAPI_Data_NetworkConfig_ConnectAddress.htm | 21 ++ ...F_MLAPI_Data_NetworkConfig_ConnectPort.htm | 21 ++ ..._Data_NetworkConfig_ConnectionApproval.htm | 21 ++ ...LAPI_Data_NetworkConfig_ConnectionData.htm | 21 ++ ...PI_Data_NetworkConfig_EnableEncryption.htm | 21 ++ ...ata_NetworkConfig_EnableSceneSwitching.htm | 21 ++ ...PI_Data_NetworkConfig_EnableTimeResync.htm | 21 ++ ...MLAPI_Data_NetworkConfig_EventTickrate.htm | 21 ++ ...ata_NetworkConfig_HandleObjectSpawning.htm | 21 ++ ...LAPI_Data_NetworkConfig_MaxConnections.htm | 21 ++ ...workConfig_MaxReceiveEventsPerTickRate.htm | 21 ++ ...I_Data_NetworkConfig_MessageBufferSize.htm | 21 ++ ..._MLAPI_Data_NetworkConfig_MessageTypes.htm | 21 ++ ...PI_Data_NetworkConfig_NetworkedPrefabs.htm | 21 ++ ...API_Data_NetworkConfig_ProtocolVersion.htm | 21 ++ ...MLAPI_Data_NetworkConfig_RSAPrivateKey.htm | 21 ++ ..._MLAPI_Data_NetworkConfig_RSAPublicKey.htm | 21 ++ ...API_Data_NetworkConfig_ReceiveTickrate.htm | 21 ++ ...PI_Data_NetworkConfig_RegisteredScenes.htm | 21 ++ ...LAPI_Data_NetworkConfig_SecondsHistory.htm | 21 ++ ..._MLAPI_Data_NetworkConfig_SendTickrate.htm | 21 ++ ...PI_Data_NetworkConfig_ServerTransports.htm | 21 ++ ...API_Data_NetworkConfig_SignKeyExchange.htm | 21 ++ .../F_MLAPI_Data_NetworkedClient_ClientId.htm | 4 +- ...LAPI_Data_NetworkedPrefab_playerPrefab.htm | 21 ++ .../F_MLAPI_Data_NetworkedPrefab_prefab.htm | 21 ++ ...I_Data_NetworkingConfiguration_Address.htm | 21 -- ...Configuration_AllowPassthroughMessages.htm | 21 -- ..._Data_NetworkingConfiguration_Channels.htm | 21 -- ...guration_ClientConnectionBufferTimeout.htm | 21 -- ...orkingConfiguration_ConnectionApproval.htm | 21 -- ...nfiguration_ConnectionApprovalCallback.htm | 21 -- ...NetworkingConfiguration_ConnectionData.htm | 21 -- ...tworkingConfiguration_EnableEncryption.htm | 21 -- ...kingConfiguration_EnableSceneSwitching.htm | 21 -- ...workingConfiguration_EncryptedChannels.htm | 21 -- ..._NetworkingConfiguration_EventTickrate.htm | 21 -- ...kingConfiguration_HandleObjectSpawning.htm | 21 -- ...NetworkingConfiguration_MaxConnections.htm | 21 -- ...figuration_MaxReceiveEventsPerTickRate.htm | 21 -- ...workingConfiguration_MessageBufferSize.htm | 21 -- ...a_NetworkingConfiguration_MessageTypes.htm | 21 -- ...gConfiguration_PassthroughMessageTypes.htm | 21 -- ...LAPI_Data_NetworkingConfiguration_Port.htm | 21 -- ...etworkingConfiguration_ProtocolVersion.htm | 21 -- ..._NetworkingConfiguration_RSAPrivateKey.htm | 21 -- ...a_NetworkingConfiguration_RSAPublicKey.htm | 21 -- ...etworkingConfiguration_ReceiveTickrate.htm | 21 -- ...tworkingConfiguration_RegisteredScenes.htm | 21 -- ...NetworkingConfiguration_SecondsHistory.htm | 21 -- ...a_NetworkingConfiguration_SendTickrate.htm | 21 -- ...etworkingConfiguration_SignKeyExchange.htm | 21 -- docs/html/F_MLAPI_Data_TransportHost_Name.htm | 21 ++ docs/html/F_MLAPI_Data_TransportHost_Port.htm | 21 ++ .../F_MLAPI_Data_TransportHost_Websockets.htm | 21 ++ ...re_NetworkedObject_NetworkedPrefabName.htm | 21 ++ ...viours_Core_NetworkedObject_ServerOnly.htm | 21 -- ...kingManager_ConnectionApprovalCallback.htm | 21 ++ ..._NetworkingManager_DefaultPlayerPrefab.htm | 21 -- ...urs_Core_NetworkingManager_DontDestroy.htm | 2 +- ...s_Core_NetworkingManager_NetworkConfig.htm | 6 +- ...rkingManager_OnClientConnectedCallback.htm | 6 +- ...kingManager_OnClientDisconnectCallback.htm | 6 +- ...Core_NetworkingManager_OnServerStarted.htm | 2 +- ...re_NetworkingManager_RegenerateRSAKeys.htm | 21 ++ ...Core_NetworkingManager_RunInBackground.htm | 2 +- ...ore_NetworkingManager_SpawnablePrefabs.htm | 21 -- docs/html/Fields_T_MLAPI_Data_Channel.htm | 9 + docs/html/Fields_T_MLAPI_Data_MessageType.htm | 7 + docs/html/Fields_T_MLAPI_Data_NetId.htm | 9 + .../Fields_T_MLAPI_Data_NetworkConfig.htm | 55 ++++ .../Fields_T_MLAPI_Data_NetworkedPrefab.htm | 7 + ...s_T_MLAPI_Data_NetworkingConfiguration.htm | 55 ---- .../Fields_T_MLAPI_Data_TransportHost.htm | 9 + ...PI_MonoBehaviours_Core_NetworkedObject.htm | 6 +- ..._MonoBehaviours_Core_NetworkingManager.htm | 10 +- docs/html/M_MLAPI_Data_Channel__ctor.htm | 19 ++ docs/html/M_MLAPI_Data_MessageType__ctor.htm | 19 ++ docs/html/M_MLAPI_Data_NetId_Equals.htm | 24 ++ docs/html/M_MLAPI_Data_NetId_GetClientId.htm | 21 ++ docs/html/M_MLAPI_Data_NetId_GetHashCode.htm | 22 ++ docs/html/M_MLAPI_Data_NetId_IsHost.htm | 21 ++ docs/html/M_MLAPI_Data_NetId_IsInvalid.htm | 21 ++ docs/html/M_MLAPI_Data_NetId__ctor.htm | 26 ++ docs/html/M_MLAPI_Data_NetId__ctor_1.htm | 23 ++ docs/html/M_MLAPI_Data_NetId_op_Equality.htm | 24 ++ .../html/M_MLAPI_Data_NetId_op_Inequality.htm | 24 ++ ...MLAPI_Data_NetworkConfig_CompareConfig.htm | 23 ++ .../M_MLAPI_Data_NetworkConfig_GetConfig.htm | 23 ++ .../html/M_MLAPI_Data_NetworkConfig__ctor.htm | 19 ++ .../M_MLAPI_Data_NetworkedPrefab__ctor.htm | 19 ++ ..._NetworkingConfiguration_CompareConfig.htm | 23 -- ...Data_NetworkingConfiguration_GetConfig.htm | 23 -- ...API_Data_NetworkingConfiguration__ctor.htm | 19 -- .../html/M_MLAPI_Data_TransportHost__ctor.htm | 19 ++ ..._NetworkedBehaviour_GetNetworkedObject.htm | 2 +- ...workedBehaviour_RegisterMessageHandler.htm | 6 +- ...s_Core_NetworkedBehaviour_SendToClient.htm | 6 +- ..._NetworkedBehaviour_SendToClientTarget.htm | 6 +- ...tworkedBehaviour_SendToClientTarget__1.htm | 4 +- ...ore_NetworkedBehaviour_SendToClient__1.htm | 4 +- ..._Core_NetworkedBehaviour_SendToClients.htm | 6 +- ...NetworkedBehaviour_SendToClientsTarget.htm | 6 +- ...tworkedBehaviour_SendToClientsTarget_1.htm | 7 +- ...tworkedBehaviour_SendToClientsTarget_2.htm | 7 +- ...workedBehaviour_SendToClientsTarget__1.htm | 6 +- ...rkedBehaviour_SendToClientsTarget__1_1.htm | 4 +- ...rkedBehaviour_SendToClientsTarget__1_2.htm | 4 +- ...ore_NetworkedBehaviour_SendToClients_1.htm | 7 +- ...ore_NetworkedBehaviour_SendToClients_2.htm | 7 +- ...re_NetworkedBehaviour_SendToClients__1.htm | 4 +- ..._NetworkedBehaviour_SendToClients__1_1.htm | 4 +- ..._NetworkedBehaviour_SendToClients__1_2.htm | 4 +- ...e_NetworkedBehaviour_SendToLocalClient.htm | 2 +- ...orkedBehaviour_SendToLocalClientTarget.htm | 2 +- ...edBehaviour_SendToLocalClientTarget__1.htm | 2 +- ...etworkedBehaviour_SendToLocalClient__1.htm | 2 +- ...tworkedBehaviour_SendToNonLocalClients.htm | 2 +- ...dBehaviour_SendToNonLocalClientsTarget.htm | 2 +- ...haviour_SendToNonLocalClientsTarget__1.htm | 2 +- ...rkedBehaviour_SendToNonLocalClients__1.htm | 2 +- ...s_Core_NetworkedBehaviour_SendToServer.htm | 2 +- ..._NetworkedBehaviour_SendToServerTarget.htm | 2 +- ...tworkedBehaviour_SendToServerTarget__1.htm | 2 +- ...ore_NetworkedBehaviour_SendToServer__1.htm | 2 +- ...s_Core_NetworkedObject_ChangeOwnership.htm | 6 +- ...s_Core_NetworkedObject_RemoveOwnership.htm | 2 +- ...oBehaviours_Core_NetworkedObject_Spawn.htm | 2 +- ...ore_NetworkedObject_SpawnWithOwnership.htm | 6 +- ...oBehaviours_Core_NetworkedObject__ctor.htm | 2 +- ...urs_Core_NetworkingManager_StartClient.htm | 10 +- ...NetworkingManager_StartClientWebsocket.htm | 21 ++ ...iours_Core_NetworkingManager_StartHost.htm | 9 +- ...urs_Core_NetworkingManager_StartServer.htm | 10 +- ...ours_Core_NetworkingManager_StopClient.htm | 4 +- ...viours_Core_NetworkingManager_StopHost.htm | 4 +- ...ours_Core_NetworkingManager_StopServer.htm | 4 +- ...ehaviours_Core_NetworkingManager__ctor.htm | 2 +- ...onoBehaviours_Core_TrackedObject__ctor.htm | 2 +- ...typing_NetworkedTransform_NetworkStart.htm | 2 +- ...s_Prototyping_NetworkedTransform__ctor.htm | 2 +- ...s_Core_LagCompensationManager_Simulate.htm | 8 +- ...Core_LagCompensationManager_Simulate_1.htm | 8 +- docs/html/Methods_T_MLAPI_Data_Channel.htm | 3 + .../html/Methods_T_MLAPI_Data_MessageType.htm | 3 + docs/html/Methods_T_MLAPI_Data_NetId.htm | 13 + .../Methods_T_MLAPI_Data_NetworkConfig.htm | 7 + .../Methods_T_MLAPI_Data_NetworkedPrefab.htm | 3 + ...s_T_MLAPI_Data_NetworkingConfiguration.htm | 7 - .../Methods_T_MLAPI_Data_TransportHost.htm | 3 + ...MonoBehaviours_Core_NetworkedBehaviour.htm | 18 +- ..._MonoBehaviours_Core_NetworkingManager.htm | 10 +- ...LAPI_MonoBehaviours_Core_TrackedObject.htm | 2 +- ...haviours_Prototyping_NetworkedAnimator.htm | 18 +- ...ours_Prototyping_NetworkedNavMeshAgent.htm | 18 +- ...aviours_Prototyping_NetworkedTransform.htm | 18 +- ...Components_Core_LagCompensationManager.htm | 6 +- docs/html/N_MLAPI_Data.htm | 20 +- docs/html/Operators_T_MLAPI_Data_NetId.htm | 7 + docs/html/Overload_MLAPI_Data_NetId__ctor.htm | 7 + ...s_Core_NetworkedBehaviour_SendToClient.htm | 8 +- ..._NetworkedBehaviour_SendToClientTarget.htm | 6 +- ..._Core_NetworkedBehaviour_SendToClients.htm | 14 +- ...NetworkedBehaviour_SendToClientsTarget.htm | 12 +- ...s_Core_LagCompensationManager_Simulate.htm | 8 +- docs/html/P_MLAPI_Data_NetId_ServerNetId.htm | 21 ++ ..._Core_NetworkedBehaviour_ownerClientId.htm | 4 +- ...aviours_Core_NetworkedObject_NetworkId.htm | 4 +- ...urs_Core_NetworkedObject_OwnerClientId.htm | 6 +- ...Behaviours_Core_NetworkedObject_PoolId.htm | 4 +- ...e_NetworkedObject_SpawnablePrefabIndex.htm | 21 -- ...urs_Core_NetworkedObject_isLocalPlayer.htm | 4 +- ...ehaviours_Core_NetworkedObject_isOwner.htm | 4 +- ...rs_Core_NetworkedObject_isPlayerObject.htm | 4 +- ...rs_Core_NetworkedObject_isPooledObject.htm | 4 +- ...aviours_Core_NetworkedObject_isSpawned.htm | 4 +- ...ore_NetworkingManager_ConnectedClients.htm | 4 +- ...re_NetworkingManager_IsClientConnected.htm | 2 +- ...ours_Core_NetworkingManager_MyClientId.htm | 4 +- ...urs_Core_NetworkingManager_NetworkTime.htm | 2 +- ...viours_Core_NetworkingManager_isClient.htm | 2 +- ...haviours_Core_NetworkingManager_isHost.htm | 2 +- ...viours_Core_NetworkingManager_isServer.htm | 2 +- ...iours_Core_NetworkingManager_singleton.htm | 2 +- ...e_TrackedObject_AvgTimeBetweenPointsMs.htm | 21 ++ ...aviours_Core_TrackedObject_TotalPoints.htm | 21 ++ ...gCompensationManager_SimulationObjects.htm | 2 +- docs/html/Properties_T_MLAPI_Data_NetId.htm | 5 + ...PI_MonoBehaviours_Core_NetworkedObject.htm | 6 +- ...LAPI_MonoBehaviours_Core_TrackedObject.htm | 8 +- docs/html/T_MLAPI_Data_Channel.htm | 34 +++ docs/html/T_MLAPI_Data_MessageType.htm | 32 ++ docs/html/T_MLAPI_Data_NetId.htm | 57 ++++ ...ion.htm => T_MLAPI_Data_NetworkConfig.htm} | 77 ++--- docs/html/T_MLAPI_Data_NetworkedPrefab.htm | 32 ++ docs/html/T_MLAPI_Data_TransportHost.htm | 34 +++ ...MonoBehaviours_Core_NetworkedBehaviour.htm | 18 +- ...PI_MonoBehaviours_Core_NetworkedObject.htm | 8 +- ..._MonoBehaviours_Core_NetworkingManager.htm | 16 +- ...LAPI_MonoBehaviours_Core_TrackedObject.htm | 8 +- ...haviours_Prototyping_NetworkedAnimator.htm | 18 +- ...ours_Prototyping_NetworkedNavMeshAgent.htm | 18 +- ...aviours_Prototyping_NetworkedTransform.htm | 18 +- ...Components_Core_LagCompensationManager.htm | 6 +- docs/toc/Fields_T_MLAPI_Data_Channel.xml | 1 + docs/toc/Fields_T_MLAPI_Data_MessageType.xml | 1 + docs/toc/Fields_T_MLAPI_Data_NetId.xml | 1 + .../toc/Fields_T_MLAPI_Data_NetworkConfig.xml | 1 + .../Fields_T_MLAPI_Data_NetworkedPrefab.xml | 1 + ...s_T_MLAPI_Data_NetworkingConfiguration.xml | 1 - .../toc/Fields_T_MLAPI_Data_TransportHost.xml | 1 + ...PI_MonoBehaviours_Core_NetworkedObject.xml | 2 +- ..._MonoBehaviours_Core_NetworkingManager.xml | 2 +- docs/toc/Methods_T_MLAPI_Data_NetId.xml | 1 + .../Methods_T_MLAPI_Data_NetworkConfig.xml | 1 + ...s_T_MLAPI_Data_NetworkingConfiguration.xml | 1 - ..._MonoBehaviours_Core_NetworkingManager.xml | 2 +- docs/toc/N_MLAPI_Data.xml | 2 +- docs/toc/Operators_T_MLAPI_Data_NetId.xml | 1 + docs/toc/Overload_MLAPI_Data_NetId__ctor.xml | 1 + ...s_Core_NetworkedBehaviour_SendToClient.xml | 2 +- ..._NetworkedBehaviour_SendToClientTarget.xml | 2 +- ..._Core_NetworkedBehaviour_SendToClients.xml | 2 +- ...NetworkedBehaviour_SendToClientsTarget.xml | 2 +- ...s_Core_LagCompensationManager_Simulate.xml | 2 +- docs/toc/Properties_T_MLAPI_Data_NetId.xml | 1 + ...PI_MonoBehaviours_Core_NetworkedObject.xml | 2 +- ...LAPI_MonoBehaviours_Core_TrackedObject.xml | 1 + docs/toc/T_MLAPI_Data_Channel.xml | 1 + docs/toc/T_MLAPI_Data_MessageType.xml | 1 + docs/toc/T_MLAPI_Data_NetId.xml | 1 + docs/toc/T_MLAPI_Data_NetworkConfig.xml | 1 + docs/toc/T_MLAPI_Data_NetworkedPrefab.xml | 1 + .../T_MLAPI_Data_NetworkingConfiguration.xml | 1 - docs/toc/T_MLAPI_Data_TransportHost.xml | 1 + ...LAPI_MonoBehaviours_Core_TrackedObject.xml | 2 +- 274 files changed, 2593 insertions(+), 1300 deletions(-) create mode 100644 Protocol.md create mode 100644 docs/html/F_MLAPI_Data_Channel_Encrypted.htm create mode 100644 docs/html/F_MLAPI_Data_Channel_Name.htm create mode 100644 docs/html/F_MLAPI_Data_Channel_Type.htm create mode 100644 docs/html/F_MLAPI_Data_MessageType_Name.htm create mode 100644 docs/html/F_MLAPI_Data_MessageType_Passthrough.htm create mode 100644 docs/html/F_MLAPI_Data_NetId_ConnectionId.htm create mode 100644 docs/html/F_MLAPI_Data_NetId_HostId.htm create mode 100644 docs/html/F_MLAPI_Data_NetId_Meta.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_AllowPassthroughMessages.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_Channels.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_ClientConnectionBufferTimeout.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_ConnectAddress.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_ConnectPort.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_ConnectionApproval.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_ConnectionData.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_EnableEncryption.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_EnableSceneSwitching.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_EnableTimeResync.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_EventTickrate.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_HandleObjectSpawning.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_MaxConnections.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_MaxReceiveEventsPerTickRate.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_MessageBufferSize.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_MessageTypes.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_NetworkedPrefabs.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_ProtocolVersion.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_RSAPrivateKey.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_RSAPublicKey.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_ReceiveTickrate.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_RegisteredScenes.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_SecondsHistory.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_SendTickrate.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_ServerTransports.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkConfig_SignKeyExchange.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkedPrefab_playerPrefab.htm create mode 100644 docs/html/F_MLAPI_Data_NetworkedPrefab_prefab.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_Address.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_AllowPassthroughMessages.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_Channels.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_ClientConnectionBufferTimeout.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionApproval.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionApprovalCallback.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionData.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_EnableEncryption.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_EnableSceneSwitching.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_EncryptedChannels.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_EventTickrate.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_HandleObjectSpawning.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_MaxConnections.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_MaxReceiveEventsPerTickRate.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_MessageBufferSize.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_MessageTypes.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_PassthroughMessageTypes.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_Port.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_ProtocolVersion.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_RSAPrivateKey.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_RSAPublicKey.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_ReceiveTickrate.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_RegisteredScenes.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_SecondsHistory.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_SendTickrate.htm delete mode 100644 docs/html/F_MLAPI_Data_NetworkingConfiguration_SignKeyExchange.htm create mode 100644 docs/html/F_MLAPI_Data_TransportHost_Name.htm create mode 100644 docs/html/F_MLAPI_Data_TransportHost_Port.htm create mode 100644 docs/html/F_MLAPI_Data_TransportHost_Websockets.htm create mode 100644 docs/html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkedPrefabName.htm delete mode 100644 docs/html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_ServerOnly.htm create mode 100644 docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectionApprovalCallback.htm delete mode 100644 docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DefaultPlayerPrefab.htm create mode 100644 docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RegenerateRSAKeys.htm delete mode 100644 docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_SpawnablePrefabs.htm create mode 100644 docs/html/Fields_T_MLAPI_Data_Channel.htm create mode 100644 docs/html/Fields_T_MLAPI_Data_MessageType.htm create mode 100644 docs/html/Fields_T_MLAPI_Data_NetId.htm create mode 100644 docs/html/Fields_T_MLAPI_Data_NetworkConfig.htm create mode 100644 docs/html/Fields_T_MLAPI_Data_NetworkedPrefab.htm delete mode 100644 docs/html/Fields_T_MLAPI_Data_NetworkingConfiguration.htm create mode 100644 docs/html/Fields_T_MLAPI_Data_TransportHost.htm create mode 100644 docs/html/M_MLAPI_Data_Channel__ctor.htm create mode 100644 docs/html/M_MLAPI_Data_MessageType__ctor.htm create mode 100644 docs/html/M_MLAPI_Data_NetId_Equals.htm create mode 100644 docs/html/M_MLAPI_Data_NetId_GetClientId.htm create mode 100644 docs/html/M_MLAPI_Data_NetId_GetHashCode.htm create mode 100644 docs/html/M_MLAPI_Data_NetId_IsHost.htm create mode 100644 docs/html/M_MLAPI_Data_NetId_IsInvalid.htm create mode 100644 docs/html/M_MLAPI_Data_NetId__ctor.htm create mode 100644 docs/html/M_MLAPI_Data_NetId__ctor_1.htm create mode 100644 docs/html/M_MLAPI_Data_NetId_op_Equality.htm create mode 100644 docs/html/M_MLAPI_Data_NetId_op_Inequality.htm create mode 100644 docs/html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm create mode 100644 docs/html/M_MLAPI_Data_NetworkConfig_GetConfig.htm create mode 100644 docs/html/M_MLAPI_Data_NetworkConfig__ctor.htm create mode 100644 docs/html/M_MLAPI_Data_NetworkedPrefab__ctor.htm delete mode 100644 docs/html/M_MLAPI_Data_NetworkingConfiguration_CompareConfig.htm delete mode 100644 docs/html/M_MLAPI_Data_NetworkingConfiguration_GetConfig.htm delete mode 100644 docs/html/M_MLAPI_Data_NetworkingConfiguration__ctor.htm create mode 100644 docs/html/M_MLAPI_Data_TransportHost__ctor.htm create mode 100644 docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm create mode 100644 docs/html/Methods_T_MLAPI_Data_Channel.htm create mode 100644 docs/html/Methods_T_MLAPI_Data_MessageType.htm create mode 100644 docs/html/Methods_T_MLAPI_Data_NetId.htm create mode 100644 docs/html/Methods_T_MLAPI_Data_NetworkConfig.htm create mode 100644 docs/html/Methods_T_MLAPI_Data_NetworkedPrefab.htm delete mode 100644 docs/html/Methods_T_MLAPI_Data_NetworkingConfiguration.htm create mode 100644 docs/html/Methods_T_MLAPI_Data_TransportHost.htm create mode 100644 docs/html/Operators_T_MLAPI_Data_NetId.htm create mode 100644 docs/html/Overload_MLAPI_Data_NetId__ctor.htm create mode 100644 docs/html/P_MLAPI_Data_NetId_ServerNetId.htm delete mode 100644 docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnablePrefabIndex.htm create mode 100644 docs/html/P_MLAPI_MonoBehaviours_Core_TrackedObject_AvgTimeBetweenPointsMs.htm create mode 100644 docs/html/P_MLAPI_MonoBehaviours_Core_TrackedObject_TotalPoints.htm create mode 100644 docs/html/Properties_T_MLAPI_Data_NetId.htm create mode 100644 docs/html/T_MLAPI_Data_Channel.htm create mode 100644 docs/html/T_MLAPI_Data_MessageType.htm create mode 100644 docs/html/T_MLAPI_Data_NetId.htm rename docs/html/{T_MLAPI_Data_NetworkingConfiguration.htm => T_MLAPI_Data_NetworkConfig.htm} (53%) create mode 100644 docs/html/T_MLAPI_Data_NetworkedPrefab.htm create mode 100644 docs/html/T_MLAPI_Data_TransportHost.htm create mode 100644 docs/toc/Fields_T_MLAPI_Data_Channel.xml create mode 100644 docs/toc/Fields_T_MLAPI_Data_MessageType.xml create mode 100644 docs/toc/Fields_T_MLAPI_Data_NetId.xml create mode 100644 docs/toc/Fields_T_MLAPI_Data_NetworkConfig.xml create mode 100644 docs/toc/Fields_T_MLAPI_Data_NetworkedPrefab.xml delete mode 100644 docs/toc/Fields_T_MLAPI_Data_NetworkingConfiguration.xml create mode 100644 docs/toc/Fields_T_MLAPI_Data_TransportHost.xml create mode 100644 docs/toc/Methods_T_MLAPI_Data_NetId.xml create mode 100644 docs/toc/Methods_T_MLAPI_Data_NetworkConfig.xml delete mode 100644 docs/toc/Methods_T_MLAPI_Data_NetworkingConfiguration.xml create mode 100644 docs/toc/Operators_T_MLAPI_Data_NetId.xml create mode 100644 docs/toc/Overload_MLAPI_Data_NetId__ctor.xml create mode 100644 docs/toc/Properties_T_MLAPI_Data_NetId.xml create mode 100644 docs/toc/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.xml create mode 100644 docs/toc/T_MLAPI_Data_Channel.xml create mode 100644 docs/toc/T_MLAPI_Data_MessageType.xml create mode 100644 docs/toc/T_MLAPI_Data_NetId.xml create mode 100644 docs/toc/T_MLAPI_Data_NetworkConfig.xml create mode 100644 docs/toc/T_MLAPI_Data_NetworkedPrefab.xml delete mode 100644 docs/toc/T_MLAPI_Data_NetworkingConfiguration.xml create mode 100644 docs/toc/T_MLAPI_Data_TransportHost.xml diff --git a/Protocol.md b/Protocol.md new file mode 100644 index 0000000..6a0e1d4 --- /dev/null +++ b/Protocol.md @@ -0,0 +1,216 @@ +# MLAPI Protocol +The MLAPI protocol is layered. The layers can be seen below. + +The first layer is the UDP IP layer. Ontop of the UDP layer, the Unity Network Transport layer is built. And just after that, the MLAPI's protocol starts to appear. The MLAPI has two protocol stages. The first stage is the generic MLAPI message protocol. This is the protocol all messages use that is sent by the user or the MLAPI library. + +The structure can be seen below, note that all messages use little endian format. + +## MLAPI Generic Message Format +The first two bytes define what message type the message is. This message type is represented as a unsigned int16. The first 32 values are reserved for MLAPI messages. As of version 0.1.7, 10 messages are used. The rest of the message types are reserved for use by the user. That means the user can define ((2^16)-32)=65504 different messageTypes. + +The next byte defines if the message is "targeted", see the targeted section on the wiki for more information. The byte is treated as a bool. + +**If** the message is targeted (the previous byte was 1) + +The next 4 bytes define the target networkId, a unsigned int32. + +The next 2 bytes define the networkBehaviour orderId from the root networkObject root. That is, the first networkBehaviour under the networkObject we target (defined by previous 4 bytes) would be a 0, the second one would be a 1 and so on. + +**Endif** + +The next byte represents wheter or nor the message is a passthrough message, see the passthrough section on the wiki for more information. If the byte is 1, it's true, if it's 0 it's false. + +**If** the message is a passthrough message (the previous byte was 1) + +The next 4 bytes is a unsigned int32 specifying the clientId this message targted at. + +**Endif** + +The next two bytes is a unsigned int16 representing the size of the message payload (next field). If the channel this message is sent on is an encrypted channel, this will be the size of the encrypted payload. + +The last field is the message payload. It has the size specified in the previous field. This is where the next layer sits. This is the messageData. If it's a user messageType, this is the data you send with your message. Otherwise, see the next section for the MLAPI internal message formats + + +## MLAPI Internal Messages + +### MLAPI_CONNECTION_REQUEST (MessageType 0) +This message type is sent Client to Server. It's purpose is to ask the Server to join by providing information that help the server decide. This is the first message of the MLAPI Handshake + +The first 32 bytes is a SHA256 hash of certain fields in the NetworkConfig. + +**If** encryption is turned on + +The next two bytes represents a unsigned int16 specifying the size of the public diffie hellman key. + +The next bytes has the size specified above and contains the diffie hellman public key of the client. + +**Endif** + +**If** conectionApproval is turned on + +The next two bytes represents a unsigned int16 specifying the size of the connectionData. + +The next bytes has the size specified above and contains the connectionData. + +**Endif** + +### MLAPI_CONNECTION_APPROVED (MessageType 1) +This message is sent Server to Client, it's purpose is to notify Client's that their request has been approved and they are now fully joined. This is the last handshake message. (The request being MessageType 0) + +The first two bytes represents a unsigned int32 containing the clientId the server has assigned to the recepient. + +**If** scene management is enabled + +The next 4 bytes represents a unsigned int32 containing the sceneIndex the server is currently using. + +**Endif** + +**If** encryption is enabled + +The next two bytes represents a unsigned int16 specifying the size of the next field. + +The next bytes have the size of the previous field and represents the diffie hellman public key. + +**If** sign keyexchange is enabled + +The next two bytes represents a unsigned int16 specifying the size of the next field. + +The next bytes have the size of the previous field and contains a RSA signature of a SHA512 hash of the diffie hellman public key. + +**Endif** + +**Endif** + +The next 4 bytes represents a single precision floating point value containing the current networkTime. + +The next 4 bytes represents a signed int32 and contains a network timestamp generated by the NetworkTransport. + +The next 4 bytes represents a signed int32 and contains the number of connected clients. + +The next (4 * previousField) bytes is a sequence of unsigned int32 containing the clientId of a client. + +**If** handle object spawning is turned on + +The next 4 bytes represents a signed int32 containing the amount of networkedObjects is spawned. + +The next (39 * previousField) represents information about each networkedObject. That is, each NetworkedObject has 39 bytes sent about it. A NetworkedField structure looks like this: + +First byte specifies if the object is a playerObject. If the byte is 1, it's true, if it's 0, it's false + +The next 4 bytes is a unsigned int32 containing the networkId of the object + +The next 4 bytes is a unsigned int32 containing the ownerId of the object + +The next 4 bytes is a signed int32 containing the networkedPrefabId to create the object from + +The next byte is a boolean specifying if the object is active in the hierarchy + +The next byte is a boolean specifying if the object is a sceneObject + +The next 4 bytes is a single precision floating point value containing the x position of the object + +The next 4 bytes is a single precision floating point value containing the y position of the object + +The next 4 bytes is a single precision floating point value containing the z position of the object + +The next 4 bytes is a single precision floating point value containing the x rotation of the object + +The next 4 bytes is a single precision floating point value containing the y rotation of the object + +The next 4 bytes is a single precision floating point value containing the z rotation of the object + +**Endif** + +### MLAPI_ADD_OBJECT (MessageType 2) +Sent server to client + +**If** handle object spawning + +The first byte is a boolean, represents if it's a player object or not + +The next 4 bytes is a unsigned int32 representing the networkId + +The next 4 bytes is a unsigned int32 representing the ownerId + +The next 4 bytes is signed int32 represents the prefabId + +The next byte is a bool representing if it's a sceneObject + +The next 4 bytes is a single precision floating point value containing the x position of the object + +The next 4 bytes is a single precision floating point value containing the y position of the object + +The next 4 bytes is a single precision floating point value containing the z position of the object + +The next 4 bytes is a single precision floating point value containing the x rotation of the object + +The next 4 bytes is a single precision floating point value containing the y rotation of the object + +The next 4 bytes is a single precision floating point value containing the z rotation of the object + +**Else** + +The first 4 bytes represents a unsigned int32 containing the ownerId + +**Endif** + +### MLAPI_CLIENT_DISCONNECT (MessageType 3) +Sent server to client + +The first 4 bytes is a unsigned int32 containing the clientId + +### MLAPI_DESTROY_OBJECT (MessageType 4) +Server to client + +The first 4 bytes is a unsigned int32 containing the netId + +### MLAPI_SWITCH_SCENE (MessageType 5) +Server to client + +The first 4 bytes is a unsigned int32 containing the sceneId + + +### MLAPI_SPAWN_POOL_OBJECT (MessageType 6) +Server to client + +The first 4 bytes is a unsigned int32 containing the netId + +The next 4 bytes is a single precision floating point value containing the x position of the object + +The next 4 bytes is a single precision floating point value containing the y position of the object + +The next 4 bytes is a single precision floating point value containing the z position of the object + +The next 4 bytes is a single precision floating point value containing the x rotation of the object + +The next 4 bytes is a single precision floating point value containing the y rotation of the object + +The next 4 bytes is a single precision floating point value containing the z rotation of the object + +### MLAPI_DESTROY_POOL_OBJECT (MessageType 7) +Server to client + +The first 4 bytes is a unsigned int32 containing the netId + +### MLAPI_CHANGE_OWNER (MessageType 8) +Server to client + +The first 4 bytes is a unsigned int32 containing the netId + +The first 4 bytes is a unsigned int32 containing the ownerClientId + +### MLAPI_SYNC_VAR_UPDATE (MessageType 9) +Server to client + +The first byte represents the amount of dirty fields + +The next 4 bytes is a unsigned int32 containing the netId + +The next 2 bytes is a unsigned int16 containing the order of the netBehaviour + +//HERE IS THE SYNCVAR DATA. NOTHING TO OPTIMIZE + +### MLAPI_ADD_OBJECTS (MessageType 10) +Server to client + +Same as ADD_OBJECT, but contains two bytes (unsigned int16 specifying the amount of objects, then repeated ADD_OBJECT patterns) diff --git a/docs/WebKI.xml b/docs/WebKI.xml index 3528039..cd90b2e 100644 --- a/docs/WebKI.xml +++ b/docs/WebKI.xml @@ -1,10 +1,10 @@  - - + + @@ -22,15 +22,28 @@ - + + + + + + + + + + + - + - + + - - - + + + + + @@ -40,7 +53,6 @@ - @@ -48,26 +60,33 @@ - + - + + - - + + + + - + + + - + + + @@ -75,10 +94,12 @@ + + @@ -102,9 +123,9 @@ - - - + + + @@ -115,15 +136,30 @@ - + + + + + + + + + + + + + + + - + + @@ -143,7 +179,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -239,14 +335,24 @@ + - - + + + + + + + + + + + @@ -265,43 +371,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -310,7 +381,7 @@ - + @@ -323,10 +394,11 @@ + - + @@ -358,35 +430,38 @@ - + - + + - - + + + - - + + + - - + + - + - + @@ -399,20 +474,20 @@ - + + - + - - + @@ -429,12 +504,27 @@ + + + + + + + + + + + + + + + diff --git a/docs/WebTOC.xml b/docs/WebTOC.xml index 93eabf6..70e2935 100644 --- a/docs/WebTOC.xml +++ b/docs/WebTOC.xml @@ -1,72 +1,131 @@  - - + + - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + - - + + - + @@ -76,69 +135,69 @@ - + - - + + - - + + - - + + - - + + - - - + + + - - + + - + - + - + - + - + - + - + - + - + @@ -147,21 +206,20 @@ - - + - - + + - + - + @@ -171,48 +229,52 @@ - + + - - + + + - - + - + + + + - - + + - + - + - + - + @@ -223,13 +285,13 @@ - + - + - + @@ -237,13 +299,13 @@ - + - + - + @@ -256,16 +318,16 @@ - - - + + + - - + + @@ -275,35 +337,35 @@ - - - + + + - - - - + + + + - - + + - - + + - - - + + + diff --git a/docs/fti/FTI_100.json b/docs/fti/FTI_100.json index 83311d5..f070af4 100644 --- a/docs/fti/FTI_100.json +++ b/docs/fti/FTI_100.json @@ -1 +1 @@ -{"dictionary":[11993089,14548995,15728641],"duplicate":[12124161],"defaultplayerprefab":[196609,2555906,15728641],"decide":[327681,1376257,15466497],"data":[262145,327682,655362,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376259,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2621442,2949122,3014658,4718593,5046273,5636098,5701636,5832706,5963780,6094851,6160387,6422531,6684675,6750211,6815747,6881283,7012355,7143427,7536643,7602179,7929859,8126465,8257539,8323073,8454147,8585217,9568257,11272193,15335427,15466500],"default":[1,196609,2555905,15728641],"destroypoolobject":[5111809,12451842,16187393],"disconnects":[196609,3145729,15728641],"degrees":[589825,4915201,15925249],"driftcorrectionpercentage":[720897,4128770,15859713],"defined":[6094850,6160386,6422530,6488066,6553602,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7471106,7536642,7602178,7667714,7798786,7929858,8257538,8454146,8716290,9175042,9240578,9699330],"documentation":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211266,3276801,3342337,3407873,3473410,3538946,3604481,3670017,3735553,3801090,3866625,3932162,3997697,4063234,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5373953,5439489,5505025,5570561,5636097,5701635,5767169,5832705,5898241,5963779,6029313,6094849,6160385,6225921,6291457,6356995,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306115,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289155,10354689,10420225,10485762,10551297,10616834,10682369,10747905,10813441,10878977,10944514,11010049,11075586,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041666,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"destroypool":[5111809,12058626,16187393],"decrypt":[5570561,10092546,14221313],"destination":[720897,3997697,15859713],"deregister":[6225922,6291457],"different":[327681,1769473,15466497],"delay":[393217,458753,589825,720898,2818049,3735553,15532033,15597569,15859714,15925249],"distance":[589826,4980737,5242881,15925250],"decided":[327681,2490369,15466497],"deregistermessagehandler":[6225922,8650753,8847361,11468801,14352385,15532033,15597569,15859713,15925249],"description":[65537,196609,262145,327681,393217,458753,524289,589825,720897,4325377,4718593,4784129,5046273,5111809,5373953,5505025,5570561,6029313,6619137,7405569,8650753,8847361,9895937,9961473,10158081,10878977,11010049,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12189697,12255233,12582913,12648449,12713985,12910593,13107201,13238273,13434881,13631489,13762561,14155777,14221313,14352385,14417921,14680065,14811137,14942211,15204356,15335427,15466499,15532036,15597572,15663108,15728644,15794179,15859716,15925252,15990785,16056321,16121858,16187393,16252929],"decrypts":[5570561,10092545,14221313],"duplicates":[12124161,14811137,16056321],"deserialize":[10747907,14680065,15990785],"destroy":[5111809,12451842,16187393],"dll":[655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4849665,4915201,4980737,5177345,5242881,5439489,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10944513,11075585,11141121,11206657,12058625,12124161,12320769,12386305,12451841,12517377,12779521,12845057,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14548993,14614529,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"destroys":[5111810,12058625,12451841,16187394],"deregisters":[6225921,8650753,8847361,11468801,14352385,15532033,15597569,15859713,15925249],"dontdestroyonload":[196609,3276801,15728641],"deserializes":[10747905,14680065,15990785],"dontdestroy":[196609,3276802,15728641],"diffie":[327681,3014657,15466497],"decrypted":[10092545]} \ No newline at end of file +{"dictionary":[14417921,17563651,17760257],"duplicate":[16121857],"determines":[5963777,7340033,7405569,8388609,12910594,16777219],"decide":[262145,2621441,17235969],"data":[196609,262146,327681,393218,458753,524289,589825,983042,1114114,1179650,1245186,1310722,1376258,1441794,1507331,1572866,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621443,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3604482,3670018,3735554,3801090,3866626,3997698,5505025,5963777,6094849,6356993,6553602,6684673,6881282,7012353,7208963,7340034,7405572,7471105,7602180,7667714,7733250,7798786,7864322,7995394,8060930,8192002,8257538,8388612,8519683,8650756,8781826,8978435,9043971,9306115,9502723,9633795,9764867,10158083,10289155,11075587,11206659,11468802,11665411,11927553,12845059,12910593,13041665,13697025,15007746,15466499,16449539,16777219,17235972,17629187,18022403,18284547,18481156],"default":[1],"destroypoolobject":[6946817,16318466,17104897],"disconnects":[786433,5373953,17760257],"degrees":[1048577,5701633,19136513],"driftcorrectionpercentage":[1638401,4915202,19070977],"defined":[8519682,8847362,8978434,9043970,9175042,9306114,9437186,9502722,9633794,9699330,9764866,9830402,9895938,10027010,10092546,10158082,10289154,10354690,10485762,10813442,10878978,11075586,11206658,11665410,12845058,13762562,14614530,15466498],"documentation":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194306,4259841,4325378,4390913,4456449,4521985,4587522,4653057,4718593,4784129,4849666,4915201,4980738,5046273,5111809,5177345,5242881,5308418,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602179,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585219,8650755,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961475,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272195,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648451,12713985,12779521,12845057,12910593,12976129,13041665,13172738,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828098,13893633,13959170,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204354,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711682,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"destroypool":[6946817,15859714,17104897],"decrypt":[7143425,11599874,18087937],"destination":[1638401,5177345,19070977],"deregister":[8323074,8716289],"different":[262145,3211265,17235969],"delay":[655361,720897,1048577,1638402,4063233,6815745,18808833,18874369,19070978,19136513],"distance":[1048578,5636097,6225921,19136514],"deregistermessagehandler":[8323074,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"description":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1048577,1638401,5242881,5505025,5898241,5963777,6094849,6356993,6422529,6488065,6619137,6684673,6750209,6946817,7012353,7077889,7143425,7274497,7471105,9109505,11141121,11468802,11862017,11993089,12124161,12386305,12517377,12910593,12976129,13041665,13238273,13434881,13500417,13565953,13631489,13697025,14024705,14090241,14221313,14286849,14352385,14417921,14548993,14680065,14745601,14811137,15335425,15597569,16449539,16777221,17104897,17235971,17367041,17629187,17694721,17760260,17825793,17891331,18022403,18087937,18219009,18284547,18350084,18415617,18481155,18546689,18612227,18677761,18743297,18808836,18874372,18939905,19005444,19070980,19136516,19202049,19267585,19333122],"decrypts":[7143425,11599873,18087937],"duplicates":[6488065,16121857,19267585],"deserialize":[6422529,14155779,19202049],"destroy":[6946817,16318466,17104897],"dll":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"destroys":[6946818,15859713,16318465,17104898],"deregisters":[8323073,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"dontdestroyonload":[786433,3932161,17760257],"deserializes":[6422529,14155777,19202049],"dontdestroy":[786433,3932162,17760257],"diffie":[262145,3342337,17235969],"decrypted":[11599873]} \ No newline at end of file diff --git a/docs/fti/FTI_101.json b/docs/fti/FTI_101.json index 3671fa9..83c31c3 100644 --- a/docs/fti/FTI_101.json +++ b/docs/fti/FTI_101.json @@ -1 +1 @@ -{"exposes":[65537,196609,262145,327681,393217,458753,524289,589825,720897,4325377,4718593,5046273,5111809,5373953,5505025,5570561,6029313,6619137,7405569,8650753,8847361,11337729,11468801,11599873,11730945,11796481,11993089,12189697,12255233,12648449,12910593,14221313,14352385,14417921,14680065,14811137,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"entered":[13828097],"estimated":[4784129,10551297,13762561,16121857],"encryptedbuffer":[10092546],"exchange":[327683,2228225,2424833,3014657,15466499],"examples":[327681,2097153,15466497],"encrypted":[327681,1703937,5570561,10813443,14221313,15466497],"events":[327681,2097153,15466497],"expected":[9633793,12124161],"enabled":[458753,589825,720897,2883585,3670017,3866625,11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597570,15663105,15728641,15794177,15859714,15925250],"executing":[11599875,12255235,12320769,12648451,12779521,12845057,12910595,15532035,15597571,15859715,15925251],"extent":[327681,1966081,15466497],"equals":[4325377,4718593,5046273,5505025,6029313,6619137,7405569,8650753,8847361,11468801,14352385,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"encryptedchannels":[327681,1703938,15466497],"error":[5308418],"enableproximity":[458753,589825,720897,2883586,3670018,3866626,15597569,15859713,15925249],"enable":[327683,589825,1179649,1441793,3014657,4521985,15466499,15925249],"enablesceneswitching":[327681,1441794,15466497],"emptied":[327681,2162689,15466497],"example":[655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4849665,4915201,4980737,5177345,5242881,5439489,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10944513,11075585,11141121,11206657,12058625,12124161,12320769,12386305,12451841,12517377,12779521,12845057,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14548993,14614529,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"encrypts":[5570561,10813441,14221313],"eventtickrate":[327681,2097154,15466497],"expectedchunkscount":[9633794,12124162],"encryption":[262145,327681,851969,1179649,9961473,14221313,15335425,15466497],"enableencryption":[327681,1179650,15466497],"encoded":[5570562,10092545,10813442,14221314],"encrypt":[5570561,10813442,14221313]} \ No newline at end of file +{"exposes":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1048577,1638401,5242881,5505025,5898241,5963777,6094849,6356993,6422529,6488065,6684673,6750209,6946817,7012353,7077889,7143425,7274497,7471105,9109505,11141121,12910593,13238273,13434881,13500417,13697025,14024705,14090241,14221313,14286849,14417921,14548993,14745601,14811137,16449537,16777217,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"entered":[13107201],"estimated":[6619137,14483457,15335425,19333121],"encryptedbuffer":[11599874],"exchange":[262147,2818049,3342337,3407873,17235971],"examples":[262145,2359297,17235969],"encrypted":[196610,1245187,7143425,12713987,18087937,18481154],"events":[262145,2359297,17235969],"expected":[12189697,16121857],"enabled":[720897,1048577,1638401,4784129,5439489,5767169,14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874370,19005441,19070978,19136514],"executing":[14024707,14090243,14286851,14548995,15269889,15400961,15663105,18808835,18874371,19070979,19136515],"equals":[5242881,5505025,5898241,5963778,6094849,6356993,6684673,7012353,7077889,7274497,7340034,7471105,9109505,11141121,13500417,16449537,16777218,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"equal":[5963777,7340034,7405570,8388610,12910594,16777219],"error":[6291458],"enableproximity":[720897,1048577,1638401,4784130,5439490,5767170,18874369,19070977,19136513],"enable":[262147,1048577,1900545,2555905,3342337,4718593,17235971,19136513],"equality":[8388609,12910593,16777217],"enablesceneswitching":[262145,2555906,17235969],"enabletimeresync":[262145,1703938,17235969],"emptied":[262145,2424833,17235969],"example":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"encrypts":[7143425,12713985,18087937],"eventtickrate":[262145,2359298,17235969],"expectedchunkscount":[12189698,16121858],"editor":[786433,5046273,17760257],"encryption":[262145,458753,1900545,3276801,12517377,17235969,17629185,18087937],"enableencryption":[262145,1900546,17235969],"encoded":[7143426,11599873,12713986,18087938],"encrypt":[7143425,12713986,18087937]} \ No newline at end of file diff --git a/docs/fti/FTI_102.json b/docs/fti/FTI_102.json index 081d5c5..ad11d08 100644 --- a/docs/fti/FTI_102.json +++ b/docs/fti/FTI_102.json @@ -1 +1 @@ -{"following":[65537,196609,262145,327681,393217,458753,524289,589825,720897,4325377,4718593,5046273,5111809,5373953,5505025,5570561,6029313,6619137,7405569,8650753,8847361,11337729,11468801,11599873,11730945,11796481,11993089,12189697,12255233,12648449,12910593,14221313,14352385,14417921,14680065,14811137,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"frame":[327681,2097153,15466497],"flooding":[327681,2359297,15466497],"follow":[1],"fields":[65538,196610,262146,327682,393218,458754,524290,589826,720898,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15859713,15925249],"field":[655362,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4390914,4456450,4521986,4587522,4653058,4915202,4980738,5242882],"first":[5570562,10092545,10813441,14221314],"finalize":[4325377,4718593,5046273,5505025,6619137,7405569,8650753,8847361,11468801,14352385,14942209,15204353,15335425,15466497,15532033,15597569,15728641,15794177,15859713,15925249],"float":[2818049,2949121,3735553,4128769,4259841,4390913,4456449,4653057,4915201,4980737,5242881,10682369,13565953]} \ No newline at end of file +{"false":[7340033,7405569,7667713,8060929,8388609],"following":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1048577,1638401,5242881,5505025,5898241,5963777,6094849,6356993,6422529,6488065,6684673,6750209,6946817,7012353,7077889,7143425,7274497,7471105,9109505,11141121,12910593,13238273,13434881,13500417,13697025,14024705,14090241,14221313,14286849,14417921,14548993,14745601,14811137,16449537,16777217,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"frame":[262145,2359297,17235969],"function":[5963777,7208961,16777217],"flooding":[262145,2228225,17235969],"follow":[1],"fields":[65538,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,1048578,1638402,16449537,16777217,17235969,17629185,17760257,18022401,18284545,18350081,18481153,18808833,18874369,19005441,19070977,19136513],"field":[917506,983042,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5308418,5373954,5439490,5570562,5636098,5701634,5767170,5832706,6029314,6160386,6225922,6815746],"first":[7143426,7405569,8388609,11599873,12713985,18087938],"finalize":[5242881,5505025,5898241,6094849,6356993,6684673,7012353,7077889,7471105,9109505,11141121,13500417,16449537,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19070977,19136513],"float":[2883585,4063233,4653057,4915201,5636097,5701633,5832705,6029313,6160385,6225921,6815745,13893633,16187393,17170433]} \ No newline at end of file diff --git a/docs/fti/FTI_103.json b/docs/fti/FTI_103.json index 740f582..2706555 100644 --- a/docs/fti/FTI_103.json +++ b/docs/fti/FTI_103.json @@ -1 +1 @@ -{"getcomponent":[6029315,6619139,7405571,8650755,8847363,11468803,14352387,15532035,15597571,15663107,15728643,15794179,15859715,15925251],"getmessageunordered":[11075587,14811137,16056321],"getmessageordered":[10485763,14811137,16056321],"getcomponentsinparent":[6029317,6619141,7405573,8650757,8847365,11468805,14352389,15532037,15597573,15663109,15728645,15794181,15859717,15925253],"getcomponentinchildren":[6029316,6619140,7405572,8650756,8847364,11468804,14352388,15532036,15597572,15663108,15728644,15794180,15859716,15925252],"great":[327681,1966081,15466497],"gethashcode":[4325377,4718593,5046273,5505025,6029313,6619137,7405569,8650753,8847361,11468801,14352385,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"general":[5308417],"generic":[6488065,6684673,7143425,7274497,9633793,10354689,10485762,11075586,12124161],"getcomponentinparent":[6029314,6619138,7405570,8650754,8847362,11468802,14352386,15532034,15597570,15663106,15728642,15794178,15859714,15925250],"getinstanceid":[6029313,6619137,7405569,8650753,8847361,11468801,14352385,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"gains":[5767169,8650753,8847361,11468801,14352385,15532033,15597569,15859713,15925249],"gameobject":[655362,2555906,3342338,6029313,8519681,11534337,11599873,11730945,11993089,12189697,12255233,12648449,12910593,13041666,15532033,15597569,15663107,15728641,15794177,15859713,15925249],"getparameterautosend":[9306116,11468801,15597569],"getcomponentsinchildren":[6029318,6619142,7405574,8650758,8847366,11468806,14352390,15532038,15597574,15663110,15728646,15794182,15859718,15925254],"guitext":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"given":[4784130,5111809,5373953,5570562,6029313,6094849,6225921,6356993,6619139,6881281,7077889,7471105,7864321,8126465,8323073,8585217,8650758,8847366,9437185,10092545,10158082,10551297,10682369,10813441,11468806,13041665,13107202,13762562,14221314,14352390,15532038,15597574,15663105,15728643,15859718,15925254,16121858,16187393,16252929],"getconfig":[5046273,5701636,15466497],"guielement":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"games":[327681,1900545,15466497],"guitexture":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"gettype":[4325377,4718593,5046273,5505025,6029313,6619137,7405569,8650753,8847361,11468801,14352385,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"getnetworkedobject":[6356996,8650753,8847361,11468801,14352385,15532033,15597569,15859713,15925249],"getchunkedmessage":[9568258,14811137,16056321],"gets":[196610,524289,2686977,3080193,3276801,5046273,5439489,5570561,5701633,5767169,5898241,6356993,6488065,6881281,6946817,7077889,7143425,7536641,8650761,8847370,10813441,11468809,11599880,11730952,11993093,12255241,12320769,12386305,12517377,12582916,12648456,12779521,12845057,12910600,12976129,13107202,13172737,13303809,13369345,13500417,13697025,13893633,14090241,14221313,14286849,14352393,14483457,14548993,14745601,14876673,15007745,15073281,15138817,15269889,15466497,15532050,15597586,15663113,15728647,15859729,15925265],"getcomponents":[6029316,6619140,7405572,8650756,8847364,11468804,14352388,15532036,15597572,15663108,15728644,15794180,15859716,15925252]} \ No newline at end of file +{"getcomponent":[7077891,7274499,9109507,11141123,13500419,17760259,18612227,18743299,18808835,18874371,18939907,19005443,19070979,19136515],"getmessageunordered":[6488065,15204355,19267585],"getmessageordered":[6488065,13959171,19267585],"getcomponentsinparent":[7077893,7274501,9109509,11141125,13500421,17760261,18612229,18743301,18808837,18874373,18939909,19005445,19070981,19136517],"getcomponentinchildren":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516],"gethashcode":[5242881,5505025,5898241,5963778,6094849,6356993,6684673,7012353,7077889,7208962,7274497,7471105,9109505,11141121,13500417,16449537,16777218,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"general":[6291457],"generic":[8519681,8847361,9437185,9633793,12189697,13303809,13959170,15204354,16121857],"getcomponentinparent":[7077890,7274498,9109506,11141122,13500418,17760258,18612226,18743298,18808834,18874370,18939906,19005442,19070978,19136514],"getinstanceid":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"gains":[8126465,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"getclientid":[5963777,7733250,16777217],"gameobject":[524289,3735554,3801091,7274497,11862017,12320769,14024705,14090241,14221313,14286849,14417921,14548993,14745601,16711682,17760257,18022401,18612225,18808833,18874369,19005443,19070977,19136513],"getparameterautosend":[11272196,13500417,18874369],"getcomponentsinchildren":[7077894,7274502,9109510,11141126,13500422,17760262,18612230,18743302,18808838,18874374,18939910,19005446,19070982,19136518],"guitext":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"given":[6619138,6750209,6946817,7143426,7274497,8323073,8585217,8978433,9502721,10092545,10813441,11141126,11534337,11599873,12582913,12713985,13500422,13565954,13893633,14483457,15335426,16711681,17104897,17694721,17825794,18087938,18743302,18808838,18874374,18939910,19005441,19070982,19136518,19333122],"getconfig":[6356993,7602180,17235969],"guielement":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"games":[262145,2949121,17235969],"guitexture":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"gettype":[5242881,5505025,5898241,5963777,6094849,6356993,6684673,7012353,7077889,7274497,7471105,9109505,11141121,13500417,16449537,16777217,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"getnetworkedobject":[8585220,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"getchunkedmessage":[6488065,11927554,19267585],"gets":[786434,3932161,4521985,5963777,6356993,7143425,7602177,7733249,8126465,8454145,8585217,8847361,8912897,9175041,9502721,9633793,10092545,11141130,11206657,12713985,13500425,14024712,14090249,14221320,14286856,14417925,14549000,14745602,14942209,15073281,15269889,15400961,15532033,15663105,15728641,15925249,15990785,16056321,16187393,16252929,16384001,16515073,16580609,16646145,16777217,16908289,16973825,17039361,17235969,17301505,17367044,17498113,17563649,17760263,17825794,17956865,18087937,18153473,18612226,18743305,18808850,18874386,18939913,19005448,19070993,19136529],"getcomponents":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516]} \ No newline at end of file diff --git a/docs/fti/FTI_104.json b/docs/fti/FTI_104.json index 4c799cd..607cbcc 100644 --- a/docs/fti/FTI_104.json +++ b/docs/fti/FTI_104.json @@ -1 +1 @@ -{"hingejoint":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"header":[9568257],"history":[327681,2949121,15466497],"handleobjectspawning":[327681,1835010,15466497],"hosts":[11272193,15466497],"handlerid":[6291457],"hierarchy":[14221313,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"hashset":[1703938],"hideflags":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"hellman":[327681,3014657,15466497],"handshake":[327681,1245185,15466497],"handler":[6225921,6291457,8650754,8847362,11468802,14352386,15532034,15597570,15859714,15925250],"hasmissingparts":[9633794,14811137,16056321],"hasduplicates":[12124162,14811137,16056321],"handle":[327681,1835009,15466497],"hook":[65537,786434,15204353],"hash":[5046275,5701633,5963781,10616835,15466499],"handlers":[5439489,6160385,6488065,6881281,6946817,7012353,7077889,7143425,7208961,7340033,7536641,8257537,8454145,8650767,8716289,8847375,9175041,9371649,9502721,10027009,11468815,11927554,12582918,13107202,13238274,14155778,14352399,15532047,15597583,15859727,15925263],"helper":[9961473,11862018,14221313,15990785,16056321],"host":[6619138,8585217,8781825,11599873,11993089,12255233,12648449,12845057,12910593,15138817,15532033,15597569,15728643,15859713,15925249]} \ No newline at end of file +{"hingejoint":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"header":[11927553],"history":[262145,2883585,17235969],"handleobjectspawning":[262145,2031618,17235969],"hosts":[262145,2752513,11468801,17235970],"handlerid":[8716289],"hierarchy":[16449537,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"hostid":[393218,1441795,7798786,16777218],"hideflags":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"hellman":[262145,3342337,17235969],"handshake":[262145,1572865,17235969],"handler":[8323073,8716289,11141122,13500418,18743298,18808834,18874370,18939906,19070978,19136514],"hasmissingparts":[6488065,12189698,19267585],"hasduplicates":[6488065,16121858,19267585],"handle":[262145,2031617,17235969],"hook":[65537,917506,18350081],"hashing":[7208961],"hte":[393217,1507329,16777217],"hash":[5963777,6356995,7208963,7602177,8650757,13172739,16777217,17235971],"handlers":[8847361,8912897,9175041,9306113,9502721,9633793,9699329,9764865,9830401,10027009,10092545,10289153,11141135,11206657,11403265,11730945,12451841,12845057,13500431,13762561,14352386,17367046,17825794,18415618,18677762,18743311,18808847,18874383,18939919,19070991,19136527],"helper":[12124162,12517377,18087937,19202049,19267585],"host":[589826,3473409,3997697,7667713,7798786,9109506,9961473,10682369,11468801,14024705,14090241,14286849,14417921,14548993,15663105,15728641,17760259,18284547,18808833,18874369,19070977,19136513]} \ No newline at end of file diff --git a/docs/fti/FTI_105.json b/docs/fti/FTI_105.json index 94ad35e..943604e 100644 --- a/docs/fti/FTI_105.json +++ b/docs/fti/FTI_105.json @@ -1 +1 @@ -{"inheritance":[14221313,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"include":[327681,2097153,15466497],"isactiveandenabled":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"index":[9306115,10289155,11141121,11730945,13959169,15663105],"ienumerator":[6029314,6619138,7405570,8650754,8847362,11468802,14352386,15532034,15597570,15663106,15728642,15794178,15859714,15925250],"isdefaultattribute":[4325377,5505025,14942209,15204353],"isclient":[11599873,11993089,12255233,12320770,12648449,12910593,14876674,15532033,15597569,15728641,15859713,15925249],"isowner":[11599873,11730945,12255233,12386306,12648449,12910593,14745602,15532033,15597569,15663105,15859713,15925249],"invokes":[4784130,10551297,10682369,13762562,16121858],"invoked":[6160385,6291457,6488065,6881281,6946817,7012353,7077889,7143425,7208961,7340033,7536641,8257537,8454145,8650766,8716289,8847374,9175041,11468814,11927554,12582918,13107202,13238274,14155778,14352398,15532046,15597582,15859726,15925262],"isserver":[11599873,11993089,12255233,12648449,12779522,12910593,15269890,15532033,15597569,15728641,15859713,15925249],"identify":[11534337,15663105],"inside":[327681,2162689,12124161,14811137,15466497,16056321],"interpolateserver":[589825,4194306,15925249],"isplayerobject":[11730945,15007746,15663105],"instance":[4849665,5046273,5177345,5636097,5701633,5832705,6356993,6488067,6553603,6946819,7077891,7208963,7274499,7340035,7471107,7667715,7733249,7798787,8060929,8650753,8716291,8847361,8912897,9043969,9109505,9175043,9240579,9699331,9764865,10223617,10747905,11206661,11468801,11599874,11993089,12255234,12451841,12648450,12910594,13369345,13697025,14024705,14352385,14680065,14942209,15204353,15335425,15466498,15532036,15597572,15663105,15728642,15794177,15859716,15925252,15990785],"initializes":[4849665,5177345,5636097,5832705,7733249,8060929,8912897,9043969,9109505,9764865,10223617,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"isspawned":[11730945,12976130,15663105],"int":[917505,1245185,1572865,1638401,1703937,2097153,2162689,2293761,2359297,2490370,2621441,3145729,3407873,6094849,6225921,6291458,6422529,6488065,6684673,6881281,6946817,7077889,7143425,7274497,7471105,7536641,7798785,7864321,7995393,9306113,9568257,10289153,10485761,10551297,10616833,11075585,11141121,13893633,13959169,14090241,14548993,15400961],"int32":[917505,1245185,1572865,1638401,1703937,2097153,2162689,2293761,2359297,2490370,2621441,3145729,3407873,4784129,6094850,6225921,6291458,6422530,6488066,6684674,6881282,6946818,7077890,7143426,7274498,7471106,7536642,7798786,7864321,7995393,8650764,8847372,9306115,9568257,10158082,10289155,10485762,10551298,10616835,10878980,11075586,11141121,11468813,12582916,13107202,13434881,13762561,13893633,13959169,14090241,14352396,14548993,15400961,15532044,15597581,15859724,15925260,16121857],"invokerepeating":[6029313,6619137,7405569,8650753,8847361,11468801,14352385,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"interpolate":[589825,4194305,15925249],"isinvoking":[6029314,6619138,7405570,8650754,8847362,11468802,14352386,15532034,15597570,15663106,15728642,15794178,15859714,15925250],"internal":[327681,2097153,15466497],"invoke":[65537,196611,327681,786433,2490369,3145729,3407873,3604481,6029313,6619137,7405569,8650753,8847361,10551297,10682369,11468801,14352385,15204353,15466497,15532033,15597569,15663105,15728644,15794177,15859713,15925249],"isordered":[10354690,14811137,16056321],"interpolation":[589825,4521985,15925249],"interpolateposition":[589825,4521986,15925249],"islocalplayer":[11599873,11730945,12255233,12648449,12910593,13172738,14483458,15532033,15597569,15663105,15859713,15925249],"isclientconnected":[11993089,15073282,15728641],"instances":[589825,4587521,5046273,5963777,15466497,15925249],"inherits":[11534337,15532033],"inherited":[458753,589825,720897,4325384,4718598,5046278,5505032,6029368,6619194,7405626,8650843,8847418,11337729,11468891,11599898,11730970,11993114,12189722,12255266,12648482,12910626,14352475,14417921,14942217,15204361,15335430,15466502,15532116,15597694,15663186,15728724,15794260,15859838,15925374],"ispooledobject":[11730945,12517378,15663105],"ishost":[11599873,11993089,12255233,12648449,12845058,12910593,15138818,15532033,15597569,15728641,15859713,15925249],"instead":[5111809,12451841,16187393]} \ No newline at end of file +{"inheritance":[16449537,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"include":[262145,2359297,17235969],"isactiveandenabled":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"index":[11272195,12648451,15138817],"invalid":[5963777,7798785,8060930,16777217],"isinvalid":[5963777,7798786,8060930,16777217],"ienumerator":[7077890,7274498,9109506,11141122,13500418,17760258,18612226,18743298,18808834,18874370,18939906,19005442,19070978,19136514],"isdefaultattribute":[5242881,5898241,17891329,18350081],"isclient":[14024705,14090241,14286849,14417921,14548993,15269890,17760257,17956866,18808833,18874369,19070977,19136513],"isowner":[14024705,14090241,14221313,14286849,14548993,14942210,17301506,18808833,18874369,19005441,19070977,19136513],"invokes":[6619138,13893633,14483457,15335426,19333122],"invoked":[8716289,8847361,9175041,9306113,9502721,9633793,9699329,9764865,9830401,10027009,10092545,10289153,11141134,11206657,12845057,13500430,13762561,14352386,17367046,17825794,18415618,18677762,18743310,18808846,18874382,18939918,19070990,19136526],"isserver":[14024705,14090241,14286849,14417921,14548993,15400962,16384002,17760257,18808833,18874369,19070977,19136513],"identify":[11862017,19005441],"inside":[262145,2424833,6488065,16121857,17235969,19267585],"inequality":[7405569,12910593,16777217],"interpolateserver":[1048577,5111810,19136513],"isplayerobject":[14221313,17498114,19005441],"instance":[6356993,6422529,6553601,6881281,7208961,7405569,7536641,7602177,7798785,7864321,7929857,7995393,8192001,8257537,8388609,8585217,8781825,8847363,9175043,9240577,9437187,9699331,9830403,9895939,10027011,10092547,10354691,10420225,10485763,10616833,10747905,10813443,10878979,11010049,11141121,12058625,12779521,12910594,13041666,13500417,13762563,14024706,14090242,14155777,14286850,14417921,14548994,14614531,14876677,15794177,15925249,16252929,16318465,16449537,16777220,17235970,17629185,17760258,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808836,18874372,18939905,19005441,19070980,19136516,19202049],"initializes":[6553601,6881281,7536641,7798785,7864321,7929857,7995393,8192001,8257537,8781825,9240577,10420225,10616833,10747905,11010049,12058625,12779521,13041666,16449537,16777218,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513],"isspawned":[14221313,15532034,19005441],"int":[1572865,1835009,2228225,2293761,2359297,2424833,2490369,3604481,3997697,7208961,8323073,8716289,9175041,9437185,9895937,10092545,10813441,11272193,11927553,12648449,13172737,13959169,15138817,15204353,16515073],"int32":[1572865,1835009,2228225,2293761,2359297,2424833,2490369,3604481,3997697,7208961,8323073,8716289,9175042,9437186,9895938,10092546,10813442,11141125,11272195,11927553,12648451,13172739,13500422,13565953,13959170,14680065,15138817,15204354,15597570,16515073,17367041,17825793,18743301,18808837,18874374,18939909,19070981,19136517],"invokerepeating":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"interpolate":[1048577,5111809,19136513],"isinvoking":[7077890,7274498,9109506,11141122,13500418,17760258,18612226,18743298,18808834,18874370,18939906,19005442,19070978,19136514],"internal":[262145,2359297,17235969],"invoke":[65537,786436,917505,4259841,4390913,4456449,5373953,7077889,7274497,9109505,11141121,13500417,13893633,14483457,17760261,18350081,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"isordered":[6488065,13303810,19267585],"interpolation":[1048577,4718593,19136513],"interpolateposition":[1048577,4718594,19136513],"islocalplayer":[14024705,14090241,14221313,14286849,14548993,16056322,16908290,18808833,18874369,19005441,19070977,19136513],"inspector":[786433,5046273,17760257],"isclientconnected":[14417921,17760257,18153474],"instances":[1048577,5570561,6356993,8650753,17235969,19136513],"inherits":[11862017,18808833],"inherited":[720897,1048577,1638401,5242888,5505030,5898248,5963778,6094854,6356998,6684678,7012358,7077946,7274552,7471110,9109562,11141178,13238273,13434881,13500507,14024730,14090274,14221338,14286882,14417946,14549026,14745626,16449542,16777218,17235974,17629190,17760340,17891337,18022406,18284550,18350089,18481158,18612308,18743387,18808916,18874494,18939995,19005522,19071102,19136638],"ispooledobject":[14221313,15073282,19005441],"ishost":[5963777,7667714,7798786,14024705,14090241,14286849,14417921,14548993,15663106,15728642,16777217,17760257,18808833,18874369,19070977,19136513],"identifier":[7733249,7798786,8192001,15007745],"instead":[6946817,16318465,17104897]} \ No newline at end of file diff --git a/docs/fti/FTI_107.json b/docs/fti/FTI_107.json index 8230072..f161773 100644 --- a/docs/fti/FTI_107.json +++ b/docs/fti/FTI_107.json @@ -1 +1 @@ -{"key":[262145,327685,851969,2228226,2424834,3014657,5570562,10092548,10813444,14221314,15335425,15466501]} \ No newline at end of file +{"keys":[786433,5046273,17760257],"key":[262149,458753,2818050,3276801,3342337,3407874,7143426,11599876,12713988,17235973,17629185,18087938]} \ No newline at end of file diff --git a/docs/fti/FTI_108.json b/docs/fti/FTI_108.json index db2788e..88fa4f2 100644 --- a/docs/fti/FTI_108.json +++ b/docs/fti/FTI_108.json @@ -1 +1 @@ -{"large":[9568258,14811137,16056321],"local":[5767169,6356993,8650754,8847362,11468802,11599873,11730945,11993089,12255233,12386305,12648449,12910593,14352386,14745601,15400961,15532035,15597571,15663105,15728641,15859715,15925251],"loose":[5898241,8650753,8847361,11468801,14352385,15532033,15597569,15859713,15925249],"library":[327681,1835009,11534337,15466497,15728641],"list":[196609,327683,1114114,1900547,1966084,2031618,3342339,6029317,6488067,6619141,6684675,7143427,7274499,7405573,8650761,8847369,9568259,9633797,10158081,10354692,10485766,10878979,11075590,11403265,11468809,11730945,11927553,12124165,12582915,12713985,13107201,13238273,13434881,13631489,13762561,13959169,14155777,14352393,14614530,14811143,15466499,15532041,15597577,15663110,15728646,15794181,15859721,15925257,16056327],"longer":[13828097],"locate":[13828097],"looking":[13828097],"link":[1],"lerp":[720897,4128769,15859713],"lag":[327681,2949121,9895937,11534337,15466497,15794177,16121857],"light":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"load":[5308417],"lagcompensationmanager":[4784130,9895937,10551298,10682370,11796483,13762562,14614530,16121860]} \ No newline at end of file +{"large":[6488065,11927554,19267585],"local":[8126465,8585217,11141122,13500418,14024705,14090241,14221313,14286849,14417921,14548993,14942209,16842753,17301505,17760257,18743298,18808835,18874371,18939906,19005441,19070979,19136515],"logic":[262145,1703937,17235969],"loose":[8454145,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"library":[262145,2031617,11862017,17235969,17760257],"list":[262146,2162690,2686979,2752514,2949123,3014658,3080194,6488071,7077893,7274501,8519683,8847363,9109509,9437187,9633795,11141129,11927555,12189701,13041665,13303812,13500425,13565953,13631489,13959174,14352385,14680065,15204358,15335425,15597571,16121861,17235970,17367043,17432578,17760261,17825793,18219009,18415617,18546689,18612229,18677761,18743305,18808841,18874377,18939913,19005445,19070985,19136521,19267591],"longer":[13107201],"listen":[589826,3670017,3997697,18284546],"locate":[13107201],"looking":[13107201],"link":[1],"lerp":[1638401,4915201,19070977],"lag":[262145,2883585,11862017,12386305,17235969,18612225,19333121],"light":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"load":[6291457],"lagcompensationmanager":[6619138,12386305,13893634,14483458,14811139,15335426,17432578,19333124]} \ No newline at end of file diff --git a/docs/fti/FTI_109.json b/docs/fti/FTI_109.json index 184d4d4..de044a1 100644 --- a/docs/fti/FTI_109.json +++ b/docs/fti/FTI_109.json @@ -1 +1 @@ -{"marked":[196609,3276801,15728641],"messagetype":[6094851,6160387,6225921,6291457,6422531,6488067,6553603,6684675,6750211,6815747,6881283,6946819,7012355,7077891,7143427,7208963,7274499,7340035,7471107,7536643,7602179,7667715,7798787,7929859,8257539,8454147,8716291,9175043,9240579,9699331],"myclientid":[11993089,15400962,15728641],"mlapi":[65538,131073,196610,262146,327682,393218,458754,524290,589826,655365,720898,786437,851973,917509,983045,1048581,1114117,1179653,1245189,1310725,1376261,1441797,1507333,1572869,1638405,1703941,1769477,1835013,1900549,1966085,2031621,2097157,2162693,2228229,2293765,2359301,2424837,2490373,2555909,2621445,2686981,2752517,2818053,2883589,2949125,3014661,3080197,3145733,3211270,3276805,3342341,3407877,3473414,3538950,3604485,3670021,3735557,3801094,3866629,3932166,3997701,4063238,4128773,4194309,4259845,4325378,4390917,4456453,4521989,4587525,4653061,4718594,4784130,4849669,4915205,4980741,5046274,5111810,5177349,5242885,5308417,5373954,5439493,5505026,5570562,5636101,5701639,5767173,5832709,5898245,5963783,6029314,6094853,6160389,6225925,6291461,6356999,6422533,6488069,6553605,6619138,6684677,6750213,6815749,6881285,6946821,7012357,7077893,7143429,7208965,7274501,7340037,7405570,7471109,7536645,7602181,7667717,7733253,7798789,7864325,7929861,7995397,8060933,8126470,8192005,8257541,8323078,8388613,8454149,8519685,8585222,8650754,8716293,8781829,8847362,8912901,8978437,9043973,9109509,9175045,9240581,9306119,9371653,9437189,9502725,9568261,9633797,9699333,9764869,9830405,9895938,9961474,10027013,10092549,10158082,10223621,10289159,10354693,10420229,10485766,10551301,10616838,10682373,10747909,10813445,10878978,10944518,11010050,11075590,11141125,11206661,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058629,12124165,12189698,12255234,12320773,12386309,12451846,12517381,12582914,12648450,12713986,12779525,12845061,12910594,12976133,13041670,13107202,13172741,13238274,13303813,13369349,13434882,13500421,13565957,13631490,13697029,13762562,13828097,13893637,13959173,14024709,14090245,14155778,14221318,14286853,14352386,14417922,14483461,14548997,14614533,14680066,14745605,14811138,14876677,14942214,15007749,15073285,15138821,15204358,15269893,15335430,15400965,15466502,15532041,15597575,15663110,15728646,15794182,15859719,15925255,15990790,16056326,16121862,16187398,16252934],"messagetypes":[327684,1966082,2031619,15466500],"monobehaviours":[196609,393217,458753,524289,589825,720897,2555906,2686978,2752514,2818050,2883586,3080194,3145730,3211267,3276802,3342338,3407874,3473411,3538947,3604482,3670018,3735554,3801091,3866626,3932163,3997698,4063235,4128770,4194306,4259842,4390914,4456450,4521986,4587522,4653058,4915202,4980738,5242882,5439490,5767170,5898242,6029313,6094850,6160386,6225922,6291458,6356996,6422530,6488066,6553602,6619137,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405569,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650753,8716290,8781826,8847361,8912898,8978434,9043970,9109506,9175042,9240578,9306116,9371650,9502722,9699330,9764866,9830402,10027010,10158081,10223618,10289156,10616835,10878977,10944515,11403265,11468801,11534337,11599873,11665409,11730945,11927553,11993089,12189697,12255233,12320770,12386306,12451841,12517378,12582913,12648449,12713985,12779522,12845058,12910593,12976130,13107201,13172738,13238273,13303810,13369346,13434881,13500418,13565954,13631489,13697026,13893634,13959170,14024706,14090242,14155777,14286850,14352385,14483458,14548994,14745602,14876674,15007746,15073282,15138818,15269890,15400962,15532038,15597572,15663107,15728643,15794179,15859716,15925252],"maxreceiveeventspertickrate":[327681,2359298,15466497],"messagechunker":[9568258,9633794,10354690,10485763,11075587,11862017,12124162,14811139,16056324],"main":[9895939,11534337,15728641,16121857,16187393,16252929],"mindegrees":[589825,4915202,15925249],"multiple":[6422529,6488065,6684673,6946817,7143425,7274497,7536641,7798785,8650760,8847368,10878980,11468808,12582916,14352392,15532040,15597576,15859720,15925256],"messagebuffersize":[327681,1572866,15466497],"messages":[327684,1048577,1966081,2162689,2359297,11862017,15466500,16056321],"meters":[589825,4390913,15925249],"message":[327684,1572866,1703937,2621441,5439489,5570562,6094849,6225921,6291458,6881281,7077889,7471105,8650755,8847363,9371649,9502721,9568258,10027009,10092545,10813441,11468803,14221314,14352387,15466500,15532035,15597571,15859715,15925251],"managing":[9895938,16187393,16252929],"method":[65537,786433,5111809,5439489,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7798785,7864321,7929857,7995393,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8978433,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9830401,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11075585,11141121,11206657,11403265,11927553,12058625,12124161,12451842,12582913,12713985,13041665,13107201,13238273,13434881,13631489,13762561,14155777,15204353,16187393],"missing":[3211265,3473409,3538945,3801089,3932161,4063233,5701634,5963778,6356994,9306114,9633794,10289154,10485761,10616833,10944513,11075585,13041665,14811137,16056321],"methods":[4325378,4718594,4784130,5046274,5111810,5373954,5505026,5570562,6029314,6619138,7405570,8650754,8847362,11468802,14221313,14352386,14680066,14811138,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"minimum":[393217,458753,589825,720897,2818049,15532033,15597569,15859713,15925249],"messagehandler":[6291458],"make":[327681,1835009,15466497],"messagehandlerid":[6225921],"match":[4325377,5505025,14942209,15204353],"max":[327683,1572865,1638401,2359297,15466499],"min":[589826,4390913,4915201,15925250],"monobehaviour":[5111809,6029326,6619150,7405582,8650766,8847374,11468814,11534337,11599874,11730946,11993090,12189698,12255234,12451841,12648450,12910594,14352398,15532051,15597585,15663122,15728658,15794194,15859729,15925265,16187393],"memberwiseclone":[4325377,4718593,5046273,5505025,6619137,7405569,8650753,8847361,11468801,14352385,14942209,15204353,15335425,15466497,15532033,15597569,15728641,15794177,15859713,15925249],"minmeters":[589825,4390914,15925249],"maxconnections":[327681,1638402,15466497],"misspelled":[13828097],"members":[65537,196609,262145,327681,393217,458753,524289,589825,720897,4325377,4718593,5046273,5111809,5373953,5505025,5570561,6029313,6619137,7405569,8650753,8847361,11337729,11468801,11599873,11730945,11796481,11993089,12189697,12255233,12648449,12910593,14221313,14352385,14417921,14680065,14811137,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929]} \ No newline at end of file +{"marked":[786433,3932161,17760257],"meta":[393218,1507331,16777218],"messagetype":[327684,1179650,1310723,3014658,6684675,6881284,8323073,8519683,8716289,8847363,8978435,9043971,9175043,9306115,9437187,9502723,9633795,9699331,9764867,9830403,9895939,10027011,10092547,10158083,10289155,10354691,10485763,10813443,10878979,11075587,11206659,11468801,11665411,12845059,13762563,14614531,15466499,16449543],"myclientid":[14417921,16842754,17760257],"miliseconds":[14745601,16187393,18612225],"mlapi":[65538,131073,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917509,983045,1048578,1114117,1179653,1245189,1310725,1376261,1441797,1507333,1572869,1638402,1703941,1769477,1835013,1900549,1966085,2031621,2097157,2162693,2228229,2293765,2359301,2424837,2490373,2555909,2621445,2686981,2752517,2818053,2883589,2949125,3014661,3080197,3145733,3211269,3276805,3342341,3407877,3473413,3538949,3604485,3670021,3735557,3801093,3866629,3932165,3997701,4063237,4128773,4194310,4259845,4325382,4390917,4456453,4521989,4587526,4653061,4718597,4784133,4849670,4915205,4980742,5046277,5111813,5177349,5242882,5308422,5373957,5439493,5505026,5570565,5636101,5701637,5767173,5832709,5898242,5963778,6029317,6094850,6160389,6225925,6291457,6356994,6422530,6488066,6553605,6619138,6684674,6750210,6815749,6881285,6946818,7012354,7077890,7143426,7208965,7274498,7340037,7405575,7471106,7536645,7602183,7667717,7733253,7798789,7864325,7929861,7995397,8060933,8126469,8192005,8257541,8323077,8388615,8454149,8519685,8585223,8650759,8716293,8781829,8847365,8912901,8978437,9043973,9109506,9175045,9240581,9306117,9371653,9437189,9502725,9568261,9633797,9699333,9764869,9830405,9895941,9961479,10027013,10092549,10158085,10223621,10289157,10354693,10420229,10485765,10551301,10616837,10682373,10747909,10813445,10878981,10944517,11010053,11075589,11141122,11206661,11272199,11337733,11403269,11468803,11534341,11599877,11665413,11730949,11796485,11862018,11927557,11993090,12058629,12124162,12189701,12255237,12320773,12386306,12451845,12517378,12582917,12648455,12713989,12779525,12845061,12910594,12976130,13041666,13107201,13172742,13238274,13303813,13369349,13434882,13500418,13565954,13631490,13697026,13762565,13828102,13893637,13959174,14024706,14090242,14155781,14221314,14286850,14352386,14417922,14483461,14548994,14614533,14680066,14745602,14811138,14876677,14942213,15007749,15073285,15138821,15204358,15269893,15335426,15400965,15466501,15532037,15597570,15663109,15728645,15794181,15859717,15925253,15990789,16056325,16121861,16187397,16252933,16318470,16384005,16449543,16515077,16580613,16646149,16711686,16777221,16842757,16908293,16973829,17039365,17104902,17170437,17235974,17301509,17367042,17432581,17498117,17563653,17629190,17694726,17760262,17825794,17891334,17956869,18022406,18087942,18153477,18219010,18284550,18350086,18415618,18481158,18546690,18612230,18677762,18743298,18808841,18874375,18939906,19005446,19070983,19136519,19202054,19267590,19333126],"messagetypes":[262146,3014659,17235970],"monobehaviours":[655361,720897,786433,851969,1048577,1638401,3538946,3932162,4063234,4128770,4194307,4259842,4325379,4390914,4456450,4521986,4587523,4653058,4718594,4784130,4849667,4915202,4980739,5046274,5111810,5177346,5308419,5373954,5439490,5570562,5636098,5701634,5767170,5832706,6029314,6160386,6225922,6815746,7077889,7274497,8126466,8323074,8454146,8519682,8585220,8716290,8847362,8912898,8978434,9043970,9109505,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961476,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141121,11206658,11272196,11337730,11403266,11665410,11730946,11796482,11862017,11993089,12058626,12255234,12320770,12451842,12582914,12648452,12779522,12845058,13172739,13500417,13565953,13631489,13762562,13828099,14024705,14090241,14221313,14286849,14352385,14417921,14548993,14614530,14680065,14745601,14942210,15073282,15269890,15400962,15466498,15532034,15597569,15663106,15728642,15794178,15925250,15990786,16056322,16187394,16252930,16318465,16384002,16515074,16580610,16646146,16842754,16908290,16973826,17039362,17170434,17301506,17367041,17498114,17563650,17760259,17825793,17956866,18153474,18219009,18415617,18546689,18612227,18677761,18743297,18808838,18874372,18939905,19005443,19070980,19136516],"maxreceiveeventspertickrate":[262145,2228226,17235969],"messagechunker":[6488067,11927554,12124161,12189698,13303810,13959171,15204355,16121858,19267588],"main":[11862017,12386307,17104897,17694721,17760257,19333121],"mindegrees":[1048577,5701634,19136513],"multiple":[8519681,8847361,9043969,9175041,9437185,9633793,9895937,11141128,11206657,13500424,15597572,17367044,18743304,18808840,18874376,18939912,19070984,19136520],"messagebuffersize":[262145,2293762,17235969],"maximize":[262145,1703937,17235969],"messages":[262147,2097153,2228225,2424833,12124161,17235971,19267585],"meters":[1048577,6160385,19136513],"message":[262147,2293762,3604481,7143426,8323073,8716290,8912897,8978433,9502721,10092545,10813441,11141123,11403265,11468801,11599873,11730945,11927554,12451841,12713985,13500419,16449537,17235971,18087938,18743299,18808835,18874371,18939907,19070979,19136515],"managing":[12386306,17104897,17694721],"method":[65537,917505,6946817,7208961,7340033,7602177,7667713,7733249,8060929,8126465,8323073,8454145,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9175041,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10551297,10682369,10813441,10878977,10944513,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12845057,13172737,13303809,13369345,13565953,13631489,13762561,13828097,13893633,13959169,14155777,14352385,14483457,14614529,14680065,14876673,15138817,15204353,15335425,15466497,15597569,15859713,16121857,16318466,16711681,17104897,17367041,17825793,18219009,18350081,18415617,18546689,18677761],"missing":[4194305,4325377,4587521,4849665,4980737,5308417,6488065,7602178,8585218,8650754,9961474,11272194,12189698,12648450,13172737,13828097,13959169,15204353,16711681,19267585],"methods":[5242882,5505026,5898242,5963778,6094850,6356994,6422530,6488066,6619138,6684674,6750210,6946818,7012354,7077890,7143426,7274498,7471106,9109506,11141122,13500418,16449537,16777217,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18743298,18808833,18874369,18939906,19005441,19070977,19136513,19202049,19267585,19333121],"minimum":[655361,720897,1048577,1638401,4063233,18808833,18874369,19070977,19136513],"messagehandler":[8716290],"make":[262145,2031617,17235969],"messagehandlerid":[8323073],"match":[5242881,5898241,17891329,18350081],"max":[262147,2228225,2293761,2490369,17235971],"min":[1048578,5701633,6160385,19136514],"monobehaviour":[6946817,7077902,7274510,9109518,11141134,11862017,13500430,14024706,14090242,14221314,14286850,14417922,14548994,14745602,16318465,17104897,17760274,18612242,18743310,18808851,18874385,18939918,19005458,19070993,19136529],"memberwiseclone":[5242881,5505025,5898241,6094849,6356993,6684673,7012353,7077889,7471105,9109505,11141121,13500417,16449537,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19070977,19136513],"minmeters":[1048577,6160386,19136513],"maxconnections":[262145,2490370,17235969],"misspelled":[13107201],"members":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1048577,1638401,5242881,5505025,5898241,5963777,6094849,6356993,6422529,6488065,6684673,6750209,6946817,7012353,7077889,7143425,7274497,7471105,9109505,11141121,12910593,13238273,13434881,13500417,13697025,14024705,14090241,14221313,14286849,14417921,14548993,14745601,14811137,16449537,16777217,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121]} \ No newline at end of file diff --git a/docs/fti/FTI_110.json b/docs/fti/FTI_110.json index 93afc53..c8991de 100644 --- a/docs/fti/FTI_110.json +++ b/docs/fti/FTI_110.json @@ -1 +1 @@ -{"networkscenemanager":[5373955,9437186,9895937,16252932],"networkstart":[5439490,8650754,8847361,9371650,9502722,10027010,11468802,14352386,15532033,15597570,15859714,15925250],"networkedtransform":[589827,3866626,4194306,4390914,4521986,4587522,4653058,4915202,4980738,5242882,10027010,10223620,11665409,12910595,14352387,15532033,15925254],"networkingmanager":[196612,2555906,2686978,2752514,3145730,3276803,3342338,3407874,3604482,6619139,8126466,8323074,8388610,8585218,8781826,8912900,8978434,11534337,11993092,13565954,14024709,14548994,14876674,15073282,15138818,15269890,15400962,15728648],"normal":[327681,1966081,15466497],"netconfig":[8126466,8323074,8585218],"networkid":[6356996,8650753,8847361,11468801,11599874,11730945,12255234,12648450,12910594,13303810,13697027,14352385,15532035,15597571,15663105,15859715,15925251],"networkedbehaviour":[393219,458753,589825,720897,2818050,5439490,5767170,5898242,6094850,6160387,6225922,6291458,6356996,6422530,6488067,6553602,6684674,6750210,6815746,6881283,6946819,7012355,7077891,7143427,7208963,7274498,7340035,7471106,7536643,7602178,7667714,7733252,7798786,7929858,8257539,8454147,8650800,8716291,8847377,9175043,9240578,9699330,10158082,10878978,11403266,11468848,11534337,11599877,11927556,12255242,12320770,12386306,12582920,12648458,12713986,12779522,12845058,12910602,13107204,13172738,13238276,13369347,13631490,13697027,14090242,14155780,14352432,15532054,15597629,15859773,15925309],"networkedobjec":[262145,1114113,15335425],"namespace":[65537,196609,262145,327681,393217,458753,524289,589825,655362,720897,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325377,4390914,4456450,4521986,4587522,4653058,4718593,4784129,4849666,4915202,4980738,5046273,5111809,5177346,5242882,5373953,5439490,5505025,5570561,5636098,5701634,5767170,5832706,5898242,5963778,6029313,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619137,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405569,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650753,8716290,8781826,8847361,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895937,9961473,10027010,10092546,10158081,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878977,10944514,11010049,11075586,11141122,11206658,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11796481,11730945,11862017,11927553,11993089,12058626,12124162,12189697,12255233,12320770,12386306,12451842,12517378,12582913,12648449,12713985,12779522,12845058,12910593,12976130,13041666,13107201,13172738,13238273,13303810,13369346,13434881,13500418,13565954,13631489,13697026,13762561,13893634,13959170,14024706,14090242,14155777,14221314,14286850,14352385,14417921,14483458,14548994,14614530,14680065,14745602,14811137,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930],"networkingmanagercomponents":[4784129,5111809,5373953,5570561,9437186,9568258,9633794,9895937,9961473,10092546,10354690,10420226,10485763,10551298,10682370,10747906,10813442,11075587,11141122,11206658,11796481,11862017,12058626,12124162,12451842,13041667,13762561,14221315,14614530,14680065,14811137,15990787,16056323,16121859,16187395,16252931],"networkpoolmanager":[5111811,9895937,11141122,12058626,12451842,13041667,16187396],"new":[4849665,5177345,5636097,5832705,7733249,7995393,8060929,8912897,9043969,9109505,9764865,10223617,10747905,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"networkedclient":[262148,655362,851970,917507,1114114,4718595,5636100,11272194,14548994,15335432],"networktransport":[327681,2293761,15466497],"networkednavmeshagent":[720899,3670018,3735554,3997698,4128770,4259842,8650755,9371650,9764868,11665409,12648451,15532033,15859718],"networkconfig":[196609,2752514,15728641],"networktime":[11993089,13565954,15728641],"newownerclientid":[7995394],"networkedanimator":[458755,2883586,3211267,3473411,3538947,3801091,3932163,4063235,4456450,9109508,9306116,9502722,9830402,10289156,10616835,10944515,11468803,11665409,12255235,13434882,14286850,15532033,15597574],"networking":[5439489,8847361,15532033],"networked":[327681,1900545,5111809,11141121,11534338,15466497,15532033,15663105,16187393],"networkedobject":[524291,1114114,3080194,5111809,6029315,6356994,7864322,7995394,8060932,8192002,8519682,11534337,11599876,11730948,12255236,12451844,12517378,12648452,12910596,12976130,13303810,13369349,13500418,13697025,13893635,13959170,14090241,14483458,14745602,15007746,15532036,15597572,15663111,15859716,15925252,16187393],"networkedtransport":[327681,1310721,15466497],"netobject":[12451842],"networkview":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"navmeshagents":[11665409,15859713],"networkingconfiguration":[196609,327683,983042,1048578,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2621442,2752515,2949122,3014658,5046277,5701637,5832708,5963781,6619139,8126468,8323076,8585220,11272193,15466504,15728644],"network":[524289,3080193,6029314,7864321,8519681,9895938,11730946,12976129,13303809,15663109,16187393,16252929]} \ No newline at end of file +{"networkscenemanager":[6750211,11534338,12386305,17694724],"netwokrtime":[262145,1703937,17235969],"networkedprefab":[524291,851969,2686978,3145730,3538945,3801090,7471107,8781828,11468802,18022407,19005441],"networkstart":[8912898,11141121,11403266,11730946,12451842,13500418,18743298,18808833,18874370,18939906,19070978,19136514],"networkedtransform":[1048579,4718594,5111810,5570562,5636098,5701634,5767170,5832706,6160386,6225922,11993089,12451842,12779524,14548995,18808833,18939907,19136518],"networkingmanager":[786436,3932163,4128770,4259842,4390914,4456450,4521986,5046274,5373954,9109507,9371650,9568258,9961476,10223618,10420228,10551298,10682370,10944514,11862017,14417924,15728642,15794181,16384002,16842754,17170434,17563650,17760264,17956866,18153474],"nullable":[9961480],"networkid":[8585220,11141121,13500417,14024706,14090242,14221313,14286850,14548994,15990786,16252931,18743297,18808835,18874371,18939905,19005441,19070979,19136515],"networkedbehaviour":[655363,720897,1048577,1638401,4063234,8126466,8323074,8454146,8519682,8585220,8716290,8847363,8912898,8978434,9043970,9175043,9306115,9437186,9502723,9633795,9699331,9764867,9830403,9895938,10027011,10092547,10158082,10289155,10354690,10485762,10616836,10813442,10878978,11075586,11141137,11206659,11665410,11862017,12845059,13500464,13565954,13631490,13762563,14024709,14090250,14286858,14352388,14549002,14614530,14942210,15269890,15400962,15466498,15597570,15663106,15925251,16056322,16252931,16646146,17367048,17825796,18219010,18415620,18546690,18677764,18743344,18808854,18874429,18939952,19071037,19136573],"networkedobjec":[458753,3080193,17629185],"namespace":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917506,983042,1048577,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638401,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242881,5308418,5373954,5439490,5505025,5570562,5636098,5701634,5767170,5832706,5898241,5963777,6029314,6094849,6160386,6225922,6356993,6422529,6488065,6553602,6619137,6684673,6750209,6815746,6881282,6946817,7012353,7077889,7143425,7208962,7274497,7340034,7405570,7471105,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109505,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141121,11206658,11272194,11337730,11403266,11468801,11534338,11599874,11665410,11730946,11796482,11862017,11927554,11993089,12058626,12124161,12189698,12255234,12320770,12386305,12451842,12517377,12582914,12648450,12713986,12779522,12845058,12910593,12976129,13041665,13172738,13238273,13303810,13369346,13434881,13500417,13565953,13631489,13697025,13762562,13828098,13893634,13959170,14024705,14090241,14155778,14221313,14286849,14352385,14417921,14483458,14548993,14614530,14680065,14745601,14811137,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335425,15400962,15466498,15532034,15597569,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367041,17432578,17498114,17563650,17629186,17694722,17760258,17825793,17891330,17956866,18022402,18087938,18153474,18219009,18284546,18350082,18415617,18481154,18546689,18612226,18677761,18743297,18808834,18874370,18939905,19005442,19070978,19136514,19202050,19267586,19333122],"networkingmanagercomponents":[6422529,6488065,6619137,6750209,6946817,7143425,11534338,11599874,11927554,12124161,12189698,12386305,12517377,12713986,13303810,13369346,13893634,13959171,14155778,14483458,14811137,14876674,15138818,15204355,15335425,15859714,16121858,16318466,16711683,17104899,17432578,17694723,18087939,19202051,19267587,19333123],"networkpoolmanager":[6946819,12386305,15138818,15859714,16318466,16711683,17104900],"new":[6553601,6881281,7536641,7798785,7864321,7929857,7995393,8192001,8257537,8781825,9240577,10420225,10616833,10747905,11010049,11337729,12058625,12779521,13041666,14155777,16449537,16777218,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513],"net":[15007745],"networkedclient":[458756,3080194,3276802,3735554,3866627,7012355,8257540,11468802,17563650,17629192],"networktransport":[262145,1835009,11468801,17235969,18481153],"needed":[262145,1703937,17235969],"networkedprefabs":[262145,2686978,17235969],"networkednavmeshagent":[1638403,4653058,4915202,5177346,5439490,6815746,11403266,11993089,12058628,14286851,18743299,18808833,19070982],"networkconfig":[262147,786433,1572866,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3211266,3342338,3407874,3604482,4128772,6356995,7602180,7995396,8650756,11468801,17235974,17760257],"networktime":[14417921,17170434,17760257],"newownerclientid":[11337730],"networkedprefabname":[851969,3538946,19005441],"networkedanimator":[720899,4194307,4325379,4587523,4784130,4849667,4980739,5308419,6029314,11010052,11272196,11730946,11993089,12255234,12648452,13172739,13500419,13828099,14090243,14680066,16973826,18808833,18874374],"networking":[8912897,11141121,18808833],"null":[9961474],"networked":[262145,2949121,6946817,11862018,15138817,17104897,17235969,18808833,19005441],"networkedobject":[851971,3080194,3538946,6946817,7274499,8585218,9240580,11337730,11796482,11862017,12320770,12582914,14024708,14090244,14221316,14286852,14548996,15073282,15532034,15925253,15990786,16252929,16318468,16580611,16646145,16908290,17039362,17104897,17301506,17498114,18808836,18874372,19005447,19070980,19136516],"networkedtransport":[262145,2162689,17235969],"netobject":[16318466],"networkview":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"navmeshagents":[11993089,19070977],"networkingconfiguration":[786433,4128769,6356994,7602177,8650753,17235970,17760257],"network":[7274498,12320769,12386306,12582913,14221314,15532033,15990785,17104897,17694721,19005444],"netid":[393219,1376258,1441794,1507330,5963781,7208963,7340037,7405578,7667714,7733250,7798789,8060930,8192005,8388618,11468801,12910599,13041670,13697027,15007748,16777229]} \ No newline at end of file diff --git a/docs/fti/FTI_111.json b/docs/fti/FTI_111.json index fbdddd9..0cc7cd0 100644 --- a/docs/fti/FTI_111.json +++ b/docs/fti/FTI_111.json @@ -1 +1 @@ -{"ownerclientid":[11599873,11730945,12255233,12648449,12910593,13893634,14090242,15532033,15597569,15663105,15859713,15925249],"ongainedownership":[5767170,8650753,8847361,11468801,14352385,15532033,15597569,15859713,15925249],"optional":[5701633,10485762,11075586,11141121],"ownedobjects":[262145,1114114,15335425],"onserverstarted":[196609,3604482,15728641],"objects":[5111809,11141121,11796481,12058625,14614529,16121857,16187393],"onlostownership":[5898242,8650753,8847361,11468801,14352385,15532033,15597569,15859713,15925249],"ownership":[5767169,5898241,6029313,8192001,8650754,8847362,11468802,14352386,15532034,15597570,15663105,15859714,15925250],"onclientdisconnectcallback":[196609,3145730,15728641],"overrides":[8650753,11468801,14352385,15597569,15859713,15925249],"owns":[7012353,7340033,8650754,8847362,11468802,11599875,12255235,12648451,12910595,13369345,13697025,14090241,14155778,14352386,15532037,15597573,15859717,15925253],"override":[9371649,9502721,10027009,11534337,15532033],"object":[327681,524290,1835009,3080194,4325380,4718598,5046278,5111811,5505028,5767169,5898241,6029327,6356993,6619150,7012353,7340033,7405582,7602177,7864322,7995393,8192001,8257537,8650775,8716289,8847383,9240577,11141121,11272193,11403266,11468823,11534337,11599877,11730955,11927554,11993090,12058625,12189698,12255237,12386305,12517377,12648453,12910597,12976129,13041667,13172738,13303809,13500417,14155778,14221313,14352407,14483458,14745601,14942213,15007746,15204357,15335431,15466505,15532062,15597598,15663134,15728658,15794195,15859742,15925278,15990785,16056321,16121857,16187396,16252929],"order":[10354690,10485761,11075585,14811139,16056323],"original":[10485761,10747905,11075585,14680065,14811138,15990785,16056322],"obsolete":[6029313,6619137,7405569,8650753,8847361,11468801,11599889,11730961,11993105,12189713,12255249,12648465,12910609,14352385,15532050,15597586,15663122,15728658,15794194,15859730,15925266],"owned":[262145,1114113,11599873,11730945,12255233,12386305,12648449,12910593,14745601,15335425,15532033,15597569,15663105,15859713,15925249],"owner":[6029314,7602177,7864321,7995394,8257537,8650756,8716289,8847364,9240577,11403266,11468804,11730945,11927554,13893633,14352388,15532036,15597572,15663107,15859716,15925252],"overload":[6094849,6160385,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7798785,7929857,8257537,8454145,8716289,9175041,9240577,9699329,10158081,10551297,10616833,10682369,10878977,10944513,11403265,11927553,12582913,12713985,13107201,13238273,13434881,13631489,13762561,14155777],"onclientconnectedcallback":[196609,3407874,15728641],"occur":[327681,2097153,15466497],"occurred":[5308417]} \ No newline at end of file +{"ownerclientid":[14024705,14090241,14221313,14286849,14548993,16580610,16646146,18808833,18874369,19005441,19070977,19136513],"obj":[7340034],"ongainedownership":[8126466,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"outside":[786433,5046273,17760257],"optional":[7602177,9961474,13959170,15138817,15204354],"ownedobjects":[458753,3080194,17629185],"onserverstarted":[786433,4259842,17760257],"objects":[6946817,14811137,15138817,15859713,17104897,17432577,19333121],"onlostownership":[8454146,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"ownership":[7274497,8126465,8454145,11141122,11796481,13500418,18743298,18808834,18874370,18939906,19005441,19070978,19136514],"onclientdisconnectcallback":[786433,5373954,17760257],"operators":[12910594,16777217],"overrides":[5963778,13500417,16777218,18743297,18874369,18939905,19070977,19136513],"owns":[11141122,12845057,13500418,13762561,14024707,14090243,14286851,14548995,15925249,16252929,16646145,18415618,18743298,18808837,18874373,18939906,19070981,19136517],"override":[7208961,7340033,11403265,11730945,11862017,12451841,18808833],"object":[262145,2031617,5242884,5505030,5898244,5963780,6094854,6356998,6684678,6946819,7012358,7077902,7208961,7274511,7340037,7471110,8126465,8454145,8585217,9109518,9764865,10027009,10485761,11141143,11337729,11468802,11796481,11862017,12582914,12845057,13500439,13762561,14024709,14090245,14221323,14286853,14417922,14548997,14745602,14942209,15073281,15138817,15466497,15532033,15859713,15990785,16056322,16449543,16711683,16777220,16908290,17039361,17104900,17235977,17301505,17498114,17629191,17694721,17760274,17891333,18022407,18087937,18284551,18350085,18415618,18481160,18546690,18612243,18677762,18743319,18808862,18874398,18939927,19005468,19071006,19136542,19202049,19267585,19333121],"operator":[7405570,8388610],"order":[6488067,13303810,13959169,15204353,19267587],"original":[6422529,6488066,13959169,14155777,15204353,19202049,19267586],"obsolete":[7077889,7274497,9109505,11141121,13500417,14024721,14090257,14221329,14286865,14417937,14549009,14745617,17760274,18612242,18743297,18808850,18874386,18939905,19005458,19070994,19136530],"owned":[458753,3080193,14024705,14090241,14221313,14286849,14548993,14942209,17301505,17629185,18808833,18874369,19005441,19070977,19136513],"owner":[7274498,9764865,10027009,10485761,11141124,11337730,12582913,13500420,14221313,15466497,16580609,18546690,18677762,18743300,18808836,18874372,18939908,19005443,19070980,19136516],"overload":[7798785,8192001,8519681,8847361,8978433,9043969,9175041,9306113,9437185,9502721,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,10289153,10354689,10485761,10813441,10878977,11075585,11206657,11665409,12845057,13041665,13172737,13565953,13631489,13762561,13828097,13893633,14352385,14483457,14614529,14680065,15335425,15466497,15597569,17367041,17825793,18219009,18415617,18546689,18677761],"onclientconnectedcallback":[786433,4390914,17760257],"occur":[262145,2359297,17235969],"occurred":[6291457]} \ No newline at end of file diff --git a/docs/fti/FTI_112.json b/docs/fti/FTI_112.json index 3ff46bd..7b97104 100644 --- a/docs/fti/FTI_112.json +++ b/docs/fti/FTI_112.json @@ -1 +1 @@ -{"port":[327682,2293763,15466498],"prevent":[327681,2359297,15466497],"parameters":[5701633,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488066,6553602,6684673,6750209,6815745,6881281,6946818,7012353,7077890,7143425,7208962,7274498,7340034,7471106,7536641,7602177,7667714,7798786,7864321,7929857,7995393,8126465,8257537,8323073,8454145,8585217,8716290,9175042,9240578,9306113,9437185,9568257,9633793,9699330,10092545,10289153,10354689,10485761,10551297,10616833,10682369,10747906,10813441,10944513,11075585,11141121,11206658,12058625,12124161,12451841,13041665],"prototyping":[458753,589825,720897,2883586,3211267,3473411,3538947,3670018,3735554,3801091,3866626,3932163,3997698,4063235,4128770,4194306,4259842,4390914,4456450,4521986,4587522,4653058,4915202,4980738,5242882,8650753,9109506,9306116,9371650,9502722,9764866,9830402,10027010,10223618,10289156,10616835,10944515,11468801,11665409,12255233,12648449,12910593,13434881,14286850,14352385,15532035,15597571,15859715,15925251],"passed":[327681,1966081,15466497],"percentage":[720897,4128769,15859713],"passthroughmessagetypes":[327681,1966082,15466497],"param4":[458753,4063235,15597569],"players":[196609,2555905,15728641],"public":[327681,655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424834,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4849665,4915201,4980737,5177345,5242881,5439489,5636097,5701633,5767169,5832705,5898241,5963777,7864321,7995393,8060929,8126465,8192001,8323073,8388609,8519681,8585217,8781825,8912897,8978433,9043969,9109505,9306113,9371649,9437185,9502721,9568257,9633793,9764865,9830401,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10944513,11075585,11141121,11206657,12058625,12124161,12386305,12451841,12517377,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14548993,14614529,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466498,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"param3":[458753,3538947,15597569],"prefab":[196609,2555905,11141121,11730945,13959169,15663105,15728641],"proximityrange":[458753,589825,720897,4259842,4456450,4980738,15597569,15859713,15925249],"poolid":[11730946,13500419,15663106],"pending":[327681,2621441,15466497],"persists":[5308417],"private":[327681,2228225,15466497],"particlesystem":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"param":[5701633,5963777,6356993,9306113,10289154,10616833,10944513],"purposes":[9961473,14221313],"param1":[458753,3473411,15597569],"protocolversion":[327681,1769474,15466497],"part":[5111809,11730946,12451841,12517377,13500417,15663106,16187393],"personal":[11599873,11730945,12255233,12648449,12910593,13172737,14483457,15532033,15597569,15663105,15859713,15925249],"poolname":[11141122,12058626,13041666],"prototype":[11665411,15597569,15859713,15925249],"position":[327681,589825,2949121,5111809,5242881,13041668,15466497,15925249,16187393],"parts":[5046273,5701633,9633794,14811137,15466497,16056321],"param2":[458753,3932163,15597569],"player":[11599874,11730947,12255234,12386305,12648450,12910594,13172737,14483457,14745601,15007745,15532034,15597570,15663107,15859714,15925250],"properties":[11337730,11599874,11730946,11796482,11993090,12189698,12255234,12648450,12910594,14417922,14942209,15204353,15532033,15597569,15663105,15728641,15794177,15859713,15925249,16121857],"param0":[458753,3211267,15597569],"proximity":[458754,589826,720898,2883585,3670017,3866625,4259841,4456449,4980737,15597570,15859714,15925250],"protected":[6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7929857,8257537,8454145,8716289,9175041,9240577,9699329,12320769,12779521,12845057],"pool":[5111812,11141123,11730945,12058626,12451841,12517377,13041666,15663105,16187396],"protocol":[327681,1769473,15466497],"particleemitter":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"page":[5308417,13828100],"process":[327681,2359297,15466497],"param5":[458753,3801091,15597569],"prefabs":[196609,3342337,15728641],"property":[12320770,12386306,12517378,12779522,12845058,12976130,13172738,13303810,13369346,13500418,13565954,13697026,13893634,13959170,14024706,14090242,14286850,14483458,14548994,14614530,14745602,14876674,15007746,15073282,15138818,15269890,15400962],"properly":[10485761,11075585,14811138,16056322],"processed":[327681,2162689,15466497],"playerobject":[262146,655363,15335426],"pools":[9895937,16187393],"preliminary":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"passthrough":[327681,1048577,15466497]} \ No newline at end of file +{"port":[262145,589826,1835009,3997699,17235969,18284546],"prevent":[262145,2228225,17235969],"parameters":[7340033,7405569,7602177,7798785,8192001,8323073,8388609,8519681,8585217,8650753,8716289,8847362,8978433,9043969,9175042,9306113,9437186,9502721,9633793,9699330,9764865,9830402,9895938,9961473,10027010,10092546,10158081,10289153,10354690,10485762,10813442,10878978,11075585,11206657,11272193,11337729,11534337,11599873,11665409,11927553,12189697,12582913,12648449,12713985,12845057,13172737,13303809,13762562,13828097,13893633,13959169,14155778,14483457,14614530,14876674,15138817,15204353,15466497,15859713,16121857,16318465,16711681],"prototyping":[720897,1048577,1638401,4194307,4325379,4587523,4653058,4718594,4784130,4849667,4915202,4980739,5111810,5177346,5308419,5439490,5570562,5636098,5701634,5767170,5832706,6029314,6160386,6225922,6815746,11010050,11272196,11403266,11730946,11993089,12058626,12255234,12451842,12648452,12779522,13172739,13500417,13828099,14090241,14286849,14548993,14680065,16973826,18743297,18808835,18874371,18939905,19070979,19136515],"percentage":[1638401,4915201,19070977],"param4":[720897,4194307,18874369],"points":[14745602,16187393,16515073,18612226],"public":[262145,917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407874,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8388609,8454145,8650753,8781825,8912897,9240577,9371649,9568257,9961473,10223617,10420225,10551297,10682369,10747905,10944513,11010049,11272193,11337729,11403265,11534337,11599873,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,13172737,13303809,13369345,13828097,13893633,13959169,14155777,14483457,14876673,14942209,15007745,15073281,15138817,15204353,15532033,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235970,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"param3":[720897,4849667,18874369],"prefab":[524290,3801091,15138817,18022402],"pos":[9961475],"proximityrange":[720897,1048577,1638401,4653058,5636098,6029314,18874369,19070977,19136513],"poolid":[14221314,17039363,19005442],"pending":[262145,3604481,17235969],"persists":[6291457],"private":[262145,2818049,17235969],"particlesystem":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"param":[7602177,8585217,8650753,9961474,11272193,12648450,13172737,13828097],"purposes":[12517377,18087937],"param1":[720897,4980739,18874369],"playerprefab":[524290,3145731,18022402],"probably":[262145,1703937,17235969],"protocolversion":[262145,3211266,17235969],"part":[6946817,14221314,15073281,16318465,17039361,17104897,19005442],"personal":[14024705,14090241,14221313,14286849,14548993,16056321,16908289,18808833,18874369,19005441,19070977,19136513],"poolname":[15138818,15859714,16711682],"prototype":[11993091,18874369,19070977,19136513],"position":[262145,1048577,2883585,6225921,6946817,16711684,17104897,17235969,19136513],"parts":[6356993,6488065,7602177,12189698,17235969,19267585],"param2":[720897,4325379,18874369],"player":[14024706,14090242,14221315,14286850,14548994,14942209,16056321,16908289,17301505,17498113,18808834,18874370,19005443,19070978,19136514],"properties":[13238274,13434882,13697026,14024706,14090242,14221314,14286850,14417922,14548994,14745602,14811138,16777217,17760257,17891329,18350081,18612225,18808833,18874369,19005441,19070977,19136513,19333121],"param0":[720897,4587523,18874369],"proximity":[720898,1048578,1638402,4653057,4784129,5439489,5636097,5767169,6029313,18874370,19070978,19136514],"protected":[8323073,8519681,8585217,8716289,8847361,8978433,9043969,9175041,9306113,9437185,9502721,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,10289153,10354689,10485761,10616833,10813441,10878977,11075585,11206657,11665409,12845057,13762561,14614529,15269889,15400961,15466497,15663105],"pool":[6946820,14221313,15073281,15138819,15859714,16318465,16711682,17104900,19005441],"protocol":[262145,3211265,17235969],"particleemitter":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"page":[6291457,13107204],"process":[262145,2228225,17235969],"param5":[720897,5308419,18874369],"prefabs":[262145,2686977,17235969],"property":[14942210,15007746,15073282,15269890,15400962,15532034,15663106,15728642,15794178,15925250,15990786,16056322,16187394,16252930,16384002,16515074,16580610,16646146,16842754,16908290,16973826,17039362,17170434,17301506,17432578,17498114,17563650,17956866,18153474],"properly":[6488066,13959169,15204353,19267586],"processed":[262145,2424833,17235969],"playerobject":[458754,3735555,17629186],"pools":[12386305,17104897],"preliminary":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"passthrough":[262145,327682,1179651,2097153,16449538,17235969]} \ No newline at end of file diff --git a/docs/fti/FTI_113.json b/docs/fti/FTI_113.json index e4c8048..fa12e76 100644 --- a/docs/fti/FTI_113.json +++ b/docs/fti/FTI_113.json @@ -1 +1 @@ -{"qostype":[1310722],"queue":[327681,2162689,15466497],"quaternion":[13041667]} \ No newline at end of file +{"qostype":[1114114],"queue":[262145,2424833,17235969],"quaternion":[4456450,9961476,16711683],"qos":[196609,1114113,18481153]} \ No newline at end of file diff --git a/docs/fti/FTI_114.json b/docs/fti/FTI_114.json index 1898612..f36ac8d 100644 --- a/docs/fti/FTI_114.json +++ b/docs/fti/FTI_114.json @@ -1 +1 @@ -{"rtt":[4784129,10551298,13762561,16121857],"rigidbody2d":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"rsapublickey":[327681,2424834,15466497],"receive":[327682,1572865,2162689,15466498],"running":[6619139,8388609,8781825,8978433,11993091,14876673,15138817,15269889,15728646],"range":[458753,720897,4259841,4456449,15597569,15859713],"random":[5570561,10813441,14221313],"receivetickrate":[327682,2162690,2359297,15466498],"rsaprivatekey":[327681,2228226,15466497],"require":[11075585,14811137,16056321],"rotation":[5111809,13041668,16187393],"ref":[9568257,9633793,10354689,10485761,11075585,12124161],"return":[5701633,5963777,6291457,6356993,9306113,9568257,9633793,10092545,10354689,10485761,10747906,10813441,11075585,11206657,12124161,13041665],"represents":[11993089,13565953,15728641],"resetparameteroptions":[9830402,11468801,15597569],"rigidbody":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"redirected":[1],"replicated":[524289,3080193,11010050,11993089,13565953,14942209,15204353,15663105,15728641],"runineditmode":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"requested":[13828097],"registermessagehandler":[6291458,8650753,8847361,11468801,14352385,15532033,15597569,15859713,15925249],"rotate":[589825,4915201,15925249],"ready":[196609,3604481,5439489,8847361,15532033,15728641],"requires":[10485761,14811137,16056321],"registeredscenes":[327681,1900546,15466497],"runinbackground":[196609,2686978,15728641],"renderer":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"register":[6291457],"rsa":[327682,2228225,2424833,15466498],"removes":[6029313,8192001,15663105],"removeownership":[6029313,8192002,15663105],"received":[6291457],"returns":[5701633,5963777,6356993,9306113,10485761,11075585,13041665],"request":[655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4849665,4915201,4980737,5177345,5242881,5439489,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10944513,11075585,11141121,11206657,12058625,12124161,12320769,12386305,12451841,12517377,12779521,12845057,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14548993,14614529,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"reference":[65538,131073,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308417,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895937,9961473,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010049,11075586,11141122,11206658,11272193,11337730,11403266,11468802,11534337,11599874,11665409,11730946,11796482,11862017,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828097,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930],"registers":[6291457,8650754,8847361,9371649,9502721,10027009,11468802,14352386,15532033,15597570,15859714,15925250],"registered":[327681,2031617,5439489,8847361,15466497,15532033]} \ No newline at end of file +{"rtt":[6619137,14483458,15335425,19333121],"recommended":[262145,1703937,17235969],"rigidbody2d":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"rsapublickey":[262145,3407874,17235969],"receive":[262146,2293761,2424833,17235970],"running":[9109507,10551297,10682369,10944513,14417923,15728641,16384001,17760262,17956865],"range":[720897,1638401,4653057,6029313,18874369,19070977],"random":[7143425,12713985,18087937],"receivetickrate":[262146,2228225,2424834,17235970],"rot":[9961475],"rsaprivatekey":[262145,2818050,17235969],"require":[6488065,15204353,19267585],"rotation":[6946817,16711684,17104897],"ref":[11927553,12189697,13303809,13959169,15204353,16121857],"return":[7208961,7340033,7405569,7602177,7667713,7733249,8060929,8388609,8585217,8650753,8716289,11272193,11599873,11927553,12189697,12713985,13303809,13959169,14155778,14876673,15204353,16121857,16711681],"represents":[5963777,7667713,11468805,14417921,16449537,16777218,17170433,17760257,18022401,18284545,18481153],"resetparameteroptions":[12255234,13500417,18874369],"rigidbody":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"redirected":[1],"replicated":[12976130,14417921,17170433,17760257,17891329,18350081],"runineditmode":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"requested":[13107201],"regeneratersakeys":[786433,5046274,17760257],"regenerating":[786433,5046273,17760257],"registermessagehandler":[8716290,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"rotate":[1048577,5701633,19136513],"ready":[786433,4259841,8912897,11141121,17760257,18808833],"requires":[6488065,13959169,19267585],"registeredscenes":[262145,2949122,17235969],"runinbackground":[786433,4521986,17760257],"renderer":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"register":[8716289],"rsa":[262146,786433,2818049,3407873,5046273,17235970,17760257],"removes":[7274497,11796481,19005441],"removeownership":[7274497,11796482,19005441],"received":[8716289],"returns":[5963778,7602177,7667713,8060929,8585217,8650753,11272193,13959169,15204353,16711681,16777218],"request":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"reference":[65538,131073,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291457,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468801,11534338,11599874,11665410,11730946,11796482,11862017,11927554,11993089,12058626,12124161,12189698,12255234,12320770,12386305,12451842,12517377,12582914,12648450,12713986,12779522,12845058,12910594,12976129,13041666,13107201,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122],"registers":[8716289,11141121,11403265,11730945,12451841,13500418,18743298,18808833,18874370,18939906,19070978,19136514],"registered":[262145,3014657,8912897,11141121,17235969,18808833]} \ No newline at end of file diff --git a/docs/fti/FTI_115.json b/docs/fti/FTI_115.json index 7211524..2c5fa00 100644 --- a/docs/fti/FTI_115.json +++ b/docs/fti/FTI_115.json @@ -1 +1 @@ -{"switches":[5373953,9437185,16252929],"simulationobjects":[11796481,14614530,16121857],"source":[655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4849665,4915201,4980737,5177345,5242881,5439489,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10944513,11075585,11141121,11206657,12058625,12124161,12320769,12386305,12451841,12517377,12779521,12845057,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14548993,14614529,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"sendtoserver":[7929859,8650754,8847362,9699331,11468802,12713987,14352386,15532034,15597570,15859714,15925250],"sendspersecond":[589825,4653058,15925249],"sendtoclienttarget":[6881283,7077891,8650754,8847362,11468802,13107203,14352386,15532034,15597570,15859714,15925250],"sort":[131073],"syntax":[655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4849665,4915201,4980737,5177345,5242881,5439489,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10944513,11075585,11141121,11206657,12058625,12124161,12320769,12386305,12451841,12517377,12779521,12845057,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14548993,14614529,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"sets":[196610,524289,2686977,3080193,3276801,12255233,14286849,15597569,15663105,15728642],"stops":[6619139,8388609,8781825,8978433,15728643],"syncronized":[11993089,13565953,15728641],"sealed":[15663105],"scenes":[9895937,16252929],"sendmessageupwards":[6029316,6619140,7405572,8650756,8847364,11468804,14352388,15532036,15597572,15663108,15728644,15794180,15859716,15925252],"spawnwithownership":[6029313,7864322,15663105],"sendtoclients":[6422531,6553603,6684675,6815747,7274499,7798787,8650758,8847366,10878983,11468806,14352390,15532038,15597574,15859718,15925254],"stopallcoroutines":[6029313,6619137,7405569,8650753,8847361,11468801,14352385,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"secondsago":[10682370],"sendtononlocalclients":[7602179,8650754,8847362,9240579,11403267,11468802,14352386,15532034,15597570,15859714,15925250],"spawns":[5111809,6029314,7864321,8519681,13041665,15663106,16187393],"sendmessageoptions":[6029318,6619142,7405574,8650758,8847366,11468806,14352390,15532038,15597574,15663110,15728646,15794182,15859718,15925254],"serialize":[11206660,14680065,15990785],"scenename":[9437186],"synced":[11730945,13303809,15663105],"spawn":[6029313,8519682,11730945,13041666,13959169,15663106],"second":[327683,589826,2097153,2162689,2621441,4587521,4653057,15466499,15925250],"snapdistance":[589825,5242882,15925249],"sendtononlocalclientstarget":[8257539,8650754,8716291,8847362,11468802,11927555,14352386,15532034,15597570,15859714,15925250],"syncvar":[65537,786433,15204353],"stopcoroutine":[6029315,6619139,7405571,8650755,8847363,11468803,14352387,15532035,15597571,15663107,15728643,15794179,15859715,15925251],"sorry":[5308417,13828097],"search":[131073,13828097],"signed":[327681,3014657,15466497],"serializer":[10420225,14680065,15990785],"setup":[5439489,8847361,15532033],"switch":[9437185],"stopclient":[6619137,8388610,15728641],"send":[327682,589826,1376257,2097153,4390913,4915201,6094850,6160385,6422530,6488067,6553602,6684674,6750209,6815745,6881282,6946819,7012353,7077891,7143426,7208962,7274499,7340034,7471107,7536642,7602177,7667714,7798787,7929857,8257537,8454145,8716290,9175042,9240578,9699330,15466498,15925250],"spawnableprefabindex":[11141122,11730945,13959170,15663105],"sent":[327681,589826,2621441,4390913,4915201,15466497,15925250],"single":[2818049,2949121,3735553,4128769,4259841,4390913,4456449,4653057,4784129,4915201,4980737,5242881,10682370,13565953,13762561,16121857],"signing":[327682,2228225,2424833,15466498],"stophost":[6619137,8781826,15728641],"set":[196609,327681,1703937,2686977,14286849,15466497,15728641],"setparameterautosend":[10289156,11468801,15597569],"spawnpoolobject":[5111809,13041667,16187393],"spawnable":[196609,3342337,15728641],"subject":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"serialized":[7274497,7471105,7667713,7798785,8650760,8716289,8847368,9175041,9240577,9699329,10158081,10878978,11206657,11403265,11468808,11927553,12713985,13238273,13631489,14352392,15532040,15597576,15859720,15925256],"sha256":[5046274,5701633,5963777,15466498],"syncing":[11665411,12255233,14286849,15597570,15859713,15925249],"sorteddictionary":[1310722],"scene":[327681,1441793,5373953,9437186,15466497,16252929],"spawning":[327681,1835009,15466497],"spawned":[524289,3080193,11730945,12976129,15663106],"syncedvar":[65539,327681,393217,458753,589825,720897,786434,2097153,2818049,4325379,5177348,11010049,11337731,15204358,15466497,15532033,15597569,15859713,15925249],"salt":[5570562,10092546,10813442,14221314],"starts":[6619139,8126465,8323073,8585217,15728643],"startclient":[6619137,8323074,15728641],"sendtolocalclienttarget":[7012355,7340035,8650754,8847362,11468802,14155779,14352386,15532034,15597570,15859714,15925250],"sendtoservertarget":[8454147,8650754,8847362,9175043,11468802,13238275,14352386,15532034,15597570,15859714,15925250],"stopserver":[6619137,8978434,15728641],"switchscene":[5373953,9437186,16252929],"site":[5308417],"size":[327682,1572866,10485761,11075585,11141122,15466498],"string":[786434,983042,1310722,1900546,1966082,2031618,2228226,2424834,3211266,3473410,3538946,3801090,3932162,4063234,6029330,6094854,6160390,6225922,6291458,6422534,6488070,6553606,6619154,6684678,6750214,6815750,6881286,6946822,7012358,7077894,7143430,7208966,7274502,7340038,7405586,7471110,7536646,7602182,7667718,7798790,7929862,8257542,8454150,8650826,8716294,8847434,9175046,9240582,9437186,9699334,10158084,10878988,10944516,11141122,11403268,11468875,11927556,12058626,12582924,12713988,13041667,13107204,13238276,13434881,13631492,14155780,14352458,15532106,15597643,15663122,15728658,15794194,15859786,15925322],"sendtickrate":[327681,2621442,15466497],"start":[11272193,15466497],"server":[196609,327681,589825,1966081,3604481,4194305,5111812,5373953,6029316,6094849,6160385,6422529,6488065,6553601,6619138,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7798785,7864321,7929857,7995393,8126465,8192001,8257537,8454145,8519681,8650780,8716289,8847388,8978433,9175041,9240577,9437185,9699329,10158082,10878982,11010050,11141121,11272193,11403266,11468828,11599874,11927554,11993091,12058625,12255234,12451841,12582918,12648450,12713986,12779521,12845057,12910594,13041665,13107202,13238274,13565953,13631490,14155778,14352412,14942209,15204353,15269889,15400961,15466498,15532062,15597598,15663108,15728646,15859742,15925279,16187396,16252929],"switching":[327681,1441793,15466497],"summary":[3211265,3473409,3538945,3801089,3932161,4063233],"started":[11993089,13565953,15728641],"serveronly":[524289,3080194,15663105],"syncvarsyncdelay":[393217,458753,589825,720897,2818050,15532033,15597569,15859713,15925249],"starthost":[6619137,8585218,15728641],"startcoroutine":[6029315,6619139,7405571,8650755,8847363,11468803,14352387,15532035,15597571,15663107,15728643,15794179,15859715,15925251],"system":[5701635,5963779,6094852,6160387,6225922,6291458,6356995,6422532,6488067,6553602,6684676,6750211,6815747,6881284,6946819,7012355,7077891,7143428,7208962,7274499,7340034,7471107,7536644,7602179,7667714,7798787,7864321,7929859,7995393,8257539,8454147,8716290,9175042,9240578,9306115,9437185,9568258,9633794,9699330,10092546,10289158,10354689,10485765,10551298,10616834,10682370,10747905,10813442,10944514,11075589,11141123,12058625,12124162,13041666,14221313,14942210,15204354,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"serializes":[11206657,14680065,15990785],"startserver":[6619137,8126466,15728641],"singleton":[11993090,14024707,15728642],"secondshistory":[327681,2949122,15466497],"serializing":[11862017,15990785],"spawnableprefabs":[196609,3342338,11141121,11730945,13959169,15663105,15728641],"settrigger":[10616836,10944516,11468802,13434883,15597570],"sendtoclientstarget":[6160387,6488067,6946819,7143427,7208963,7536643,8650758,8847366,11468806,12582919,14352390,15532038,15597574,15859718,15925254],"snaping":[589825,5242881,15925249],"signkeyexchange":[327681,3014658,15466497],"sends":[393217,458753,589827,720897,2818049,4587521,4653057,6094849,6160385,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7798785,7929857,8257537,8454145,8650780,8716289,8847388,9175041,9240577,9699329,10158082,10878982,11403266,11468828,11927554,12582918,12713986,13107202,13238274,13631490,14155778,14352412,15532061,15597597,15859741,15925279],"static":[9437185,9568257,9633793,10092545,10354689,10420225,10485761,10551297,10682369,10747905,10813441,11075585,11141121,11206657,12058625,12124161,12451841,13041665,14024705,14221313,14614529,15990785,16056321,16121857,16187393,16252929],"seconds":[327682,393217,458753,589825,720898,1245185,2818049,2949121,3735553,4784130,10551297,10682370,11993089,13565953,13762562,15466498,15532033,15597569,15728641,15859714,15925249,16121858],"startcoroutine_auto":[6029313,6619137,7405569,8650753,8847361,11468801,14352385,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"simulation":[11796481,14614529,16121857],"smaller":[9568257,14811137,16056321],"sendmessage":[6029316,6619140,7405572,8650756,8847364,11468804,14352388,15532036,15597572,15663108,15728644,15794180,15859716,15925252],"scenenames":[327681,1900545,15466497],"sendtoclient":[6094851,7471107,8650754,8847362,10158083,11468802,14352386,15532034,15597570,15859714,15925250],"sendtolocalclient":[6750211,7667715,8650754,8847362,11468802,13631491,14352386,15532034,15597570,15859714,15925250],"simulate":[4784130,10551299,10682371,13762563,16121858]} \ No newline at end of file +{"switches":[6750209,11534337,17694721],"simulationobjects":[14811137,17432578,19333121],"source":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"sendtoserver":[10354691,11075587,11141122,13500418,13631491,18743298,18808834,18874370,18939906,19070978,19136514],"sendspersecond":[1048577,5832706,19136513],"sendtoclienttarget":[9502723,10092547,11141122,13500418,17825795,18743298,18808834,18874370,18939906,19070978,19136514],"sort":[131073],"syntax":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"sets":[786434,3932161,4521985,14090241,16973825,17760258,18874369],"stops":[9109507,10551297,10682369,10944513,17760259],"syncronized":[14417921,17170433,17760257],"specified":[5963777,7340034,7405570,8388610,12910596,16777221],"servertransports":[262145,2752514,17235969],"sealed":[19005441],"scenes":[12386305,17694721],"sendmessageupwards":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516],"spawnwithownership":[7274497,12582914,19005441],"sendtoclients":[8519683,9043971,9437187,9895939,10158083,10878979,11141126,13500422,15597575,18743302,18808838,18874374,18939910,19070982,19136518],"stopallcoroutines":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"secondsago":[13893634],"sendtononlocalclients":[10485763,11141122,13500418,15466499,18546691,18743298,18808834,18874370,18939906,19070978,19136514],"spawns":[6946817,7274498,12320769,12582913,16711681,17104897,19005442],"sendmessageoptions":[7077894,7274502,9109510,11141126,13500422,17760262,18612230,18743302,18808838,18874374,18939910,19005446,19070982,19136518],"serialize":[6422529,14876676,19202049],"scenename":[11534338],"synced":[14221313,15990785,19005441],"spawn":[7274497,12320770,16711682,19005441],"second":[262147,1048578,2359297,2424833,3604481,5570561,5832705,7405569,8388609,17235971,19136514],"snapdistance":[1048577,6225922,19136513],"stored":[14745601,16515073,18612225],"sendtononlocalclientstarget":[9764867,10027011,11141122,13500418,18677763,18743298,18808834,18874370,18939906,19070978,19136514],"sever":[262145,2752513,17235969],"syncvar":[65537,917505,18350081],"stopcoroutine":[7077891,7274499,9109507,11141123,13500419,17760259,18612227,18743299,18808835,18874371,18939907,19005443,19070979,19136515],"sorry":[6291457,13107201],"search":[131073,13107201],"signed":[262145,3342337,17235969],"serializer":[6422529,13369345,19202049],"setup":[8912897,11141121,18808833],"switch":[11534337],"stopclient":[9109505,10551298,17760257],"send":[262146,1048578,2359297,2621441,5701633,6160385,8519682,8847363,8978434,9043970,9175043,9306113,9437187,9502722,9633794,9699330,9764865,9830402,9895939,10027010,10092547,10158081,10289153,10354690,10485762,10813443,10878978,11075585,11206658,11665409,12845057,13762562,14614530,15466497,17235970,19136514],"structures":[7208961,11468801],"spawnableprefabindex":[15138818],"servernetid":[13697026,15007747,16777218],"sent":[262145,1048578,3604481,5701633,6160385,17235969,19136514],"single":[2883585,4063233,4653057,4915201,5636097,5701633,5832705,6029313,6160385,6225921,6619137,6815745,13893634,15335425,16187393,17170433,19333121],"signing":[262146,2818049,3407873,17235970],"stophost":[9109505,10682370,17760257],"set":[786433,4521985,7798786,16973825,17760257],"setparameterautosend":[12648452,13500417,18874369],"spawnpoolobject":[6946817,16711683,17104897],"spawnable":[262145,2686977,17235969],"subject":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"serialized":[9437185,9830401,9895937,10027009,10354689,10485761,10813441,11141128,13500424,13565953,13631489,14352385,14614529,14876673,15597570,18219009,18546689,18677761,18743304,18808840,18874376,18939912,19070984,19136520],"sha256":[6356994,7602177,8650753,17235970],"syncing":[11993091,14090241,16973825,18874370,19070977,19136513],"serializableattribute":[16449537,17235969,18022401,18284545,18481153],"scene":[262145,2555905,6750209,11534338,17235969,17694721],"spawned":[14221313,15532033,19005441],"spawning":[262145,2031617,17235969],"syncedvar":[65539,262145,655361,720897,917506,1048577,1638401,2359297,4063233,5898243,7929860,12976129,13434883,17235969,18350086,18808833,18874369,19070977,19136513],"socket":[589825,3670017,18284545],"salt":[7143426,11599874,12713986,18087938],"starts":[9109508,9371649,9568257,9961473,10223617,17760260],"startclient":[9109505,9371650,17760257],"sendtolocalclienttarget":[11141122,12845059,13500418,13762563,18415619,18743298,18808834,18874370,18939906,19070978,19136514],"sendtoservertarget":[9306115,9830403,11141122,13500418,14352387,18743298,18808834,18874370,18939906,19070978,19136514],"stopserver":[9109505,10944514,17760257],"switchscene":[6750209,11534338,17694721],"startclientwebsocket":[9109505,9568258,17760257],"site":[6291457],"size":[262146,2293762,13959169,15138818,15204353,17235970],"string":[917506,983042,1310722,1966082,2818050,2949122,3407874,3473410,3538946,4194306,4325378,4587522,4849666,4980738,5308418,7077906,7274514,8323074,8519686,8716290,8847366,8978438,9043974,9109522,9175046,9306118,9437190,9502726,9633798,9699334,9764870,9830406,9895942,10027014,10092550,10158086,10289158,10354694,10485766,10813446,10878982,11075590,11141194,11206662,11534338,11665414,12845062,13500491,13565956,13631492,13762566,13828100,14352388,14614534,14680065,15138818,15466502,15597580,15859714,16711683,17367052,17760274,17825796,18219012,18415620,18546692,18612242,18677764,18743370,18808906,18874443,18939978,19005458,19071050,19136586],"sendtickrate":[262145,3604482,17235969],"start":[11468801,17235969],"server":[786433,1048577,4259841,5111809,6750209,6946820,7274500,8519681,8847361,8978433,9043969,9109506,9175041,9306113,9437185,9502721,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10813441,10878977,10944513,11075585,11141148,11206657,11337729,11468801,11534337,11665409,11796481,12320769,12582913,12845057,12976130,13500444,13565954,13631490,13762561,14024706,14090242,14286850,14352386,14417923,14548994,14614529,15007745,15138817,15400961,15466497,15597574,15663105,15859713,16318465,16384001,16711681,16842753,17104900,17170433,17235969,17367046,17694721,17760262,17825794,17891329,18219010,18350081,18415618,18546690,18677762,18743324,18808862,18874398,18939932,19005444,19071006,19136543],"switching":[262145,2555905,17235969],"summary":[4194305,4325377,4587521,4849665,4980737,5308417],"started":[14417921,17170433,17760257],"syncvarsyncdelay":[655361,720897,1048577,1638401,4063234,18808833,18874369,19070977,19136513],"starthost":[9109505,9961476,17760257],"startcoroutine":[7077891,7274499,9109507,11141123,13500419,17760259,18612227,18743299,18808835,18874371,18939907,19005443,19070979,19136515],"structure":[393217,1376257,1441793,1507329,5963777,7208961,7340033,7405569,7667713,7733249,7798785,8060929,8192001,8388609,11468802,12910593,13041665,13697025,15007745,16777218],"system":[7340033,7602179,7798788,8192001,8323074,8519684,8585219,8650755,8716290,8847363,8978436,9043972,9175043,9306115,9437187,9502724,9633796,9699330,9764867,9830402,9895939,9961478,10027010,10092547,10158083,10289155,10354690,10485762,10813443,10878978,11075587,11206660,11272195,11337729,11534337,11599874,11665411,11927554,12189698,12582913,12648454,12713986,12845059,13172738,13303809,13762562,13828098,13893634,13959173,14155777,14483458,14614530,15138819,15204357,15466499,15859713,16121858,16449537,16711682,17104897,17235969,17629185,17694721,17760257,17891330,18022401,18087937,18284545,18350082,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"support":[327681,1179649,16449537],"serializes":[6422529,14876673,19202049],"startserver":[9109505,10223618,17760257],"singleton":[14417922,15794179,17760258],"secondshistory":[262145,2883586,17235969],"serializing":[12124161,19202049],"spawnableprefabs":[15138817],"settrigger":[13172740,13500418,13828100,14680067,18874370],"sendtoclientstarget":[8847363,9175043,9633795,9699331,10289155,11141126,11206659,13500422,17367047,18743302,18808838,18874374,18939910,19070982,19136518],"snaping":[1048577,6225921,19136513],"signkeyexchange":[262145,3342338,17235969],"sends":[655361,720897,1048579,1638401,4063233,5570561,5832705,8519681,8847361,8978433,9043969,9175041,9306113,9437185,9502721,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,10289153,10354689,10485761,10813441,10878977,11075585,11141148,11206657,11665409,12845057,13500444,13565954,13631490,13762561,14352386,14614529,15466497,15597574,17367046,17825794,18219010,18415618,18546690,18677762,18743324,18808861,18874397,18939932,19071005,19136543],"static":[7405569,8388609,11534337,11599873,11927553,12189697,12713985,13303809,13369345,13697025,13893633,13959169,14155777,14483457,14876673,15007746,15138817,15204353,15794177,15859713,16121857,16318465,16711681,16777217,17104897,17432577,17694721,18087937,19202049,19267585,19333121],"seconds":[262146,655361,720897,1048577,1572865,1638402,2883585,4063233,6619138,6815745,13893634,14417921,14483457,15335426,17170433,17235970,17760257,18808833,18874369,19070978,19136513,19333122],"suitable":[7208961],"struct":[7798785,8192001,13041666,16777219],"startcoroutine_auto":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"simulation":[14811137,17432577,19333121],"smaller":[6488065,11927553,19267585],"sendmessage":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516],"scenenames":[262145,2949121,17235969],"sendtoclient":[8978435,10813443,11141122,13500418,13565955,18743298,18808834,18874370,18939906,19070978,19136514],"serves":[5963777,7208961,16777217],"sendtolocalclient":[11141122,11665411,13500418,14614531,18219011,18743298,18808834,18874370,18939906,19070978,19136514],"simulate":[6619138,13893635,14483459,15335427,19333122]} \ No newline at end of file diff --git a/docs/fti/FTI_116.json b/docs/fti/FTI_116.json index ef43b89..cf2cb76 100644 --- a/docs/fti/FTI_116.json +++ b/docs/fti/FTI_116.json @@ -1 +1 @@ -{"tostring":[4325377,4718593,5046273,5505025,6029313,6619137,7405569,8650753,8847361,11468801,14352385,14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"try":[5308417,13828097],"tracked":[11534337,15794177],"trackedobject":[7405571,9043972,11534337,12189699,14614530,15794182],"talk":[327681,1769473,15466497],"title":[131073],"transforms":[11665409,15925249],"typeid":[11337729,14417921,14942209,15204353],"top":[65537,196609,262145,327681,393217,458753,524289,589825,720897,4325377,4718593,4784129,5046273,5111809,5373953,5505025,5570561,6029313,6619137,7405569,8650753,8847361,10158081,10878977,11337729,11403265,11468801,11599873,11796481,11730945,11927553,11993089,12189697,12255233,12582913,12648449,12713985,12910593,13107201,13238273,13434881,13631489,13762561,13828097,14155777,14221313,14352385,14417921,14680065,14811137,14942211,15204356,15335427,15466499,15532036,15597572,15663108,15728644,15794179,15859716,15925252,15990785,16056321,16121858,16187393,16252929],"timing":[327681,1245185,15466497],"transform":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"todo":[9306113,9830401,10289153,10616833,10944513,11468805,13434882,15597573],"turns":[4784132,10551298,10682370,10747905,13762564,14680065,15990785,16121860],"triggername":[10944515],"typo":[13828097],"time":[4784131,10551299,10682370,11993090,13565954,13762563,15728642,16121859],"true":[5701633],"trusted":[327681,1966081,15466497],"topic":[1],"tag":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"times":[327683,2097153,2162689,2621441,15466499],"type":[65537,196609,262145,327682,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048578,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4915201,4980737,5046273,5111809,5242881,5373953,5505025,5570561,5701634,5963778,6029323,6094852,6160387,6225922,6291459,6356994,6422532,6488070,6553605,6619147,6684676,6750211,6815747,6881284,6946822,7012355,7077894,7143428,7208965,7274502,7340037,7405579,7471110,7536644,7602179,7667717,7798790,7864321,7929859,7995393,8126465,8257539,8323073,8454147,8585217,8650763,8716293,8847371,9175045,9240581,9306114,9437185,9568259,9633795,9699333,10092547,10289154,10354690,10485763,10551298,10616833,10682370,10747908,10813443,10944513,11075587,11141123,11206660,11337729,11468811,11599873,11730945,11796481,11993089,12058625,12124163,12189697,12255233,12320769,12386305,12451841,12517377,12648449,12779521,12845057,12910593,12976129,13041668,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14352395,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466498,15532043,15597579,15663115,15728651,15794187,15859723,15925259,15990785,16056321,16121857,16187393,16252929],"turned":[10551297,10682369]} \ No newline at end of file +{"tostring":[5242881,5505025,5898241,5963777,6094849,6356993,6684673,7012353,7077889,7274497,7471105,9109505,11141121,13500417,16449537,16777217,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"totalpoints":[14745601,16515074,18612225],"try":[6291457,13107201],"transport":[196609,262145,1114113,2752513,7798785,11468801,13041665,16777217,17235969,18284545,18481153],"tracked":[11862017,18612225],"trackedobject":[7077891,10747908,11862017,14745603,16187394,16515074,17432578,18612230],"talk":[262145,3211265,17235969],"title":[131073],"transforms":[11993089,19136513],"typeid":[13238273,13434881,17891329,18350081],"top":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1048577,1638401,5242881,5505025,5898241,5963777,6094849,6356993,6422529,6488065,6619137,6684673,6750209,6946817,7012353,7077889,7143425,7274497,7471105,9109505,11141121,12910593,13041665,13107201,13238273,13434881,13500417,13565953,13631489,13697025,14024705,14090241,14221313,14286849,14352385,14417921,14548993,14680065,14745601,14811137,15335425,15597569,16449539,16777221,17104897,17235971,17367041,17629187,17694721,17760260,17825793,17891331,18022403,18087937,18219009,18284547,18350084,18415617,18481155,18546689,18612227,18677761,18743297,18808836,18874372,18939905,19005444,19070980,19136516,19202049,19267585,19333122],"timing":[262145,1572865,17235969],"transform":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"todo":[11272193,12255233,12648449,13172737,13500421,13828097,14680066,18874373],"turns":[6422529,6619140,13893634,14155777,14483458,15335428,19202049,19333124],"triggername":[13828099],"typo":[13107201],"time":[6619139,13893634,14417922,14483459,14745601,15335427,16187393,17170434,17760258,18612225,19333123],"trigger":[786433,5046273,17760257],"true":[589825,3670017,7340033,7405569,7602177,7667713,7798786,8060929,8388609,18284545],"transporthost":[589827,2752514,3473410,3670018,3997698,5505027,7864324,11468801,18284550],"table":[7208961],"tcp":[589825,3670017,18284545],"topic":[1],"tag":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"times":[262147,2359297,2424833,3604481,17235971],"total":[14745601,16515073,18612225],"type":[65537,196611,262146,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114116,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097154,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6684673,6750209,6815745,6946817,7012353,7077899,7143425,7208961,7274507,7340034,7405571,7471105,7602178,7667713,7733249,7798788,8060929,8192001,8323074,8388611,8519684,8585218,8650754,8716291,8847366,8978436,9043972,9109515,9175046,9306115,9437190,9502724,9633796,9699333,9764867,9830405,9895942,9961474,10027013,10092550,10158083,10289155,10354693,10485765,10813446,10878981,11075587,11141131,11206660,11272194,11337729,11468801,11534337,11599875,11665411,11927555,12189699,12582913,12648450,12713987,12845059,12910593,13172737,13238273,13303810,13434881,13500427,13697025,13762565,13828097,13893634,13959171,14024705,14090241,14155780,14221313,14286849,14417921,14483458,14548993,14614533,14745601,14811137,14876676,14942209,15007745,15073281,15138819,15204355,15269889,15400961,15466499,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121859,16187393,16252929,16318465,16384001,16449538,16515073,16580609,16646145,16711684,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235970,17301505,17432577,17498113,17563649,17629185,17694721,17760267,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481155,18612235,18743307,18808843,18874379,18939915,19005451,19070987,19136523,19202049,19267585,19333121],"turned":[262146,1703938,13893633,14483457,17235970]} \ No newline at end of file diff --git a/docs/fti/FTI_117.json b/docs/fti/FTI_117.json index 4a96b19..2fab170 100644 --- a/docs/fti/FTI_117.json +++ b/docs/fti/FTI_117.json @@ -1 +1 @@ -{"useguilayout":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"url":[13828097],"unique":[11730945,13303809,15663105],"uint":[6356993,9633793,11141121,12124161,13303809,13697025],"unityengine":[13041666],"ump":[6029316,6619140,7405572,8650756,8847364,11468804,14352388,15532036,15597572,15663108,15728644,15794180,15859716,15925252],"uint32":[6356995,9633793,11141121,12124161,13303809,13697025],"updated":[65537,786433,15204353],"user":[6094850,6160386,6422530,6488066,6553602,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7471106,7536642,7602178,7667714,7798786,7929858,8257538,8454146,8716290,9175042,9240578,9699330],"used":[262145,327684,851969,1310721,1376257,1703937,1900545,6291457,11272193,11534338,11730945,12255233,13959169,14286849,15335425,15466501,15597569,15663106,15794177],"uint16":[1769473,13500417],"ushort":[1769473,13500417]} \ No newline at end of file +{"useguilayout":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"url":[13107201],"unique":[14221313,15990785,19005441],"uint":[3866625,4390913,4456450,5373953,7733249,8192001,8519681,8585217,8716289,8847361,8978433,9043969,9502721,9633793,11206657,11337729,12189697,12582913,14483457,15138817,15990785,16121857,16252929,16580609,16646145,16842753,17563649],"unityengine":[9961476,16711682],"ump":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516],"uint32":[3866625,4390913,4456450,5373953,6619137,7733249,8192002,8519682,8585219,8716289,8847362,8978434,9043970,9502722,9633794,11141127,11206658,11337729,12189697,12582913,13041665,13500423,13565953,14483458,15138817,15335425,15597570,15990785,16121857,16252929,16580609,16646145,16777217,16842753,17367043,17563649,17825793,18743303,18808839,18874375,18939911,19070983,19136519,19333121],"updated":[65537,917505,18350081],"unity":[786433,5046273,17760257],"user":[8519682,8847362,8978434,9043970,9175042,9306114,9437186,9502722,9633794,9699330,9764866,9830402,9895938,10027010,10092546,10158082,10289154,10354690,10485762,10813442,10878978,11075586,11206658,11665410,12845058,13762562,14614530,15466498],"using":[9109505,9568257,17760257],"udp":[589825,3670017,18284545],"uses":[262146,1703937,2752513,17235970],"used":[262147,458753,786433,2162689,2621441,2949121,3276801,5046273,8716289,11468801,11862018,14090241,16973825,17235972,17629185,17760257,18612225,18874369,19005441],"uint16":[1376257,3211265,7798786,13041665,16777217,17039361],"ushort":[1376257,3211265,7798785,17039361]} \ No newline at end of file diff --git a/docs/fti/FTI_118.json b/docs/fti/FTI_118.json index 2655244..5b12679 100644 --- a/docs/fti/FTI_118.json +++ b/docs/fti/FTI_118.json @@ -1 +1 @@ -{"verified":[10485761,11075585,14811138,16056322],"valid":[11993089,15400961,15728641],"virtual":[5439489,5767169,5898241],"view":[655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4849665,4915201,4980737,5177345,5242881,5439489,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10944513,11075585,11141121,11206657,12058625,12124161,12320769,12386305,12451841,12517377,12779521,12845057,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14548993,14614529,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"versions":[327681,1769473,15466497],"vector3":[13041667],"value":[655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4915201,4980737,5242881,5701633,5963777,6291457,6356993,9306113,9568257,9633793,10092545,10289155,10354689,10485761,10747905,10813441,11075585,11206657,12124161,12320769,12386305,12517377,12779521,12845057,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14286849,14483457,14548993,14614529,14745601,14876673,15007745,15073281,15138817,15269889,15400961],"variables":[11010050,14942209,15204353],"version":[327681,655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769474,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4849665,4915201,4980737,5177345,5242881,5439489,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10944513,11075585,11141121,11206658,12058625,12124161,12320769,12386305,12451841,12517377,12779521,12845057,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14548993,14614529,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466498,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"void":[5439489,5767169,5898241,6094849,6160385,6225921,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7798785,7864321,7929857,7995393,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8978433,9175041,9240577,9371649,9437185,9502721,9699329,9830401,10027009,10289153,10420225,10551297,10616833,10682369,10944513,11141121,12058625,12451841]} \ No newline at end of file +{"verified":[6488066,13959169,15204353,19267586],"valid":[14417921,16842753,17760257],"values":[7798785,13041665,16777217],"virtual":[8126465,8454145,8912897],"view":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"versions":[262145,3211265,17235969],"vector3":[4456450,9961476,16711683],"value":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6815745,7208961,7340033,7405569,7602177,7667713,7733249,8060929,8388609,8585217,8650753,8716289,11272193,11599873,11927553,12189697,12648451,12713985,13303809,13959169,14155777,14876673,14942209,15007745,15073281,15204353,15269889,15400961,15532033,15663105,15728641,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16384001,16515073,16580609,16646145,16711681,16842753,16908289,16973825,17039361,17170433,17301505,17432577,17498113,17563649,17956865,18153473],"variables":[12976130,17891329,18350081],"version":[262145,917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211266,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876674,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235970,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"valuetype":[5963779,16777219],"void":[8126465,8323073,8454145,8519681,8847361,8912897,8978433,9043969,9175041,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10551297,10682369,10813441,10878977,10944513,11075585,11206657,11337729,11403265,11534337,11665409,11730945,11796481,12255233,12320769,12451841,12582913,12648449,12845057,13172737,13369345,13762561,13828097,13893633,14483457,14614529,15138817,15466497,15859713,16318465]} \ No newline at end of file diff --git a/docs/fti/FTI_119.json b/docs/fti/FTI_119.json index 7fbf93a..88ddc1e 100644 --- a/docs/fti/FTI_119.json +++ b/docs/fti/FTI_119.json @@ -1 +1 @@ -{"warp":[720897,3997697,15859713],"web":[13828097],"wait":[327681,1245185,15466497],"write":[11534337,15532033],"warpondestinationchange":[720897,3997698,15859713],"wheter":[327686,1048577,1179649,1441793,1507329,1835009,3014657,11993090,14876673,15269889,15466502,15728642]} \ No newline at end of file +{"warp":[1638401,5177345,19070977],"web":[13107201],"wait":[262145,1572865,17235969],"websockets":[589826,3670019,9109505,9568257,17760257,18284546],"write":[11862017,18808833],"warpondestinationchange":[1638401,5177346,19070977],"wheter":[196609,262150,327681,524289,1179649,1245185,1769473,1900545,2031617,2097153,2555905,3145729,3342337,5963777,7667713,14417922,16384001,16449537,16777217,17235974,17760258,17956865,18022401,18481153]} \ No newline at end of file diff --git a/docs/fti/FTI_120.json b/docs/fti/FTI_120.json index 5bd8138..a6502ab 100644 --- a/docs/fti/FTI_120.json +++ b/docs/fti/FTI_120.json @@ -1 +1 @@ -{"xml":[327682,2228225,2424833,15466498]} \ No newline at end of file +{"xml":[262146,2818049,3407873,17235970]} \ No newline at end of file diff --git a/docs/fti/FTI_97.json b/docs/fti/FTI_97.json index 986d9bc..f0614bb 100644 --- a/docs/fti/FTI_97.json +++ b/docs/fti/FTI_97.json @@ -1 +1 @@ -{"audio":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"allow":[327681,1048577,15466497],"assembly":[655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4849665,4915201,4980737,5177345,5242881,5439489,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10944513,11075585,11141121,11206657,12058625,12124161,12320769,12386305,12451841,12517377,12779521,12845057,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14548993,14614529,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"attribute":[4325380,5505028,11010050,11337729,14417921,14942216,15204360],"away":[327681,2621441,15466497],"animator":[12255234,14286853,15597570],"aes":[5570562,10092545,10813441,14221314],"assumed":[589825,4587521,15925249],"api":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"animations":[11665409,12255233,14286849,15597570],"accepted":[327681,1376257,15466497],"administrator":[5308417],"approved":[327681,2490369,15466497],"approval":[327681,1507329,15466497],"assumesyncedsends":[589825,4587522,15925249],"available":[13828097],"animation":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"address":[327682,983043,13828097,15466498],"array":[9568258,10092545,10813441,11141121,14811137,16056321],"allowpassthroughmessages":[327681,1048578,15466497],"action":[2490372,3145730,3407874,3604482,4784132,6291460,10551303,10682375,13762564,16121860],"aeskey":[262145,851970,15335425],"attributes":[65537,786434,4325377,4849666,5177346,5505025,11010049,11337729,14417921,14942211,15204355],"abstract":[15532033],"application":[196609,2686977,11993089,13565953,15728642],"automatically":[1,11010050,14942209,15204353]} \ No newline at end of file +{"audio":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"allow":[262145,2097153,17235969],"assembly":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"attribute":[5242884,5898244,12976130,13238273,13434881,17891336,18350088],"away":[262145,3604481,17235969],"animator":[14090242,16973829,18874370],"average":[14745601,16187393,18612225],"aes":[7143426,11599873,12713985,18087938],"assumed":[1048577,5570561,19136513],"api":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"animations":[11993089,14090241,16973825,18874370],"accepted":[262145,2621441,17235969],"administrator":[6291457],"algorithms":[7208961],"approval":[262145,786433,1769473,4456449,17235969,17760257],"avgtimebetweenpointsms":[14745601,16187394,18612225],"assumesyncedsends":[1048577,5570562,19136513],"acts":[786433,5046273,17760257],"assigned":[393217,1376257,16777217],"available":[13107201],"animation":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"address":[262145,1966081,13107201,17235969],"array":[6488065,11599873,11927554,12713985,15138817,19267585],"allowpassthroughmessages":[262145,2097154,17235969],"action":[4259842,4390914,4456452,5373954,6619140,8716292,13893639,14483463,15335428,19333124],"aeskey":[458753,3276802,17629185],"attributes":[65537,917506,5242881,5898241,7536642,7929858,12976129,13238273,13434881,17891331,18350083],"abstract":[18808833],"application":[786433,4521985,14417921,17170433,17760258],"automatically":[1,12976130,17891329,18350081],"accuracy":[262145,1703937,17235969]} \ No newline at end of file diff --git a/docs/fti/FTI_98.json b/docs/fti/FTI_98.json index e6ed54c..917940a 100644 --- a/docs/fti/FTI_98.json +++ b/docs/fti/FTI_98.json @@ -1 +1 @@ -{"binary":[6094849,6160385,6422529,6684673,6750209,6815745,6881281,7012353,7143425,7274497,7471105,7536641,7602177,7667713,7798785,7929857,8257537,8454145,8650760,8716289,8847368,9175041,9240577,9568258,9633794,9699329,10158081,10354690,10420226,10485763,10747910,10878978,11075587,11206660,11403265,11468808,11862018,11927553,12124162,12713985,13238273,13631489,14352392,14680067,14811137,15532040,15597576,15859720,15925256,15990790,16056323],"box":[13828097],"broadcastmessage":[6029316,6619140,7405572,8650756,8847364,11468804,14352388,15532036,15597572,15663108,15728644,15794180,15859716,15925252],"behaviour":[11599874,11730946,11993090,12189698,12255234,12648450,12910594,15532035,15597571,15663107,15728643,15794179,15859715,15925251],"buffer":[327681,1572865,5570562,6094849,6160385,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7340033,7536641,7602177,7929857,8257537,8454145,8650772,8847380,10092546,10158081,10485761,10813442,10878980,11075585,11403265,11468820,11927553,12582918,12713985,13107202,13238273,13631489,14155778,14221314,14352404,14811138,15466497,15532052,15597588,15859732,15925268,16056322],"binaryserializer":[10420226,10747906,11206658,11862017,14680067,15990788],"binaryignore":[4849668,5505027,11010049,14417923,14942214],"based":[4784129,10551297,13762561,16121857],"bool":[1048577,1179649,1441793,1507329,1835009,2490369,2686977,2883585,3014657,3080193,3276801,3670017,3866625,3997697,4194305,4521985,4587521,5701633,5963777,9306113,9633793,10289153,10354689,12124161,12320769,12386305,12517377,12779521,12845057,12976129,13172737,14483457,14745601,14876673,15007745,15073281,15138817,15269889],"base":[11534337,15532033],"bytes":[5570562,9568257,10092545,10813441,14221314],"byte":[851970,1376258,2490370,5701634,5963780,6094851,6160387,6291458,6422531,6684675,6750211,6815747,6881283,7012355,7143427,7536643,7602179,7929859,8257539,8454147,8650766,8847374,9568262,9633794,10092551,10158081,10354690,10485765,10747906,10813447,10878979,11075589,11206658,11403265,11468814,11927553,12124162,12582915,12713985,13107201,13238273,13631489,14155777,14352398,14811137,15532046,15597582,15859726,15925262,16056321],"background":[196609,2686977,15728641],"boolean":[1048577,1179649,1441793,1507329,1835009,2490369,2686977,2883585,3014657,3080193,3276801,3670017,3866625,3997697,4194305,4521985,4587521,5701635,5963777,6029320,6619144,7405576,8650760,8847368,9306113,9633793,10289155,10354689,11468808,12124161,12320769,12386305,12517377,12779521,12845057,12976129,13172737,14352392,14483457,14745601,14876673,15007745,15073281,15138817,15269889,15532040,15597576,15663112,15728648,15794184,15859720,15925256]} \ No newline at end of file +{"binary":[6422531,6488065,8519681,8978433,9043969,9306113,9437185,9502721,9633793,9764865,9830401,9895937,10027009,10158081,10289153,10354689,10485761,10813441,11075585,11141128,11206657,11665409,11927554,12124162,12189698,12845057,13303810,13369346,13500424,13565953,13631489,13959171,14155782,14352385,14614529,14876676,15204355,15466497,15597570,16121858,18219009,18546689,18677761,18743304,18808840,18874376,18939912,19070984,19136520,19202054,19267587],"box":[13107201],"broadcastmessage":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516],"behaviour":[14024706,14090242,14221314,14286850,14417922,14548994,14745602,17760259,18612227,18808835,18874371,19005443,19070979,19136515],"buffer":[262145,2293761,6488066,7143426,8519681,8847361,8978433,9043969,9175041,9306113,9502721,9633793,9699329,9764865,10092545,10158081,10289153,10878977,11075585,11141140,11206657,11599874,11665409,12713986,12845057,13500436,13565953,13631489,13762561,13959169,14352385,15204353,15466497,15597572,17235969,17367046,17825794,18087938,18219009,18415618,18546689,18677761,18743316,18808852,18874388,18939924,19070996,19136532,19267586],"binaryserializer":[6422531,12124161,13369346,14155778,14876674,19202052],"binaryignore":[5242883,7536644,12976129,13238275,17891334],"based":[6619137,14483457,15335425,19333121],"bool":[786433,1179649,1245185,1703937,1769473,1900545,2031617,2097153,2555905,3145729,3342337,3670017,3932161,4456449,4521985,4718593,4784129,5046274,5111809,5177345,5439489,5570561,5767169,7340033,7405569,7602177,7667713,7798786,8060929,8388609,8650753,11272193,12189697,12648449,13303809,14942209,15073281,15269889,15400961,15532033,15663105,15728641,16056321,16121857,16384001,16908289,17301505,17498113,17760257,17956865,18153473],"base":[11862017,18808833],"bytes":[7143426,11599873,11927553,12713985,18087938],"byte":[1441794,1507330,2621442,3276802,4456450,6488065,7602178,7798787,8519683,8650756,8716290,8978435,9043971,9306115,9502723,9633795,9764867,10158083,10289155,11075587,11141134,11206659,11599879,11665411,11927558,12189698,12713991,12845059,13041665,13303810,13500430,13565953,13631489,13959173,14155778,14352385,14876674,15204357,15466499,15597571,16121858,16777217,17367043,17825793,18219009,18415617,18546689,18677761,18743310,18808846,18874382,18939918,19070990,19136526,19267585],"background":[786433,4521985,17760257],"boolean":[1179649,1245185,1703937,1769473,1900545,2031617,2097153,2555905,3145729,3342337,3670017,3932161,4456449,4521985,4718593,4784129,5046273,5111809,5177345,5439489,5570561,5767169,7077896,7274504,7340033,7405569,7602179,7667713,7798788,8060929,8388609,8650753,9109512,11141128,11272193,12189697,12648451,13041666,13303809,13500424,14942209,15073281,15269889,15400961,15532033,15663105,15728641,16056321,16121857,16384001,16777218,16908289,17301505,17498113,17760264,17956865,18153473,18612232,18743304,18808840,18874376,18939912,19005448,19070984,19136520]} \ No newline at end of file diff --git a/docs/fti/FTI_99.json b/docs/fti/FTI_99.json index 29cf916..956198e 100644 --- a/docs/fti/FTI_99.json +++ b/docs/fti/FTI_99.json @@ -1 +1 @@ -{"comparetag":[6029313,6619137,7405569,8650753,8847361,11468801,14352385,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"creates":[5111809,11141121,16187393],"channelname":[6094851,6160387,6422531,6488067,6553603,6684675,6750211,6815747,6881283,6946819,7012355,7077891,7143427,7208963,7274499,7340035,7471107,7536643,7602179,7667715,7798787,7929859,8257539,8454147,8716291,9175043,9240579,9699331],"check":[13828097],"clientconnectionbuffertimeout":[327681,1245186,15466497],"connect":[327682,983041,1638401,15466498],"collider2d":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"contents":[327681,1703937,15466497],"clears":[10420225,14680065,15990785],"controlling":[9895937,16121857],"changeownership":[6029313,7995394,15663105],"chunk":[9568257,10485761,11075585,11862017,16056321],"code":[11534337,15532033],"core":[196609,393217,524289,2555906,2686978,2752514,2818050,3080194,3145730,3276802,3342338,3407874,3604482,4784129,5111809,5373953,5439490,5767170,5898242,6029313,6094850,6160386,6225922,6291458,6356996,6422530,6488066,6553602,6619137,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405569,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8716290,8781826,8847361,8912898,8978434,9043970,9175042,9240578,9437186,9699330,9895937,10158081,10551298,10682370,10878977,11141122,11403265,11534337,11599873,11796481,11730945,11927553,11993089,12058626,12189697,12320770,12386306,12451843,12517378,12582913,12713985,12779522,12845058,12976130,13041667,13107201,13172738,13238273,13303810,13369346,13500418,13565954,13631489,13697026,13762561,13893634,13959170,14024706,14090242,14155777,14483458,14548994,14614530,14745602,14876674,15007746,15073282,15138818,15269890,15400962,15532035,15597569,15663107,15728643,15794179,15859713,15925249,16121859,16187395,16252931],"constantforce":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"cryptography":[5570561,9961473,10092546,10813442,14221315],"configuration":[11272193,15466497],"correctiondelay":[720897,3735554,15859713],"constructor":[4849665,5177345,5636097,5832705,7733249,8060929,8912897,9043969,9109505,9764865,10223617],"converts":[10485761,11075585,14811138,16056322],"channels":[327683,1310723,1703937,15466499],"connects":[196609,3407873,15728641],"connectiondata":[327681,1376258,15466497],"clienti":[6422529,6488065,6684673,6946817,7143425,7274497,7536641,7798785,10551297],"clients":[327681,1638401,6160385,6422529,6488065,6553601,6684673,6815745,6946817,7143425,7208961,7274497,7536641,7602177,7798785,8257537,8650768,8716289,8847376,9240577,10878982,11403266,11468816,11599873,11730945,11927554,11993091,12255233,12582918,12648449,12910593,13172737,13565953,14352400,14483457,14548993,15400961,15466497,15532049,15597585,15663105,15728643,15859729,15925265],"checks":[9633793,10354689,12124161,14811139,16056323],"compensation":[327681,2949121,9895937,11534337,15466497,15794177,16121857],"connectionapproval":[327681,1507330,15466497],"contain":[13828097],"calls":[11993089,15400961,15728641],"classes":[9895937,9961473,11010049,11272193,11534337,11665409,11862018,15990785],"cryptographyhelper":[5570563,9961473,10092546,10813442,14221316],"connection":[327683,1376257,1507329,2490369,15466499],"createpool":[5111809,11141122,16187393],"camera":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"connectedclients":[11993089,14548994,15728641],"complete":[327681,1245185,15466497],"changed":[524289,3080193,15663105],"changes":[6029313,7995393,15663105],"cancelinvoke":[6029314,6619138,7405570,8650754,8847362,11468802,14352386,15532034,15597570,15663106,15728642,15794178,15859714,15925250],"contact":[5308417],"clearcache":[10420226,14680065,15990785],"compareconfig":[5046273,5963780,15466497],"chunks":[9568259,9633798,10354693,10485764,11075588,12124167,14811143,16056327],"correct":[10354689,10485761,11075585,14811139,16056323],"copy":[655361,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4390913,4456449,4521985,4587521,4653057,4849665,4915201,4980737,5177345,5242881,5439489,5636097,5701633,5767169,5832705,5898241,5963777,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,10027009,10092545,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10944513,11075585,11141121,11206657,12058625,12124161,12320769,12386305,12451841,12517377,12779521,12845057,12976129,13041665,13172737,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14221313,14286849,14483457,14548993,14614529,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929],"clearbuffer":[10813442],"corrections":[720898,3735553,4128769,15859714],"collider":[11599873,11730945,11993089,12189697,12255233,12648449,12910593,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"connected":[11993090,14548993,15073281,15728642],"chunksize":[9568258,10485762,11075586],"coroutine":[6029313,6619137,7405569,8650753,8847361,11468801,14352385,15532033,15597569,15663105,15728641,15794177,15859713,15925249],"connectionapprovalcallback":[327681,2490370,15466497],"compares":[5046273,5963777,15466497],"called":[5111812,5373953,5439489,5767169,5898241,6029316,7864321,7995393,8192001,8519681,8650754,8847363,9437185,11141121,11468802,12058625,12451841,13041665,14352386,15532035,15597570,15663108,15859714,15925250,16187396,16252929],"component":[6029350,6619174,7405606,8650790,8847398,11468838,11534340,11599892,11665411,11730964,11993108,12189716,12255253,12648468,12910612,14286849,14352422,15532091,15597629,15663164,15728700,15794237,15859772,15925308],"collections":[6488065,6684673,7143425,7274497,9633793,10354689,10485762,11075586,12124161],"callback":[196611,327681,2490369,3145729,3407873,3604481,6291457,15466497,15728643],"class":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849666,4915201,4980737,5046273,5111809,5177346,5242881,5373953,5439489,5505025,5570561,5636098,5701633,5767169,5832706,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488066,6553602,6619137,6684673,6750209,6815745,6881281,6946818,7012353,7077890,7143425,7208962,7274499,7340034,7405569,7471107,7536641,7602177,7667715,7733250,7798787,7864321,7929857,7995393,8060930,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650761,8716291,8781825,8847369,8912898,8978433,9043970,9109506,9175043,9240579,9306113,9371649,9437185,9502721,9568257,9633793,9699331,9764866,9830401,9895940,9961474,10027009,10092545,10158082,10223618,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747906,10813441,10878979,10944513,11010049,11075585,11141121,11206659,11272193,11337729,11403266,11468809,11534338,11599873,11665409,11796481,11730945,11862019,11927554,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713986,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238274,13303809,13369345,13434881,13500417,13565953,13631490,13697025,13762561,13893633,13959169,14024705,14090241,14155777,14221315,14286849,14352393,14417921,14483457,14548993,14614529,14680067,14745601,14811137,14876673,14942211,15007745,15073281,15138817,15204355,15269889,15335427,15400961,15466499,15532044,15597579,15663107,15728643,15794179,15859723,15925259,15990789,16056323,16121859,16187395,16252931],"checking":[327681,2097153,15466497],"cache":[5701635,10420225,14680065,15990785],"clientid":[262145,917506,4784129,6094852,6881284,7077892,7471108,7864323,7995393,8650756,8847364,10158082,10551299,11468804,11599873,11730945,11993089,12255233,12648449,12910593,13107202,13762561,13893633,14090241,14352388,15335425,15400961,15532037,15597573,15663105,15728641,15859717,15925253,16121857],"client":[196610,262147,327682,655361,851969,1114113,1245185,1376257,3145729,3407873,5767169,6029313,6094849,6619138,6750209,6881281,7012353,7077889,7340033,7471105,7667713,7929857,8192001,8323073,8388609,8454145,8650765,8847373,9175041,9699329,10158082,11010050,11272193,11468813,11599874,11993091,12255234,12320769,12648450,12713986,12845057,12910594,13107202,13238274,13631490,14155778,14352397,14876673,14942209,15073281,15204353,15335427,15400961,15466499,15532047,15597583,15663105,15728647,15859727,15925263],"current":[196609,2752513,5046273,5963777,15466497,15728641],"clientids":[6422530,6488066,6684674,6946818,7143426,7274498,7536642,7798786],"change":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720898,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997698,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859714,15925249,15990785,16056321,16121857,16187393,16252929],"counter":[6225922],"constructors":[14942209,15204353,15335425,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249]} \ No newline at end of file +{"compare":[7340033,7405570,8388610],"comparetag":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"creates":[6946817,15138817,17104897],"connectaddress":[262145,1966082,17235969],"channelname":[8519683,8847363,8978435,9043971,9175043,9306115,9437187,9502723,9633795,9699331,9764867,9830403,9895939,10027011,10092547,10158083,10289155,10354691,10485763,10813443,10878979,11075587,11206659,11665411,12845059,13762563,14614531,15466499],"connecting":[262145,1835009,17235969],"check":[13107201],"clientconnectionbuffertimeout":[262145,1572866,17235969],"connect":[262146,1966081,2490369,17235970],"collider2d":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"connectionid":[393218,1376259,7798786,16777218],"clears":[6422529,13369345,19202049],"controlling":[12386305,19333121],"changeownership":[7274497,11337730,19005441],"chunk":[11927553,12124161,13959169,15204353,19267585],"code":[7208961,11862017,18808833],"core":[655361,786433,851969,3538946,3932162,4063234,4128770,4259842,4390914,4456450,4521986,5046274,5373954,6619137,6750209,6946817,7077889,7274497,8126466,8323074,8454146,8519682,8585220,8716290,8847362,8912898,8978434,9043970,9109505,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961476,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11075586,11141121,11206658,11337730,11534338,11665410,11796482,11862017,12320770,12386305,12582914,12845058,13565953,13631489,13762562,13893634,14024705,14221313,14352385,14417921,14483458,14614530,14745601,14811137,14942210,15073282,15138818,15269890,15335425,15400962,15466498,15532034,15597569,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16187394,16252930,16318467,16384002,16515074,16580610,16646146,16711683,16842754,16908290,17039362,17104899,17170434,17301506,17367041,17432578,17498114,17563650,17694723,17760259,17825793,17956866,18153474,18219009,18415617,18546689,18612227,18677761,18808835,18874369,19005443,19070977,19136513,19333123],"constantforce":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"cryptography":[7143425,11599874,12517377,12713986,18087939],"configuration":[11468801,17235969],"correctiondelay":[1638401,6815746,19070977],"constructor":[6553601,6881281,7536641,7798785,7864321,7929857,7995393,8192001,8257537,8781825,9240577,10420225,10616833,10747905,11010049,12058625,12779521,13041665],"converts":[6488066,13959169,15204353,19267586],"channels":[262146,2162691,17235970],"connects":[786433,4390913,17760257],"connectiondata":[262145,2621442,17235969],"clienti":[8519681,8847361,9043969,9175041,9437185,9633793,9895937,11206657,14483457],"clients":[262145,2490369,8519681,8847361,9043969,9175041,9437185,9633793,9699329,9764865,9895937,10027009,10158081,10289153,10485761,10878977,11141136,11206657,13500432,14024705,14090241,14221313,14286849,14417923,14548993,15466497,15597574,16056321,16842753,16908289,17170433,17235969,17367046,17563649,17760259,18546690,18677762,18743312,18808849,18874385,18939920,19005441,19070993,19136529],"client1":[7405571,8388611],"client2":[7405571,8388611],"checks":[6488067,12189697,13303809,16121857,19267587],"compensation":[262145,2883585,11862017,12386305,17235969,18612225,19333121],"connectionapproval":[262145,1769474,17235969],"contain":[13107201],"calls":[14417921,16842753,17760257],"classes":[11468801,11862017,11993089,12124162,12386305,12517377,12976129,19202049],"cryptographyhelper":[7143427,11599874,12517377,12713986,18087940],"connection":[262146,786433,1769473,2621441,4456449,7798785,17235970,17760257],"createpool":[6946817,15138818,17104897],"camera":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"connectedclients":[14417921,17563650,17760257],"complete":[262145,1572865,17235969],"changes":[7274497,11337729,19005441],"cancelinvoke":[7077890,7274498,9109506,11141122,13500418,17760258,18612226,18743298,18808834,18874370,18939906,19005442,19070978,19136514],"connectport":[262145,1835010,17235969],"contact":[6291457],"channel":[196613,327681,983043,1114114,1179649,1245187,2162690,6094851,6553604,11468802,16449537,18481161],"clearcache":[6422529,13369346,19202049],"compareconfig":[6356993,8650756,17235969],"chunks":[6488071,11927555,12189702,13303813,13959172,15204356,16121863,19267591],"correct":[6488067,13303809,13959169,15204353,19267587],"copy":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"clearbuffer":[12713986],"corrections":[1638402,4915201,6815745,19070978],"collider":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"connected":[14417922,17563649,17760258,18153473],"comparison":[13697025,15007745,16777217],"chunksize":[11927554,13959170,15204354],"coroutine":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"connectionapprovalcallback":[786433,4456450,17760257],"compares":[6356993,8650753,17235969],"called":[6750209,6946820,7274500,8126465,8454145,8912897,11141123,11337729,11534337,11796481,12320769,12582913,13500418,15138817,15859713,16318465,16711681,17104900,17694721,18743298,18808835,18874370,18939906,19005444,19070978,19136514],"component":[7077926,7274534,9109542,11141158,11862020,11993091,13500454,14024724,14090261,14221332,14286868,14417940,14549012,14745621,16515073,16973825,17760316,18612286,18743334,18808891,18874429,18939942,19005500,19071036,19136572],"collections":[8519681,8847361,9437185,9633793,12189697,13303809,13959170,15204354,16121857],"callback":[786436,4259841,4390913,4456449,5373953,8716289,17760260],"class":[65537,196609,262145,327681,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,6029313,6094849,6160385,6225921,6356993,6422531,6488065,6553602,6619137,6684673,6750209,6815745,6881282,6946817,7012353,7077889,7143425,7274497,7471105,7536642,7602177,7864322,7929858,7995394,8126465,8257538,8323073,8454145,8519681,8585217,8650753,8716289,8781826,8847362,8912897,8978433,9043969,9109505,9175042,9240578,9306113,9371649,9437187,9502721,9568257,9633793,9699330,9764865,9830403,9895939,9961473,10027011,10092546,10158081,10223617,10289153,10354691,10420226,10485763,10551297,10616834,10682369,10747906,10813443,10878978,10944513,11010050,11075585,11141129,11206657,11272193,11337729,11403265,11468802,11534337,11599873,11665409,11730945,11796481,11862018,11927553,11993089,12058626,12124163,12189697,12255233,12320769,12386308,12451841,12517378,12582913,12648449,12713985,12779522,12845057,12976129,13172737,13238273,13303809,13369345,13434881,13500425,13565954,13631490,13762562,13828097,13893633,13959169,14024705,14090241,14155778,14221313,14286849,14352386,14417921,14483457,14548993,14614531,14680065,14745601,14811137,14876675,14942209,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597571,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449539,16515073,16580609,16646145,16711681,16842753,16908289,16973825,17039361,17104899,17170433,17235971,17301505,17367041,17432577,17498113,17563649,17629187,17694723,17760259,17825793,17891331,17956865,18022404,18087939,18153473,18219010,18284547,18350083,18415617,18481155,18546690,18612227,18677762,18743305,18808844,18874379,18939913,19005443,19070987,19136523,19202053,19267587,19333123],"checking":[262145,2359297,17235969],"cache":[6422529,7602179,13369345,19202049],"clientid":[458753,3866626,5963779,6619137,7667713,7733249,8060929,8192003,8978436,9502724,10092548,10813444,11141124,11337729,11468801,12582915,13041665,13500420,13565954,14024705,14090241,14221313,14286849,14417921,14483459,14548993,15335425,16580609,16646145,16777221,16842753,17629185,17760257,17825794,18743300,18808837,18874373,18939908,19005441,19070981,19136517,19333121],"client":[262146,393219,458755,786434,1376257,1441793,1507329,1572865,2621441,3080193,3276801,3735553,4390913,5373953,7274497,7733249,8126465,8192001,8978433,9109507,9306113,9371649,9502721,9568257,9830401,10092545,10354689,10551297,10813441,11075585,11141133,11468801,11665409,11796481,12845057,12976130,13500429,13565954,13631490,13762561,14024706,14090242,14286850,14352386,14417923,14548994,14614529,15269889,15663105,16777219,16842753,17235971,17629187,17760264,17825794,17891329,17956865,18153473,18219010,18350081,18415618,18743309,18808847,18874383,18939917,19005441,19070991,19136527],"current":[786433,4128769,5963777,6356993,7340035,8650753,16777217,17235969,17760257],"clientids":[8519682,8847362,9043970,9175042,9437186,9633794,9895938,11206658],"change":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638402,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177346,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070978,19136513,19202049,19267585,19333121],"counter":[8323074],"constructors":[16449537,16777217,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513]} \ No newline at end of file diff --git a/docs/fti/FTI_Files.json b/docs/fti/FTI_Files.json index 74f7f39..9583511 100644 --- a/docs/fti/FTI_Files.json +++ b/docs/fti/FTI_Files.json @@ -1 +1 @@ -["MLAPI API Reference - Redirect\u0000index.html\u000018","SyncedVar Fields\u0000html/Fields_T_MLAPI_Attributes_SyncedVar.htm\u000051","MLAPI API Reference - Search\u0000search.html\u000012","NetworkingManager Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000112","NetworkedClient Fields\u0000html/Fields_T_MLAPI_Data_NetworkedClient.htm\u000066","NetworkingConfiguration Fields\u0000html/Fields_T_MLAPI_Data_NetworkingConfiguration.htm\u0000371","NetworkedBehaviour Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u000049","NetworkedAnimator Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u000070","NetworkedObject Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u000063","NetworkedTransform Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000124","NetworkedClient.PlayerObject Field\u0000html/F_MLAPI_Data_NetworkedClient_PlayerObject.htm\u000073","NetworkedNavMeshAgent Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u000085","SyncedVar.hook Field\u0000html/F_MLAPI_Attributes_SyncedVar_hook.htm\u000079","NetworkedClient.AesKey Field\u0000html/F_MLAPI_Data_NetworkedClient_AesKey.htm\u000078","NetworkedClient.ClientId Field\u0000html/F_MLAPI_Data_NetworkedClient_ClientId.htm\u000073","NetworkingConfiguration.Address Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_Address.htm\u000073","NetworkingConfiguration.AllowPassthroughMessages Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_AllowPassthroughMessages.htm\u000078","NetworkedClient.OwnedObjects Field\u0000html/F_MLAPI_Data_NetworkedClient_OwnedObjects.htm\u000080","NetworkingConfiguration.EnableEncryption Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_EnableEncryption.htm\u000074","NetworkingConfiguration.ClientConnectionBufferTimeout Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_ClientConnectionBufferTimeout.htm\u000083","NetworkingConfiguration.Channels Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_Channels.htm\u000085","NetworkingConfiguration.ConnectionData Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_ConnectionData.htm\u000090","NetworkingConfiguration.EnableSceneSwitching Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_EnableSceneSwitching.htm\u000075","NetworkingConfiguration.ConnectionApproval Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_ConnectionApproval.htm\u000075","NetworkingConfiguration.MessageBufferSize Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_MessageBufferSize.htm\u000083","NetworkingConfiguration.MaxConnections Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_MaxConnections.htm\u000077","NetworkingConfiguration.EncryptedChannels Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_EncryptedChannels.htm\u000086","NetworkingConfiguration.ProtocolVersion Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_ProtocolVersion.htm\u000080","NetworkingConfiguration.HandleObjectSpawning Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_HandleObjectSpawning.htm\u000078","NetworkingConfiguration.RegisteredScenes Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_RegisteredScenes.htm\u000086","NetworkingConfiguration.PassthroughMessageTypes Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_PassthroughMessageTypes.htm\u0000104","NetworkingConfiguration.MessageTypes Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_MessageTypes.htm\u000076","NetworkingConfiguration.EventTickrate Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_EventTickrate.htm\u000086","NetworkingConfiguration.ReceiveTickrate Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_ReceiveTickrate.htm\u000085","NetworkingConfiguration.RSAPrivateKey Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_RSAPrivateKey.htm\u000078","NetworkingConfiguration.Port Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_Port.htm\u000075","NetworkingConfiguration.MaxReceiveEventsPerTickRate Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_MaxReceiveEventsPerTickRate.htm\u000084","NetworkingConfiguration.RSAPublicKey Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_RSAPublicKey.htm\u000078","NetworkingConfiguration.ConnectionApprovalCallback Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_ConnectionApprovalCallback.htm\u0000115","NetworkingManager.DefaultPlayerPrefab Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DefaultPlayerPrefab.htm\u000077","NetworkingConfiguration.SendTickrate Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_SendTickrate.htm\u000082","NetworkingManager.RunInBackground Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RunInBackground.htm\u000083","NetworkingManager.NetworkConfig Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkConfig.htm\u000073","NetworkedBehaviour.SyncVarSyncDelay Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SyncVarSyncDelay.htm\u000078","NetworkedAnimator.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_EnableProximity.htm\u000073","NetworkingConfiguration.SecondsHistory Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_SecondsHistory.htm\u000079","NetworkingConfiguration.SignKeyExchange Field\u0000html/F_MLAPI_Data_NetworkingConfiguration_SignKeyExchange.htm\u000079","NetworkedObject.ServerOnly Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_ServerOnly.htm\u000092","NetworkingManager.OnClientDisconnectCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientDisconnectCallback.htm\u000084","NetworkedAnimator.param0 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param0.htm\u000086","NetworkingManager.DontDestroy Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DontDestroy.htm\u000081","NetworkingManager.SpawnablePrefabs Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_SpawnablePrefabs.htm\u000081","NetworkingManager.OnClientConnectedCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientConnectedCallback.htm\u000084","NetworkedAnimator.param1 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param1.htm\u000086","NetworkedAnimator.param3 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param3.htm\u000086","NetworkingManager.OnServerStarted Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnServerStarted.htm\u000079","NetworkedNavMeshAgent.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_EnableProximity.htm\u000073","NetworkedNavMeshAgent.CorrectionDelay Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_CorrectionDelay.htm\u000076","NetworkedAnimator.param5 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param5.htm\u000086","NetworkedTransform.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_EnableProximity.htm\u000074","NetworkedAnimator.param2 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param2.htm\u000086","NetworkedNavMeshAgent.WarpOnDestinationChange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_WarpOnDestinationChange.htm\u000076","NetworkedAnimator.param4 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param4.htm\u000086","NetworkedNavMeshAgent.DriftCorrectionPercentage Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_DriftCorrectionPercentage.htm\u000076","NetworkedTransform.InterpolateServer Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolateServer.htm\u000074","NetworkedNavMeshAgent.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_ProximityRange.htm\u000073","SyncedVar Methods\u0000html/Methods_T_MLAPI_Attributes_SyncedVar.htm\u0000103","NetworkedTransform.MinMeters Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinMeters.htm\u000080","NetworkedAnimator.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ProximityRange.htm\u000073","NetworkedTransform.InterpolatePosition Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolatePosition.htm\u000072","NetworkedTransform.AssumeSyncedSends Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_AssumeSyncedSends.htm\u000083","NetworkedTransform.SendsPerSecond Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SendsPerSecond.htm\u000073","NetworkedClient Methods\u0000html/Methods_T_MLAPI_Data_NetworkedClient.htm\u000087","LagCompensationManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000086","BinaryIgnore Constructor\u0000html/M_MLAPI_Attributes_BinaryIgnore__ctor.htm\u000072","NetworkedTransform.MinDegrees Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinDegrees.htm\u000080","NetworkedTransform.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_ProximityRange.htm\u000076","NetworkingConfiguration Methods\u0000html/Methods_T_MLAPI_Data_NetworkingConfiguration.htm\u0000109","NetworkPoolManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000121","SyncedVar Constructor\u0000html/M_MLAPI_Attributes_SyncedVar__ctor.htm\u000072","NetworkedTransform.SnapDistance Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SnapDistance.htm\u000077","General Error\u0000html/GeneralError.htm\u000033","NetworkSceneManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u000056","NetworkedBehaviour.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_NetworkStart.htm\u000084","BinaryIgnore Methods\u0000html/Methods_T_MLAPI_Attributes_BinaryIgnore.htm\u0000103","CryptographyHelper Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u000090","NetworkedClient Constructor\u0000html/M_MLAPI_Data_NetworkedClient__ctor.htm\u000072","NetworkingConfiguration.GetConfig Method\u0000html/M_MLAPI_Data_NetworkingConfiguration_GetConfig.htm\u0000140","NetworkedBehaviour.OnGainedOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnGainedOwnership.htm\u000080","NetworkingConfiguration Constructor\u0000html/M_MLAPI_Data_NetworkingConfiguration__ctor.htm\u000072","NetworkedBehaviour.OnLostOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnLostOwnership.htm\u000078","NetworkingConfiguration.CompareConfig Method\u0000html/M_MLAPI_Data_NetworkingConfiguration_CompareConfig.htm\u0000138","NetworkedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000704","NetworkedBehaviour.SendToClient Method (Int32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u0000149","NetworkedBehaviour.SendToClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm\u0000137","NetworkedBehaviour.DeregisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_DeregisterMessageHandler.htm\u000099","NetworkedBehaviour.RegisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm\u0000135","NetworkedBehaviour.GetNetworkedObject Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm\u0000136","NetworkedBehaviour.SendToClients Method (Int32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm\u0000149","NetworkedBehaviour.SendToClientsTarget(T) Method (List(Int32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm\u0000168","NetworkedBehaviour.SendToClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm\u0000134","NetworkingManager Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000695","NetworkedBehaviour.SendToClients Method (List(Int32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000154","NetworkedBehaviour.SendToLocalClient Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u0000127","NetworkedBehaviour.SendToClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm\u0000128","NetworkedBehaviour.SendToClientTarget Method (Int32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u0000157","NetworkedBehaviour.SendToClientsTarget(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm\u0000163","NetworkedBehaviour.SendToLocalClientTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u0000141","NetworkedBehaviour.SendToClientTarget(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm\u0000163","NetworkedBehaviour.SendToClientsTarget Method (List(Int32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000162","NetworkedBehaviour.SendToClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm\u0000143","NetworkedBehaviour.SendToClients(T) Method (List(Int32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm\u0000162","NetworkedBehaviour.SendToLocalClientTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm\u0000147","TrackedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000656","NetworkedBehaviour.SendToClient(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm\u0000157","NetworkedBehaviour.SendToClientsTarget Method (Int32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm\u0000157","NetworkedBehaviour.SendToNonLocalClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u0000133","NetworkedBehaviour.SendToLocalClient(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm\u0000135","NetworkedBehaviour Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour__ctor.htm\u000074","NetworkedBehaviour.SendToClients(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm\u0000157","NetworkedObject.SpawnWithOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnWithOwnership.htm\u0000100","NetworkedBehaviour.SendToServer Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u0000127","NetworkedObject.ChangeOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_ChangeOwnership.htm\u000094","NetworkedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject__ctor.htm\u000074","NetworkingManager.StartServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm\u000089","NetworkedObject.RemoveOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_RemoveOwnership.htm\u000084","NetworkedBehaviour.SendToNonLocalClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u0000142","NetworkingManager.StartClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm\u000089","NetworkingManager.StopClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm\u000072","NetworkedBehaviour.SendToServerTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u0000136","NetworkedObject.Spawn Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_Spawn.htm\u000082","NetworkingManager.StartHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm\u000089","NetworkedNavMeshAgent Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00001643","NetworkedBehaviour.SendToNonLocalClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm\u0000150","NetworkingManager.StopHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm\u000072","NetworkedBehaviour Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001417","NetworkingManager Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager__ctor.htm\u000074","NetworkingManager.StopServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm\u000072","TrackedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_TrackedObject__ctor.htm\u000074","NetworkedAnimator Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator__ctor.htm\u000074","NetworkedBehaviour.SendToServerTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm\u0000144","NetworkedBehaviour.SendToNonLocalClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm\u0000141","NetworkedAnimator.GetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_GetParameterAutoSend.htm\u0000126","NetworkedNavMeshAgent.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_NetworkStart.htm\u000072","NetworkSceneManager.SwitchScene Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager_SwitchScene.htm\u0000101","NetworkedAnimator.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_NetworkStart.htm\u000072","MessageChunker.GetChunkedMessage Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetChunkedMessage.htm\u0000132","MessageChunker.HasMissingParts Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasMissingParts.htm\u0000128","NetworkedBehaviour.SendToServer(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm\u0000135","NetworkedNavMeshAgent Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent__ctor.htm\u000074","NetworkedAnimator.ResetParameterOptions Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ResetParameterOptions.htm\u000069","MLAPI.NetworkingManagerComponents.Core Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Core.htm\u000046","MLAPI.NetworkingManagerComponents.Cryptography Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Cryptography.htm\u000030","NetworkedTransform.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_NetworkStart.htm\u000072","CryptographyHelper.Decrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Decrypt.htm\u0000137","NetworkedBehaviour.SendToClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u000081","NetworkedTransform Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform__ctor.htm\u000074","NetworkedAnimator.SetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetParameterAutoSend.htm\u0000139","MessageChunker.IsOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_IsOrdered.htm\u0000114","BinarySerializer.ClearCache Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_ClearCache.htm\u000075","MessageChunker.GetMessageOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageOrdered.htm\u0000176","LagCompensationManager.Simulate Method (Int32, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u0000136","NetworkedAnimator.SetTrigger Method (Int32)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u0000107","LagCompensationManager.Simulate Method (Single, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate_1.htm\u0000123","BinarySerializer.Deserialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Deserialize__1.htm\u0000122","CryptographyHelper.Encrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Encrypt.htm\u0000142","NetworkedBehaviour.SendToClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000159","NetworkedAnimator.SetTrigger Method (String)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger_1.htm\u0000107","MLAPI.Attributes Namespace\u0000html/N_MLAPI_Attributes.htm\u000059","MessageChunker.GetMessageUnordered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageUnordered.htm\u0000178","NetworkPoolManager.CreatePool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_CreatePool.htm\u0000137","BinarySerializer.Serialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Serialize__1.htm\u0000112","MLAPI.Data Namespace\u0000html/N_MLAPI_Data.htm\u000038","SyncedVar Properties\u0000html/Properties_T_MLAPI_Attributes_SyncedVar.htm\u000047","NetworkedBehaviour.SendToNonLocalClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u000081","NetworkedAnimator Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00001657","MLAPI.MonoBehaviours.Core Namespace\u0000html/N_MLAPI_MonoBehaviours_Core.htm\u000071","NetworkedBehaviour Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u0000364","MLAPI.MonoBehaviours.Prototyping Namespace\u0000html/N_MLAPI_MonoBehaviours_Prototyping.htm\u000045","NetworkedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000383","LagCompensationManager Properties\u0000html/Properties_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000043","MLAPI.NetworkingManagerComponents.Binary Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Binary.htm\u000038","NetworkedBehaviour.SendToNonLocalClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u000099","NetworkingManager Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000367","NetworkPoolManager.DestroyPool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPool.htm\u0000101","MessageChunker.HasDuplicates Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasDuplicates.htm\u0000134","TrackedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000282","NetworkedAnimator Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u0000432","NetworkedBehaviour.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isClient.htm\u000084","NetworkedBehaviour.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isOwner.htm\u000087","NetworkPoolManager.DestroyPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPoolObject.htm\u0000111","NetworkedObject.isPooledObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPooledObject.htm\u000086","NetworkedBehaviour.SendToClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000205","NetworkedNavMeshAgent Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u0000420","NetworkedBehaviour.SendToServer Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u000069","NetworkedBehaviour.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isServer.htm\u000084","NetworkedBehaviour.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isHost.htm\u000090","NetworkedTransform Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000420","NetworkedObject.isSpawned Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isSpawned.htm\u000088","NetworkPoolManager.SpawnPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_SpawnPoolObject.htm\u0000161","NetworkedBehaviour.SendToClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u000095","NetworkedBehaviour.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isLocalPlayer.htm\u000088","NetworkedBehaviour.SendToServerTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u000087","NetworkedObject.NetworkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkId.htm\u000090","NetworkedBehaviour.networkedObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkedObject.htm\u000085","NetworkedAnimator.SetTrigger Method\u0000html/Overload_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u000042","NetworkedObject.PoolId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_PoolId.htm\u000085","NetworkingManager.NetworkTime Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkTime.htm\u000097","NetworkedBehaviour.SendToLocalClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u000069","NetworkedBehaviour.networkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkId.htm\u000088","LagCompensationManager.Simulate Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u000088","Page Not Found\u0000html/PageNotFound.htm\u000067","NetworkedObject.OwnerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_OwnerClientId.htm\u000086","NetworkedObject.SpawnablePrefabIndex Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnablePrefabIndex.htm\u000090","NetworkingManager.singleton Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_singleton.htm\u000084","NetworkedBehaviour.ownerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm\u000084","NetworkedBehaviour.SendToLocalClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u000095","CryptographyHelper Class\u0000html/T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u0000138","NetworkedAnimator.animator Property\u0000html/P_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_animator.htm\u000091","NetworkedTransform Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00001643","BinaryIgnore Properties\u0000html/Properties_T_MLAPI_Attributes_BinaryIgnore.htm\u000047","NetworkedObject.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isLocalPlayer.htm\u000088","NetworkingManager.ConnectedClients Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectedClients.htm\u000095","LagCompensationManager.SimulationObjects Property\u0000html/P_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_SimulationObjects.htm\u000086","BinarySerializer Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u000067","NetworkedObject.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isOwner.htm\u000087","MessageChunker Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000133","NetworkingManager.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isClient.htm\u000085","BinaryIgnore Class\u0000html/T_MLAPI_Attributes_BinaryIgnore.htm\u0000190","NetworkedObject.isPlayerObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPlayerObject.htm\u000085","NetworkingManager.IsClientConnected Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_IsClientConnected.htm\u000085","NetworkingManager.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isHost.htm\u000084","SyncedVar Class\u0000html/T_MLAPI_Attributes_SyncedVar.htm\u0000206","NetworkingManager.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isServer.htm\u000085","NetworkedClient Class\u0000html/T_MLAPI_Data_NetworkedClient.htm\u0000173","NetworkingManager.MyClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_MyClientId.htm\u000091","NetworkingConfiguration Class\u0000html/T_MLAPI_Data_NetworkingConfiguration.htm\u0000509","NetworkedBehaviour Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001845","NetworkedAnimator Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00002159","NetworkedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u00001151","NetworkingManager Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u00001170","TrackedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000979","NetworkedNavMeshAgent Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00002148","NetworkedTransform Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00002187","BinarySerializer Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u0000117","MessageChunker Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000181","LagCompensationManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u0000151","NetworkPoolManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000170","NetworkSceneManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u0000105"] \ No newline at end of file +["MLAPI API Reference - Redirect\u0000index.html\u000018","SyncedVar Fields\u0000html/Fields_T_MLAPI_Attributes_SyncedVar.htm\u000051","MLAPI API Reference - Search\u0000search.html\u000012","Channel Fields\u0000html/Fields_T_MLAPI_Data_Channel.htm\u000059","NetworkConfig Fields\u0000html/Fields_T_MLAPI_Data_NetworkConfig.htm\u0000355","MessageType Fields\u0000html/Fields_T_MLAPI_Data_MessageType.htm\u000056","NetId Fields\u0000html/Fields_T_MLAPI_Data_NetId.htm\u000059","NetworkedClient Fields\u0000html/Fields_T_MLAPI_Data_NetworkedClient.htm\u000066","NetworkedPrefab Fields\u0000html/Fields_T_MLAPI_Data_NetworkedPrefab.htm\u000053","TransportHost Fields\u0000html/Fields_T_MLAPI_Data_TransportHost.htm\u000067","NetworkedBehaviour Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u000049","NetworkedAnimator Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u000070","NetworkingManager Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000128","NetworkedObject Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u000046","SyncedVar.hook Field\u0000html/F_MLAPI_Attributes_SyncedVar_hook.htm\u000079","Channel.Name Field\u0000html/F_MLAPI_Data_Channel_Name.htm\u000073","NetworkedTransform Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000124","Channel.Type Field\u0000html/F_MLAPI_Data_Channel_Type.htm\u000072","MessageType.Passthrough Field\u0000html/F_MLAPI_Data_MessageType_Passthrough.htm\u000078","Channel.Encrypted Field\u0000html/F_MLAPI_Data_Channel_Encrypted.htm\u000076","MessageType.Name Field\u0000html/F_MLAPI_Data_MessageType_Name.htm\u000073","NetId.ConnectionId Field\u0000html/F_MLAPI_Data_NetId_ConnectionId.htm\u000074","NetId.HostId Field\u0000html/F_MLAPI_Data_NetId_HostId.htm\u000074","NetId.Meta Field\u0000html/F_MLAPI_Data_NetId_Meta.htm\u000073","NetworkConfig.ClientConnectionBufferTimeout Field\u0000html/F_MLAPI_Data_NetworkConfig_ClientConnectionBufferTimeout.htm\u000083","NetworkedNavMeshAgent Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u000085","NetworkConfig.EnableTimeResync Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableTimeResync.htm\u000097","NetworkConfig.ConnectionApproval Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectionApproval.htm\u000075","NetworkConfig.ConnectPort Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectPort.htm\u000077","NetworkConfig.EnableEncryption Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableEncryption.htm\u000074","NetworkConfig.ConnectAddress Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectAddress.htm\u000073","NetworkConfig.HandleObjectSpawning Field\u0000html/F_MLAPI_Data_NetworkConfig_HandleObjectSpawning.htm\u000078","NetworkConfig.AllowPassthroughMessages Field\u0000html/F_MLAPI_Data_NetworkConfig_AllowPassthroughMessages.htm\u000078","NetworkConfig.Channels Field\u0000html/F_MLAPI_Data_NetworkConfig_Channels.htm\u000079","NetworkConfig.MaxReceiveEventsPerTickRate Field\u0000html/F_MLAPI_Data_NetworkConfig_MaxReceiveEventsPerTickRate.htm\u000084","NetworkConfig.MessageBufferSize Field\u0000html/F_MLAPI_Data_NetworkConfig_MessageBufferSize.htm\u000083","NetworkConfig.EventTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_EventTickrate.htm\u000086","NetworkConfig.ReceiveTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_ReceiveTickrate.htm\u000085","NetworkConfig.MaxConnections Field\u0000html/F_MLAPI_Data_NetworkConfig_MaxConnections.htm\u000077","NetworkConfig.EnableSceneSwitching Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableSceneSwitching.htm\u000075","NetworkConfig.ConnectionData Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectionData.htm\u000090","NetworkConfig.NetworkedPrefabs Field\u0000html/F_MLAPI_Data_NetworkConfig_NetworkedPrefabs.htm\u000079","NetworkConfig.ServerTransports Field\u0000html/F_MLAPI_Data_NetworkConfig_ServerTransports.htm\u000080","NetworkConfig.RSAPrivateKey Field\u0000html/F_MLAPI_Data_NetworkConfig_RSAPrivateKey.htm\u000078","NetworkConfig.SecondsHistory Field\u0000html/F_MLAPI_Data_NetworkConfig_SecondsHistory.htm\u000079","NetworkConfig.RegisteredScenes Field\u0000html/F_MLAPI_Data_NetworkConfig_RegisteredScenes.htm\u000086","NetworkConfig.MessageTypes Field\u0000html/F_MLAPI_Data_NetworkConfig_MessageTypes.htm\u000076","NetworkedClient.OwnedObjects Field\u0000html/F_MLAPI_Data_NetworkedClient_OwnedObjects.htm\u000080","NetworkedPrefab.playerPrefab Field\u0000html/F_MLAPI_Data_NetworkedPrefab_playerPrefab.htm\u000075","NetworkConfig.ProtocolVersion Field\u0000html/F_MLAPI_Data_NetworkConfig_ProtocolVersion.htm\u000080","NetworkedClient.AesKey Field\u0000html/F_MLAPI_Data_NetworkedClient_AesKey.htm\u000078","NetworkConfig.SignKeyExchange Field\u0000html/F_MLAPI_Data_NetworkConfig_SignKeyExchange.htm\u000079","NetworkConfig.RSAPublicKey Field\u0000html/F_MLAPI_Data_NetworkConfig_RSAPublicKey.htm\u000078","TransportHost.Name Field\u0000html/F_MLAPI_Data_TransportHost_Name.htm\u000073","NetworkedObject.NetworkedPrefabName Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkedPrefabName.htm\u000075","NetworkConfig.SendTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_SendTickrate.htm\u000082","TransportHost.Websockets Field\u0000html/F_MLAPI_Data_TransportHost_Websockets.htm\u000081","NetworkedClient.PlayerObject Field\u0000html/F_MLAPI_Data_NetworkedClient_PlayerObject.htm\u000073","NetworkedPrefab.prefab Field\u0000html/F_MLAPI_Data_NetworkedPrefab_prefab.htm\u000073","NetworkedClient.ClientId Field\u0000html/F_MLAPI_Data_NetworkedClient_ClientId.htm\u000073","NetworkingManager.DontDestroy Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DontDestroy.htm\u000081","TransportHost.Port Field\u0000html/F_MLAPI_Data_TransportHost_Port.htm\u000075","NetworkedBehaviour.SyncVarSyncDelay Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SyncVarSyncDelay.htm\u000078","NetworkingManager.NetworkConfig Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkConfig.htm\u000073","NetworkedAnimator.param4 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param4.htm\u000086","NetworkingManager.OnServerStarted Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnServerStarted.htm\u000079","NetworkedAnimator.param2 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param2.htm\u000086","NetworkingManager.OnClientConnectedCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientConnectedCallback.htm\u000084","NetworkingManager.ConnectionApprovalCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectionApprovalCallback.htm\u0000120","NetworkingManager.RunInBackground Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RunInBackground.htm\u000083","NetworkedAnimator.param0 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param0.htm\u000086","NetworkedNavMeshAgent.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_ProximityRange.htm\u000073","NetworkedTransform.InterpolatePosition Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolatePosition.htm\u000072","NetworkedAnimator.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_EnableProximity.htm\u000073","NetworkedAnimator.param3 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param3.htm\u000086","NetworkedNavMeshAgent.DriftCorrectionPercentage Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_DriftCorrectionPercentage.htm\u000076","NetworkedAnimator.param1 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param1.htm\u000086","NetworkingManager.RegenerateRSAKeys Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RegenerateRSAKeys.htm\u000091","NetworkedTransform.InterpolateServer Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolateServer.htm\u000074","NetworkedNavMeshAgent.WarpOnDestinationChange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_WarpOnDestinationChange.htm\u000076","BinaryIgnore Methods\u0000html/Methods_T_MLAPI_Attributes_BinaryIgnore.htm\u0000103","NetworkedAnimator.param5 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param5.htm\u000086","NetworkingManager.OnClientDisconnectCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientDisconnectCallback.htm\u000084","NetworkedNavMeshAgent.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_EnableProximity.htm\u000073","TransportHost Methods\u0000html/Methods_T_MLAPI_Data_TransportHost.htm\u000087","NetworkedTransform.AssumeSyncedSends Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_AssumeSyncedSends.htm\u000083","NetworkedTransform.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_ProximityRange.htm\u000076","NetworkedTransform.MinDegrees Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinDegrees.htm\u000080","NetworkedTransform.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_EnableProximity.htm\u000074","NetworkedTransform.SendsPerSecond Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SendsPerSecond.htm\u000073","SyncedVar Methods\u0000html/Methods_T_MLAPI_Attributes_SyncedVar.htm\u0000103","NetId Methods\u0000html/Methods_T_MLAPI_Data_NetId.htm\u0000125","NetworkedAnimator.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ProximityRange.htm\u000073","Channel Methods\u0000html/Methods_T_MLAPI_Data_Channel.htm\u000087","NetworkedTransform.MinMeters Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinMeters.htm\u000080","NetworkedTransform.SnapDistance Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SnapDistance.htm\u000077","General Error\u0000html/GeneralError.htm\u000033","NetworkConfig Methods\u0000html/Methods_T_MLAPI_Data_NetworkConfig.htm\u0000109","BinarySerializer Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u000067","MessageChunker Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000133","Channel Constructor\u0000html/M_MLAPI_Data_Channel__ctor.htm\u000072","LagCompensationManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000086","MessageType Methods\u0000html/Methods_T_MLAPI_Data_MessageType.htm\u000087","NetworkSceneManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u000056","NetworkedNavMeshAgent.CorrectionDelay Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_CorrectionDelay.htm\u000076","MessageType Constructor\u0000html/M_MLAPI_Data_MessageType__ctor.htm\u000072","NetworkPoolManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000121","NetworkedClient Methods\u0000html/Methods_T_MLAPI_Data_NetworkedClient.htm\u000087","TrackedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000656","CryptographyHelper Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u000090","NetId.GetHashCode Method\u0000html/M_MLAPI_Data_NetId_GetHashCode.htm\u0000105","NetworkedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000704","NetId.Equals Method\u0000html/M_MLAPI_Data_NetId_Equals.htm\u0000122","NetId.Inequality Operator\u0000html/M_MLAPI_Data_NetId_op_Inequality.htm\u0000137","NetworkedPrefab Methods\u0000html/Methods_T_MLAPI_Data_NetworkedPrefab.htm\u000087","BinaryIgnore Constructor\u0000html/M_MLAPI_Attributes_BinaryIgnore__ctor.htm\u000072","NetworkConfig.GetConfig Method\u0000html/M_MLAPI_Data_NetworkConfig_GetConfig.htm\u0000140","NetId.IsHost Method\u0000html/M_MLAPI_Data_NetId_IsHost.htm\u000090","NetId.GetClientId Method\u0000html/M_MLAPI_Data_NetId_GetClientId.htm\u000079","NetId Constructor (Byte, UInt16, Boolean, Boolean)\u0000html/M_MLAPI_Data_NetId__ctor.htm\u0000142","TransportHost Constructor\u0000html/M_MLAPI_Data_TransportHost__ctor.htm\u000072","SyncedVar Constructor\u0000html/M_MLAPI_Attributes_SyncedVar__ctor.htm\u000072","NetworkConfig Constructor\u0000html/M_MLAPI_Data_NetworkConfig__ctor.htm\u000072","NetId.IsInvalid Method\u0000html/M_MLAPI_Data_NetId_IsInvalid.htm\u000092","NetworkedBehaviour.OnGainedOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnGainedOwnership.htm\u000080","NetId Constructor (UInt32)\u0000html/M_MLAPI_Data_NetId__ctor_1.htm\u000092","NetworkedClient Constructor\u0000html/M_MLAPI_Data_NetworkedClient__ctor.htm\u000072","NetworkedBehaviour.DeregisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_DeregisterMessageHandler.htm\u000099","NetId.Equality Operator\u0000html/M_MLAPI_Data_NetId_op_Equality.htm\u0000135","NetworkedBehaviour.OnLostOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnLostOwnership.htm\u000078","NetworkedBehaviour.SendToClients Method (List(UInt32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000154","NetworkedBehaviour.GetNetworkedObject Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm\u0000136","NetworkConfig.CompareConfig Method\u0000html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm\u0000138","NetworkedBehaviour.RegisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm\u0000135","NetworkedPrefab Constructor\u0000html/M_MLAPI_Data_NetworkedPrefab__ctor.htm\u000072","NetworkedBehaviour.SendToClientsTarget(T) Method (List(UInt32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm\u0000168","NetworkedBehaviour.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_NetworkStart.htm\u000084","NetworkedBehaviour.SendToClient Method (UInt32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u0000149","NetworkedBehaviour.SendToClients Method (UInt32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm\u0000149","NetworkingManager Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000689","NetworkedBehaviour.SendToClientsTarget(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm\u0000163","NetworkedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject__ctor.htm\u000074","NetworkedBehaviour.SendToServerTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u0000136","NetworkingManager.StartClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm\u000071","NetworkedBehaviour.SendToClients(T) Method (List(Int32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm\u0000162","NetworkedBehaviour.SendToClientTarget Method (UInt32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u0000157","NetworkingManager.StartClientWebsocket Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm\u000073","NetworkedBehaviour.SendToClientsTarget Method (List(UInt32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000162","NetworkedBehaviour.SendToClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm\u0000143","NetworkedBehaviour.SendToNonLocalClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u0000142","NetworkedBehaviour.SendToServerTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm\u0000144","NetworkedBehaviour.SendToClients(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm\u0000157","NetworkingManager.StartHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm\u0000177","NetworkedBehaviour.SendToNonLocalClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm\u0000150","NetworkedBehaviour.SendToClientTarget(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm\u0000163","NetworkedBehaviour.SendToClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm\u0000128","NetworkingManager.StartServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm\u000071","NetworkedBehaviour.SendToClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm\u0000137","NetworkedBehaviour.SendToServer(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm\u0000135","NetworkingManager Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager__ctor.htm\u000074","NetworkedBehaviour.SendToNonLocalClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm\u0000141","NetworkingManager.StopClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm\u000072","NetworkedBehaviour Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour__ctor.htm\u000074","NetworkingManager.StopHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm\u000072","TrackedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_TrackedObject__ctor.htm\u000074","NetworkedBehaviour.SendToClient(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm\u0000157","NetworkedBehaviour.SendToClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm\u0000134","NetworkingManager.StopServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm\u000072","NetworkedAnimator Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator__ctor.htm\u000074","NetworkedBehaviour.SendToServer Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u0000127","NetworkedBehaviour Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001417","NetworkedBehaviour.SendToClientsTarget Method (UInt32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm\u0000157","NetworkedAnimator.GetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_GetParameterAutoSend.htm\u0000126","NetworkedObject.ChangeOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_ChangeOwnership.htm\u000094","NetworkedNavMeshAgent.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_NetworkStart.htm\u000072","MLAPI.Data Namespace\u0000html/N_MLAPI_Data.htm\u000073","NetworkSceneManager.SwitchScene Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager_SwitchScene.htm\u0000101","CryptographyHelper.Decrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Decrypt.htm\u0000137","NetworkedBehaviour.SendToLocalClient Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u0000127","NetworkedAnimator.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_NetworkStart.htm\u000072","NetworkedObject.RemoveOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_RemoveOwnership.htm\u000084","MLAPI.MonoBehaviours.Core Namespace\u0000html/N_MLAPI_MonoBehaviours_Core.htm\u000071","MessageChunker.GetChunkedMessage Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetChunkedMessage.htm\u0000132","MLAPI.MonoBehaviours.Prototyping Namespace\u0000html/N_MLAPI_MonoBehaviours_Prototyping.htm\u000045","NetworkedNavMeshAgent Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent__ctor.htm\u000074","MLAPI.NetworkingManagerComponents.Binary Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Binary.htm\u000038","MessageChunker.HasMissingParts Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasMissingParts.htm\u0000128","NetworkedAnimator.ResetParameterOptions Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ResetParameterOptions.htm\u000069","NetworkedObject.Spawn Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_Spawn.htm\u000082","MLAPI.NetworkingManagerComponents.Core Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Core.htm\u000046","NetworkedTransform.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_NetworkStart.htm\u000072","MLAPI.NetworkingManagerComponents.Cryptography Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Cryptography.htm\u000030","NetworkedObject.SpawnWithOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnWithOwnership.htm\u0000100","NetworkedAnimator.SetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetParameterAutoSend.htm\u0000139","CryptographyHelper.Encrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Encrypt.htm\u0000142","NetworkedTransform Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform__ctor.htm\u000074","NetworkedBehaviour.SendToLocalClientTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u0000141","NetId Operators\u0000html/Operators_T_MLAPI_Data_NetId.htm\u000072","MLAPI.Attributes Namespace\u0000html/N_MLAPI_Attributes.htm\u000059","NetId Constructor\u0000html/Overload_MLAPI_Data_NetId__ctor.htm\u000066","Page Not Found\u0000html/PageNotFound.htm\u000067","NetworkedAnimator.SetTrigger Method (Int32)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u0000107","BinaryIgnore Properties\u0000html/Properties_T_MLAPI_Attributes_BinaryIgnore.htm\u000047","MessageChunker.IsOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_IsOrdered.htm\u0000114","BinarySerializer.ClearCache Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_ClearCache.htm\u000075","SyncedVar Properties\u0000html/Properties_T_MLAPI_Attributes_SyncedVar.htm\u000047","NetworkedAnimator Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00001657","NetworkedBehaviour.SendToClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u000081","NetworkedBehaviour.SendToServer Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u000069","NetId Properties\u0000html/Properties_T_MLAPI_Data_NetId.htm\u000044","NetworkedBehaviour.SendToLocalClientTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm\u0000147","NetworkedAnimator.SetTrigger Method (String)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger_1.htm\u0000107","LagCompensationManager.Simulate Method (Single, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u0000123","MessageChunker.GetMessageOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageOrdered.htm\u0000176","NetworkedBehaviour Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u0000364","NetworkedAnimator Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u0000432","BinarySerializer.Deserialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Deserialize__1.htm\u0000122","NetworkedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000369","NetworkedNavMeshAgent Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u0000420","NetworkedBehaviour.SendToServerTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u000087","NetworkingManager Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000367","LagCompensationManager.Simulate Method (UInt32, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate_1.htm\u0000136","NetworkedTransform Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000420","NetworkedBehaviour.SendToLocalClient(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm\u0000135","NetworkedAnimator.SetTrigger Method\u0000html/Overload_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u000042","TrackedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000305","LagCompensationManager Properties\u0000html/Properties_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000043","BinarySerializer.Serialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Serialize__1.htm\u0000112","NetworkedBehaviour.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isOwner.htm\u000087","NetId.ServerNetId Property\u0000html/P_MLAPI_Data_NetId_ServerNetId.htm\u000085","NetworkedObject.isPooledObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPooledObject.htm\u000086","NetworkPoolManager.CreatePool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_CreatePool.htm\u0000137","MessageChunker.GetMessageUnordered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageUnordered.htm\u0000178","NetworkedBehaviour.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isClient.htm\u000084","LagCompensationManager.Simulate Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u000088","NetworkedBehaviour.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isServer.htm\u000084","NetworkedBehaviour.SendToNonLocalClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u0000133","NetworkedObject.isSpawned Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isSpawned.htm\u000088","NetworkedBehaviour.SendToClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000159","NetworkedBehaviour.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isHost.htm\u000090","NetworkingManager.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isHost.htm\u000084","NetworkingManager.singleton Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_singleton.htm\u000084","NetworkPoolManager.DestroyPool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPool.htm\u0000101","NetworkedBehaviour.networkedObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkedObject.htm\u000085","NetworkedObject.NetworkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkId.htm\u000090","NetworkedBehaviour.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isLocalPlayer.htm\u000088","MessageChunker.HasDuplicates Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasDuplicates.htm\u0000134","TrackedObject.AvgTimeBetweenPointsMs Property\u0000html/P_MLAPI_MonoBehaviours_Core_TrackedObject_AvgTimeBetweenPointsMs.htm\u000088","NetworkedBehaviour.networkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkId.htm\u000088","NetworkPoolManager.DestroyPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPoolObject.htm\u0000111","NetworkingManager.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isServer.htm\u000085","MessageType Class\u0000html/T_MLAPI_Data_MessageType.htm\u0000171","TrackedObject.TotalPoints Property\u0000html/P_MLAPI_MonoBehaviours_Core_TrackedObject_TotalPoints.htm\u000087","NetworkedObject.OwnerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_OwnerClientId.htm\u000086","NetworkedBehaviour.ownerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm\u000084","NetworkPoolManager.SpawnPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_SpawnPoolObject.htm\u0000161","NetId Structure\u0000html/T_MLAPI_Data_NetId.htm\u0000270","NetworkingManager.MyClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_MyClientId.htm\u000091","NetworkedObject.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isLocalPlayer.htm\u000088","NetworkedAnimator.animator Property\u0000html/P_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_animator.htm\u000091","NetworkedObject.PoolId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_PoolId.htm\u000085","NetworkPoolManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000170","NetworkingManager.NetworkTime Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkTime.htm\u000097","NetworkConfig Class\u0000html/T_MLAPI_Data_NetworkConfig.htm\u0000498","NetworkedObject.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isOwner.htm\u000087","NetworkedBehaviour.SendToClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000205","LagCompensationManager.SimulationObjects Property\u0000html/P_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_SimulationObjects.htm\u000086","NetworkedObject.isPlayerObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPlayerObject.htm\u000085","NetworkingManager.ConnectedClients Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectedClients.htm\u000095","NetworkedClient Class\u0000html/T_MLAPI_Data_NetworkedClient.htm\u0000173","NetworkSceneManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u0000105","NetworkingManager Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u00001180","NetworkedBehaviour.SendToClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u000095","BinaryIgnore Class\u0000html/T_MLAPI_Attributes_BinaryIgnore.htm\u0000190","NetworkingManager.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isClient.htm\u000085","NetworkedPrefab Class\u0000html/T_MLAPI_Data_NetworkedPrefab.htm\u0000169","CryptographyHelper Class\u0000html/T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u0000138","NetworkingManager.IsClientConnected Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_IsClientConnected.htm\u000085","NetworkedBehaviour.SendToLocalClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u000069","TransportHost Class\u0000html/T_MLAPI_Data_TransportHost.htm\u0000181","SyncedVar Class\u0000html/T_MLAPI_Attributes_SyncedVar.htm\u0000206","NetworkedBehaviour.SendToLocalClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u000095","Channel Class\u0000html/T_MLAPI_Data_Channel.htm\u0000177","NetworkedBehaviour.SendToNonLocalClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u000081","TrackedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u00001002","NetworkedBehaviour.SendToNonLocalClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u000099","NetworkedNavMeshAgent Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00001643","NetworkedBehaviour Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001845","NetworkedAnimator Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00002159","NetworkedTransform Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00001643","NetworkedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u00001120","NetworkedNavMeshAgent Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00002148","NetworkedTransform Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00002187","BinarySerializer Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u0000117","MessageChunker Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000181","LagCompensationManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u0000151"] \ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_Channel_Encrypted.htm b/docs/html/F_MLAPI_Data_Channel_Encrypted.htm new file mode 100644 index 0000000..a15b5dd --- /dev/null +++ b/docs/html/F_MLAPI_Data_Channel_Encrypted.htm @@ -0,0 +1,21 @@ +Channel.Encrypted Field

ChannelEncrypted Field

[This is preliminary documentation and is subject to change.]

+ Wheter or not the channel should be encrypted +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool Encrypted
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_Channel_Name.htm b/docs/html/F_MLAPI_Data_Channel_Name.htm new file mode 100644 index 0000000..ff2678e --- /dev/null +++ b/docs/html/F_MLAPI_Data_Channel_Name.htm @@ -0,0 +1,21 @@ +Channel.Name Field

ChannelName Field

[This is preliminary documentation and is subject to change.]

+ The name of the channel +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string Name
Request Example + View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_Channel_Type.htm b/docs/html/F_MLAPI_Data_Channel_Type.htm new file mode 100644 index 0000000..7dfc2d4 --- /dev/null +++ b/docs/html/F_MLAPI_Data_Channel_Type.htm @@ -0,0 +1,21 @@ +Channel.Type Field

ChannelType Field

[This is preliminary documentation and is subject to change.]

+ The Transport QOS type +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public QosType Type
Request Example + View Source

Field Value

Type: QosType
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_MessageType_Name.htm b/docs/html/F_MLAPI_Data_MessageType_Name.htm new file mode 100644 index 0000000..c988610 --- /dev/null +++ b/docs/html/F_MLAPI_Data_MessageType_Name.htm @@ -0,0 +1,21 @@ +MessageType.Name Field

MessageTypeName Field

[This is preliminary documentation and is subject to change.]

+ The name of the messageType +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string Name
Request Example + View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_MessageType_Passthrough.htm b/docs/html/F_MLAPI_Data_MessageType_Passthrough.htm new file mode 100644 index 0000000..22e7ef7 --- /dev/null +++ b/docs/html/F_MLAPI_Data_MessageType_Passthrough.htm @@ -0,0 +1,21 @@ +MessageType.Passthrough Field

MessageTypePassthrough Field

[This is preliminary documentation and is subject to change.]

+ Wheter or not the channel should have passthrough support. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool Passthrough
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetId_ConnectionId.htm b/docs/html/F_MLAPI_Data_NetId_ConnectionId.htm new file mode 100644 index 0000000..f0f4ad6 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetId_ConnectionId.htm @@ -0,0 +1,21 @@ +NetId.ConnectionId Field

NetIdConnectionId Field

[This is preliminary documentation and is subject to change.]

+ The connectionId this client is assigned +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public ushort ConnectionId
Request Example + View Source

Field Value

Type: UInt16
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetId_HostId.htm b/docs/html/F_MLAPI_Data_NetId_HostId.htm new file mode 100644 index 0000000..9cfd434 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetId_HostId.htm @@ -0,0 +1,21 @@ +NetId.HostId Field

NetIdHostId Field

[This is preliminary documentation and is subject to change.]

+ The hostId this client is on +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public byte HostId
Request Example + View Source

Field Value

Type: Byte
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetId_Meta.htm b/docs/html/F_MLAPI_Data_NetId_Meta.htm new file mode 100644 index 0000000..15f7c45 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetId_Meta.htm @@ -0,0 +1,21 @@ +NetId.Meta Field

NetIdMeta Field

[This is preliminary documentation and is subject to change.]

+ Meta data about hte client +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public byte Meta
Request Example + View Source

Field Value

Type: Byte
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_AllowPassthroughMessages.htm b/docs/html/F_MLAPI_Data_NetworkConfig_AllowPassthroughMessages.htm new file mode 100644 index 0000000..a4185f5 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_AllowPassthroughMessages.htm @@ -0,0 +1,21 @@ +NetworkConfig.AllowPassthroughMessages Field

NetworkConfigAllowPassthroughMessages Field

[This is preliminary documentation and is subject to change.]

+ Wheter or not to allow any type of passthrough messages +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool AllowPassthroughMessages
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_Channels.htm b/docs/html/F_MLAPI_Data_NetworkConfig_Channels.htm new file mode 100644 index 0000000..9c15871 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_Channels.htm @@ -0,0 +1,21 @@ +NetworkConfig.Channels Field

NetworkConfigChannels Field

[This is preliminary documentation and is subject to change.]

+ Channels used by the NetworkedTransport +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public List<Channel> Channels
Request Example + View Source

Field Value

Type: ListChannel
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_ClientConnectionBufferTimeout.htm b/docs/html/F_MLAPI_Data_NetworkConfig_ClientConnectionBufferTimeout.htm new file mode 100644 index 0000000..5bee0d1 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_ClientConnectionBufferTimeout.htm @@ -0,0 +1,21 @@ +NetworkConfig.ClientConnectionBufferTimeout Field

NetworkConfigClientConnectionBufferTimeout Field

[This is preliminary documentation and is subject to change.]

+ The amount of seconds to wait for handshake to complete before timing out a client +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int ClientConnectionBufferTimeout
Request Example + View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_ConnectAddress.htm b/docs/html/F_MLAPI_Data_NetworkConfig_ConnectAddress.htm new file mode 100644 index 0000000..e9a6039 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_ConnectAddress.htm @@ -0,0 +1,21 @@ +NetworkConfig.ConnectAddress Field

NetworkConfigConnectAddress Field

[This is preliminary documentation and is subject to change.]

+ The address to connect to +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string ConnectAddress
Request Example + View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_ConnectPort.htm b/docs/html/F_MLAPI_Data_NetworkConfig_ConnectPort.htm new file mode 100644 index 0000000..0b417bb --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_ConnectPort.htm @@ -0,0 +1,21 @@ +NetworkConfig.ConnectPort Field

NetworkConfigConnectPort Field

[This is preliminary documentation and is subject to change.]

+ The port for the NetworkTransport to use when connecting +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int ConnectPort
Request Example + View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_ConnectionApproval.htm b/docs/html/F_MLAPI_Data_NetworkConfig_ConnectionApproval.htm new file mode 100644 index 0000000..50bb98c --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_ConnectionApproval.htm @@ -0,0 +1,21 @@ +NetworkConfig.ConnectionApproval Field

NetworkConfigConnectionApproval Field

[This is preliminary documentation and is subject to change.]

+ Wheter or not to use connection approval +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool ConnectionApproval
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_ConnectionData.htm b/docs/html/F_MLAPI_Data_NetworkConfig_ConnectionData.htm new file mode 100644 index 0000000..a1f8659 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_ConnectionData.htm @@ -0,0 +1,21 @@ +NetworkConfig.ConnectionData Field

NetworkConfigConnectionData Field

[This is preliminary documentation and is subject to change.]

+ The data to send during connection which can be used to decide on if a client should get accepted +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public byte[] ConnectionData
Request Example + View Source

Field Value

Type: Byte
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_EnableEncryption.htm b/docs/html/F_MLAPI_Data_NetworkConfig_EnableEncryption.htm new file mode 100644 index 0000000..f3d9230 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_EnableEncryption.htm @@ -0,0 +1,21 @@ +NetworkConfig.EnableEncryption Field

NetworkConfigEnableEncryption Field

[This is preliminary documentation and is subject to change.]

+ Wheter or not to enable encryption +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool EnableEncryption
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_EnableSceneSwitching.htm b/docs/html/F_MLAPI_Data_NetworkConfig_EnableSceneSwitching.htm new file mode 100644 index 0000000..1f8a6e4 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_EnableSceneSwitching.htm @@ -0,0 +1,21 @@ +NetworkConfig.EnableSceneSwitching Field

NetworkConfigEnableSceneSwitching Field

[This is preliminary documentation and is subject to change.]

+ Wheter or not to enable scene switching +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool EnableSceneSwitching
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_EnableTimeResync.htm b/docs/html/F_MLAPI_Data_NetworkConfig_EnableTimeResync.htm new file mode 100644 index 0000000..76a94c3 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_EnableTimeResync.htm @@ -0,0 +1,21 @@ +NetworkConfig.EnableTimeResync Field

NetworkConfigEnableTimeResync Field

[This is preliminary documentation and is subject to change.]

+ If your logic uses the NetwokrTime, this should probably be turned off. If however it's needed to maximize accuracy, this is recommended to be turned on +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool EnableTimeResync
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_EventTickrate.htm b/docs/html/F_MLAPI_Data_NetworkConfig_EventTickrate.htm new file mode 100644 index 0000000..f180384 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_EventTickrate.htm @@ -0,0 +1,21 @@ +NetworkConfig.EventTickrate Field

NetworkConfigEventTickrate Field

[This is preliminary documentation and is subject to change.]

+ The amount of times per second internal frame events will occur, examples include SyncedVar send checking. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int EventTickrate
Request Example + View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_HandleObjectSpawning.htm b/docs/html/F_MLAPI_Data_NetworkConfig_HandleObjectSpawning.htm new file mode 100644 index 0000000..c99eb50 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_HandleObjectSpawning.htm @@ -0,0 +1,21 @@ +NetworkConfig.HandleObjectSpawning Field

NetworkConfigHandleObjectSpawning Field

[This is preliminary documentation and is subject to change.]

+ Wheter or not to make the library handle object spawning +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool HandleObjectSpawning
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_MaxConnections.htm b/docs/html/F_MLAPI_Data_NetworkConfig_MaxConnections.htm new file mode 100644 index 0000000..14d1b4f --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_MaxConnections.htm @@ -0,0 +1,21 @@ +NetworkConfig.MaxConnections Field

NetworkConfigMaxConnections Field

[This is preliminary documentation and is subject to change.]

+ The max amount of Clients that can connect. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int MaxConnections
Request Example + View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_MaxReceiveEventsPerTickRate.htm b/docs/html/F_MLAPI_Data_NetworkConfig_MaxReceiveEventsPerTickRate.htm new file mode 100644 index 0000000..f9bb206 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_MaxReceiveEventsPerTickRate.htm @@ -0,0 +1,21 @@ +NetworkConfig.MaxReceiveEventsPerTickRate Field

NetworkConfigMaxReceiveEventsPerTickRate Field

[This is preliminary documentation and is subject to change.]

+ The max amount of messages to process per ReceiveTickrate. This is to prevent flooding. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int MaxReceiveEventsPerTickRate
Request Example + View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_MessageBufferSize.htm b/docs/html/F_MLAPI_Data_NetworkConfig_MessageBufferSize.htm new file mode 100644 index 0000000..63cd542 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_MessageBufferSize.htm @@ -0,0 +1,21 @@ +NetworkConfig.MessageBufferSize Field

NetworkConfigMessageBufferSize Field

[This is preliminary documentation and is subject to change.]

+ The size of the receive message buffer. This is the max message size. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int MessageBufferSize
Request Example + View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_MessageTypes.htm b/docs/html/F_MLAPI_Data_NetworkConfig_MessageTypes.htm new file mode 100644 index 0000000..4c2922a --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_MessageTypes.htm @@ -0,0 +1,21 @@ +NetworkConfig.MessageTypes Field

NetworkConfigMessageTypes Field

[This is preliminary documentation and is subject to change.]

+ Registered MessageTypes +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public List<MessageType> MessageTypes
Request Example + View Source

Field Value

Type: ListMessageType
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_NetworkedPrefabs.htm b/docs/html/F_MLAPI_Data_NetworkConfig_NetworkedPrefabs.htm new file mode 100644 index 0000000..ba93a1b --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_NetworkedPrefabs.htm @@ -0,0 +1,21 @@ +NetworkConfig.NetworkedPrefabs Field

NetworkConfigNetworkedPrefabs Field

[This is preliminary documentation and is subject to change.]

+ A list of spawnable prefabs +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public List<NetworkedPrefab> NetworkedPrefabs
Request Example + View Source

Field Value

Type: ListNetworkedPrefab
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_ProtocolVersion.htm b/docs/html/F_MLAPI_Data_NetworkConfig_ProtocolVersion.htm new file mode 100644 index 0000000..d8d6724 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_ProtocolVersion.htm @@ -0,0 +1,21 @@ +NetworkConfig.ProtocolVersion Field

NetworkConfigProtocolVersion Field

[This is preliminary documentation and is subject to change.]

+ The protocol version. Different versions doesn't talk to each other. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public ushort ProtocolVersion
Request Example + View Source

Field Value

Type: UInt16
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_RSAPrivateKey.htm b/docs/html/F_MLAPI_Data_NetworkConfig_RSAPrivateKey.htm new file mode 100644 index 0000000..b8d930c --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_RSAPrivateKey.htm @@ -0,0 +1,21 @@ +NetworkConfig.RSAPrivateKey Field

NetworkConfigRSAPrivateKey Field

[This is preliminary documentation and is subject to change.]

+ Private RSA XML key to use for signing key exchange +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string RSAPrivateKey
Request Example + View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_RSAPublicKey.htm b/docs/html/F_MLAPI_Data_NetworkConfig_RSAPublicKey.htm new file mode 100644 index 0000000..5122bea --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_RSAPublicKey.htm @@ -0,0 +1,21 @@ +NetworkConfig.RSAPublicKey Field

NetworkConfigRSAPublicKey Field

[This is preliminary documentation and is subject to change.]

+ Public RSA XML key to use for signing key exchange +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string RSAPublicKey
Request Example + View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_ReceiveTickrate.htm b/docs/html/F_MLAPI_Data_NetworkConfig_ReceiveTickrate.htm new file mode 100644 index 0000000..41f72a8 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_ReceiveTickrate.htm @@ -0,0 +1,21 @@ +NetworkConfig.ReceiveTickrate Field

NetworkConfigReceiveTickrate Field

[This is preliminary documentation and is subject to change.]

+ Amount of times per second the receive queue is emptied and all messages inside are processed. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int ReceiveTickrate
Request Example + View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_RegisteredScenes.htm b/docs/html/F_MLAPI_Data_NetworkConfig_RegisteredScenes.htm new file mode 100644 index 0000000..e86a1cd --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_RegisteredScenes.htm @@ -0,0 +1,21 @@ +NetworkConfig.RegisteredScenes Field

NetworkConfigRegisteredScenes Field

[This is preliminary documentation and is subject to change.]

+ A list of SceneNames that can be used during networked games. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public List<string> RegisteredScenes
Request Example + View Source

Field Value

Type: ListString
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_SecondsHistory.htm b/docs/html/F_MLAPI_Data_NetworkConfig_SecondsHistory.htm new file mode 100644 index 0000000..f466e0f --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_SecondsHistory.htm @@ -0,0 +1,21 @@ +NetworkConfig.SecondsHistory Field

NetworkConfigSecondsHistory Field

[This is preliminary documentation and is subject to change.]

+ The amount of seconds to keep a lag compensation position history +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public float SecondsHistory
Request Example + View Source

Field Value

Type: Single
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_SendTickrate.htm b/docs/html/F_MLAPI_Data_NetworkConfig_SendTickrate.htm new file mode 100644 index 0000000..59d02e2 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_SendTickrate.htm @@ -0,0 +1,21 @@ +NetworkConfig.SendTickrate Field

NetworkConfigSendTickrate Field

[This is preliminary documentation and is subject to change.]

+ The amount of times per second every pending message will be sent away. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int SendTickrate
Request Example + View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_ServerTransports.htm b/docs/html/F_MLAPI_Data_NetworkConfig_ServerTransports.htm new file mode 100644 index 0000000..d23e3a7 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_ServerTransports.htm @@ -0,0 +1,21 @@ +NetworkConfig.ServerTransports Field

NetworkConfigServerTransports Field

[This is preliminary documentation and is subject to change.]

+ The transport hosts the sever uses +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public List<TransportHost> ServerTransports
Request Example + View Source

Field Value

Type: ListTransportHost
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkConfig_SignKeyExchange.htm b/docs/html/F_MLAPI_Data_NetworkConfig_SignKeyExchange.htm new file mode 100644 index 0000000..c6af6d1 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkConfig_SignKeyExchange.htm @@ -0,0 +1,21 @@ +NetworkConfig.SignKeyExchange Field

NetworkConfigSignKeyExchange Field

[This is preliminary documentation and is subject to change.]

+ Wheter or not to enable signed diffie hellman key exchange. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool SignKeyExchange
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkedClient_ClientId.htm b/docs/html/F_MLAPI_Data_NetworkedClient_ClientId.htm index b12b3a8..2c1912c 100644 --- a/docs/html/F_MLAPI_Data_NetworkedClient_ClientId.htm +++ b/docs/html/F_MLAPI_Data_NetworkedClient_ClientId.htm @@ -4,7 +4,7 @@ Namespace:  MLAPI.Data
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int ClientId
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public uint ClientId
Request Example View Source

Field Value

Type: Int32
See Also
\ No newline at end of file + View Source

Field Value

Type: UInt32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkedPrefab_playerPrefab.htm b/docs/html/F_MLAPI_Data_NetworkedPrefab_playerPrefab.htm new file mode 100644 index 0000000..44b19f6 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkedPrefab_playerPrefab.htm @@ -0,0 +1,21 @@ +NetworkedPrefab.playerPrefab Field

NetworkedPrefabplayerPrefab Field

[This is preliminary documentation and is subject to change.]

+ Wheter or not this is a playerPrefab +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool playerPrefab
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkedPrefab_prefab.htm b/docs/html/F_MLAPI_Data_NetworkedPrefab_prefab.htm new file mode 100644 index 0000000..4f1ec69 --- /dev/null +++ b/docs/html/F_MLAPI_Data_NetworkedPrefab_prefab.htm @@ -0,0 +1,21 @@ +NetworkedPrefab.prefab Field

NetworkedPrefabprefab Field

[This is preliminary documentation and is subject to change.]

+ The gameobject of the prefab +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public GameObject prefab
Request Example + View Source

Field Value

Type: GameObject
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_Address.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_Address.htm deleted file mode 100644 index 9a7b507..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_Address.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.Address Field

NetworkingConfigurationAddress Field

[This is preliminary documentation and is subject to change.]

- The address to connect to -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string Address
Request Example - View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_AllowPassthroughMessages.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_AllowPassthroughMessages.htm deleted file mode 100644 index 42b2aaf..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_AllowPassthroughMessages.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.AllowPassthroughMessages Field

NetworkingConfigurationAllowPassthroughMessages Field

[This is preliminary documentation and is subject to change.]

- Wheter or not to allow any type of passthrough messages -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool AllowPassthroughMessages
Request Example - View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_Channels.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_Channels.htm deleted file mode 100644 index 5ff6552..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_Channels.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.Channels Field

NetworkingConfigurationChannels Field

[This is preliminary documentation and is subject to change.]

- Channels used by the NetworkedTransport -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public SortedDictionary<string, QosType> Channels
Request Example - View Source

Field Value

Type: SortedDictionaryString, QosType
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ClientConnectionBufferTimeout.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_ClientConnectionBufferTimeout.htm deleted file mode 100644 index 22e589f..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ClientConnectionBufferTimeout.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.ClientConnectionBufferTimeout Field

NetworkingConfigurationClientConnectionBufferTimeout Field

[This is preliminary documentation and is subject to change.]

- The amount of seconds to wait for handshake to complete before timing out a client -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int ClientConnectionBufferTimeout
Request Example - View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionApproval.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionApproval.htm deleted file mode 100644 index fb7dd20..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionApproval.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.ConnectionApproval Field

NetworkingConfigurationConnectionApproval Field

[This is preliminary documentation and is subject to change.]

- Wheter or not to use connection approval -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool ConnectionApproval
Request Example - View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionApprovalCallback.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionApprovalCallback.htm deleted file mode 100644 index debcf14..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionApprovalCallback.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.ConnectionApprovalCallback Field

NetworkingConfigurationConnectionApprovalCallback Field

[This is preliminary documentation and is subject to change.]

- The callback to invoke when a connection has to be decided if it should get approved -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Action<byte[], int, Action<int, bool>> ConnectionApprovalCallback
Request Example - View Source

Field Value

Type: ActionByte, Int32, ActionInt32, Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionData.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionData.htm deleted file mode 100644 index 98c092c..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ConnectionData.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.ConnectionData Field

NetworkingConfigurationConnectionData Field

[This is preliminary documentation and is subject to change.]

- The data to send during connection which can be used to decide on if a client should get accepted -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public byte[] ConnectionData
Request Example - View Source

Field Value

Type: Byte
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_EnableEncryption.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_EnableEncryption.htm deleted file mode 100644 index 3abef47..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_EnableEncryption.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.EnableEncryption Field

NetworkingConfigurationEnableEncryption Field

[This is preliminary documentation and is subject to change.]

- Wheter or not to enable encryption -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool EnableEncryption
Request Example - View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_EnableSceneSwitching.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_EnableSceneSwitching.htm deleted file mode 100644 index e4be0c0..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_EnableSceneSwitching.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.EnableSceneSwitching Field

NetworkingConfigurationEnableSceneSwitching Field

[This is preliminary documentation and is subject to change.]

- Wheter or not to enable scene switching -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool EnableSceneSwitching
Request Example - View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_EncryptedChannels.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_EncryptedChannels.htm deleted file mode 100644 index 5cb4de8..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_EncryptedChannels.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.EncryptedChannels Field

NetworkingConfigurationEncryptedChannels Field

[This is preliminary documentation and is subject to change.]

- Set of channels that will have all message contents encrypted when used -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public HashSet<int> EncryptedChannels
Request Example - View Source

Field Value

Type: HashSetInt32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_EventTickrate.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_EventTickrate.htm deleted file mode 100644 index c0e5a57..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_EventTickrate.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.EventTickrate Field

NetworkingConfigurationEventTickrate Field

[This is preliminary documentation and is subject to change.]

- The amount of times per second internal frame events will occur, examples include SyncedVar send checking. -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int EventTickrate
Request Example - View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_HandleObjectSpawning.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_HandleObjectSpawning.htm deleted file mode 100644 index 2f42def..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_HandleObjectSpawning.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.HandleObjectSpawning Field

NetworkingConfigurationHandleObjectSpawning Field

[This is preliminary documentation and is subject to change.]

- Wheter or not to make the library handle object spawning -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool HandleObjectSpawning
Request Example - View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_MaxConnections.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_MaxConnections.htm deleted file mode 100644 index 19fbedf..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_MaxConnections.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.MaxConnections Field

NetworkingConfigurationMaxConnections Field

[This is preliminary documentation and is subject to change.]

- The max amount of Clients that can connect. -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int MaxConnections
Request Example - View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_MaxReceiveEventsPerTickRate.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_MaxReceiveEventsPerTickRate.htm deleted file mode 100644 index 0035e9c..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_MaxReceiveEventsPerTickRate.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.MaxReceiveEventsPerTickRate Field

NetworkingConfigurationMaxReceiveEventsPerTickRate Field

[This is preliminary documentation and is subject to change.]

- The max amount of messages to process per ReceiveTickrate. This is to prevent flooding. -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int MaxReceiveEventsPerTickRate
Request Example - View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_MessageBufferSize.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_MessageBufferSize.htm deleted file mode 100644 index 32bd558..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_MessageBufferSize.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.MessageBufferSize Field

NetworkingConfigurationMessageBufferSize Field

[This is preliminary documentation and is subject to change.]

- The size of the receive message buffer. This is the max message size. -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int MessageBufferSize
Request Example - View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_MessageTypes.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_MessageTypes.htm deleted file mode 100644 index 78d1a4b..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_MessageTypes.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.MessageTypes Field

NetworkingConfigurationMessageTypes Field

[This is preliminary documentation and is subject to change.]

- Registered MessageTypes -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public List<string> MessageTypes
Request Example - View Source

Field Value

Type: ListString
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_PassthroughMessageTypes.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_PassthroughMessageTypes.htm deleted file mode 100644 index 61ad747..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_PassthroughMessageTypes.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.PassthroughMessageTypes Field

NetworkingConfigurationPassthroughMessageTypes Field

[This is preliminary documentation and is subject to change.]

- List of MessageTypes that can be passed through by Server. MessageTypes in this list should thus not be trusted to as great of an extent as normal messages. -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public List<string> PassthroughMessageTypes
Request Example - View Source

Field Value

Type: ListString
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_Port.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_Port.htm deleted file mode 100644 index 573b010..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_Port.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.Port Field

NetworkingConfigurationPort Field

[This is preliminary documentation and is subject to change.]

- The port for the NetworkTransport to use -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int Port
Request Example - View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ProtocolVersion.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_ProtocolVersion.htm deleted file mode 100644 index b841edf..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ProtocolVersion.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.ProtocolVersion Field

NetworkingConfigurationProtocolVersion Field

[This is preliminary documentation and is subject to change.]

- The protocol version. Different versions doesn't talk to each other. -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public ushort ProtocolVersion
Request Example - View Source

Field Value

Type: UInt16
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_RSAPrivateKey.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_RSAPrivateKey.htm deleted file mode 100644 index 02f0e83..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_RSAPrivateKey.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.RSAPrivateKey Field

NetworkingConfigurationRSAPrivateKey Field

[This is preliminary documentation and is subject to change.]

- Private RSA XML key to use for signing key exchange -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string RSAPrivateKey
Request Example - View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_RSAPublicKey.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_RSAPublicKey.htm deleted file mode 100644 index d632c0a..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_RSAPublicKey.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.RSAPublicKey Field

NetworkingConfigurationRSAPublicKey Field

[This is preliminary documentation and is subject to change.]

- Public RSA XML key to use for signing key exchange -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string RSAPublicKey
Request Example - View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ReceiveTickrate.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_ReceiveTickrate.htm deleted file mode 100644 index 5ea5937..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_ReceiveTickrate.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.ReceiveTickrate Field

NetworkingConfigurationReceiveTickrate Field

[This is preliminary documentation and is subject to change.]

- Amount of times per second the receive queue is emptied and all messages inside are processed. -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int ReceiveTickrate
Request Example - View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_RegisteredScenes.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_RegisteredScenes.htm deleted file mode 100644 index da4427b..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_RegisteredScenes.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.RegisteredScenes Field

NetworkingConfigurationRegisteredScenes Field

[This is preliminary documentation and is subject to change.]

- A list of SceneNames that can be used during networked games. -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public List<string> RegisteredScenes
Request Example - View Source

Field Value

Type: ListString
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_SecondsHistory.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_SecondsHistory.htm deleted file mode 100644 index d3cd2fc..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_SecondsHistory.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.SecondsHistory Field

NetworkingConfigurationSecondsHistory Field

[This is preliminary documentation and is subject to change.]

- The amount of seconds to keep a lag compensation position history -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public float SecondsHistory
Request Example - View Source

Field Value

Type: Single
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_SendTickrate.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_SendTickrate.htm deleted file mode 100644 index cb1dab8..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_SendTickrate.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.SendTickrate Field

NetworkingConfigurationSendTickrate Field

[This is preliminary documentation and is subject to change.]

- The amount of times per second every pending message will be sent away. -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int SendTickrate
Request Example - View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_NetworkingConfiguration_SignKeyExchange.htm b/docs/html/F_MLAPI_Data_NetworkingConfiguration_SignKeyExchange.htm deleted file mode 100644 index 4341888..0000000 --- a/docs/html/F_MLAPI_Data_NetworkingConfiguration_SignKeyExchange.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingConfiguration.SignKeyExchange Field

NetworkingConfigurationSignKeyExchange Field

[This is preliminary documentation and is subject to change.]

- Wheter or not to enable signed diffie hellman key exchange. -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool SignKeyExchange
Request Example - View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_TransportHost_Name.htm b/docs/html/F_MLAPI_Data_TransportHost_Name.htm new file mode 100644 index 0000000..c60508e --- /dev/null +++ b/docs/html/F_MLAPI_Data_TransportHost_Name.htm @@ -0,0 +1,21 @@ +TransportHost.Name Field

TransportHostName Field

[This is preliminary documentation and is subject to change.]

+ The name of the host +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string Name
Request Example + View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_TransportHost_Port.htm b/docs/html/F_MLAPI_Data_TransportHost_Port.htm new file mode 100644 index 0000000..6fa4290 --- /dev/null +++ b/docs/html/F_MLAPI_Data_TransportHost_Port.htm @@ -0,0 +1,21 @@ +TransportHost.Port Field

TransportHostPort Field

[This is preliminary documentation and is subject to change.]

+ The port the host should listen to +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int Port
Request Example + View Source

Field Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Data_TransportHost_Websockets.htm b/docs/html/F_MLAPI_Data_TransportHost_Websockets.htm new file mode 100644 index 0000000..d5f8697 --- /dev/null +++ b/docs/html/F_MLAPI_Data_TransportHost_Websockets.htm @@ -0,0 +1,21 @@ +TransportHost.Websockets Field

TransportHostWebsockets Field

[This is preliminary documentation and is subject to change.]

+ If true, the socket will listen on TCP-Websockets, otherwise UDP +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool Websockets
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkedPrefabName.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkedPrefabName.htm new file mode 100644 index 0000000..2415411 --- /dev/null +++ b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkedPrefabName.htm @@ -0,0 +1,21 @@ +NetworkedObject.NetworkedPrefabName Field

NetworkedObjectNetworkedPrefabName Field

[This is preliminary documentation and is subject to change.]

+ The name of the NetworkedPrefab +

+ Namespace: +  MLAPI.MonoBehaviours.Core
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string NetworkedPrefabName
Request Example + View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_ServerOnly.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_ServerOnly.htm deleted file mode 100644 index 3dca321..0000000 --- a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_ServerOnly.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkedObject.ServerOnly Field

NetworkedObjectServerOnly Field

[This is preliminary documentation and is subject to change.]

- Gets or sets if this object should be replicated across the network. Can only be changed before the object is spawned -

- Namespace: -  MLAPI.MonoBehaviours.Core
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool ServerOnly
Request Example - View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectionApprovalCallback.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectionApprovalCallback.htm new file mode 100644 index 0000000..734adcc --- /dev/null +++ b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectionApprovalCallback.htm @@ -0,0 +1,21 @@ +NetworkingManager.ConnectionApprovalCallback Field

NetworkingManagerConnectionApprovalCallback Field

[This is preliminary documentation and is subject to change.]

+ The callback to invoke during connection approval +

+ Namespace: +  MLAPI.MonoBehaviours.Core
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Action<byte[], uint, Action<uint, bool, Vector3, Quaternion>> ConnectionApprovalCallback
Request Example + View Source

Field Value

Type: ActionByte, UInt32, ActionUInt32, Boolean, Vector3, Quaternion
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DefaultPlayerPrefab.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DefaultPlayerPrefab.htm deleted file mode 100644 index 17d634c..0000000 --- a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DefaultPlayerPrefab.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingManager.DefaultPlayerPrefab Field

NetworkingManagerDefaultPlayerPrefab Field

[This is preliminary documentation and is subject to change.]

- The default prefab to give to players -

- Namespace: -  MLAPI.MonoBehaviours.Core
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public GameObject DefaultPlayerPrefab
Request Example - View Source

Field Value

Type: GameObject
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DontDestroy.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DontDestroy.htm index 32af13f..75da23a 100644 --- a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DontDestroy.htm +++ b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DontDestroy.htm @@ -1,4 +1,4 @@ -NetworkingManager.DontDestroy Field

NetworkingManagerDontDestroy Field

[This is preliminary documentation and is subject to change.]

+NetworkingManager.DontDestroy Field

NetworkingManagerDontDestroy Field

[This is preliminary documentation and is subject to change.]

Gets or sets if the NetworkingManager should be marked as DontDestroyOnLoad

Namespace: diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkConfig.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkConfig.htm index a75c593..5fef06a 100644 --- a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkConfig.htm +++ b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkConfig.htm @@ -1,10 +1,10 @@ -NetworkingManager.NetworkConfig Field

NetworkingManagerNetworkConfig Field

[This is preliminary documentation and is subject to change.]

+NetworkingManager.NetworkConfig Field

NetworkingManagerNetworkConfig Field

[This is preliminary documentation and is subject to change.]

The current NetworkingConfiguration

Namespace:  MLAPI.MonoBehaviours.Core
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public NetworkingConfiguration NetworkConfig
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public NetworkConfig NetworkConfig
Request Example View Source

Field Value

Type: NetworkingConfiguration
See Also
\ No newline at end of file + View Source

Field Value

Type: NetworkConfig
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientConnectedCallback.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientConnectedCallback.htm index 7331a66..7c608f9 100644 --- a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientConnectedCallback.htm +++ b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientConnectedCallback.htm @@ -1,10 +1,10 @@ -NetworkingManager.OnClientConnectedCallback Field

NetworkingManagerOnClientConnectedCallback Field

[This is preliminary documentation and is subject to change.]

+NetworkingManager.OnClientConnectedCallback Field

NetworkingManagerOnClientConnectedCallback Field

[This is preliminary documentation and is subject to change.]

The callback to invoke once a client connects

Namespace:  MLAPI.MonoBehaviours.Core
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Action<int> OnClientConnectedCallback
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Action<uint> OnClientConnectedCallback
Request Example View Source

Field Value

Type: ActionInt32
See Also
\ No newline at end of file + View Source

Field Value

Type: ActionUInt32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientDisconnectCallback.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientDisconnectCallback.htm index 0d488d7..e94f369 100644 --- a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientDisconnectCallback.htm +++ b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientDisconnectCallback.htm @@ -1,10 +1,10 @@ -NetworkingManager.OnClientDisconnectCallback Field

NetworkingManagerOnClientDisconnectCallback Field

[This is preliminary documentation and is subject to change.]

+NetworkingManager.OnClientDisconnectCallback Field

NetworkingManagerOnClientDisconnectCallback Field

[This is preliminary documentation and is subject to change.]

The callback to invoke when a client disconnects

Namespace:  MLAPI.MonoBehaviours.Core
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Action<int> OnClientDisconnectCallback
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Action<uint> OnClientDisconnectCallback
Request Example View Source

Field Value

Type: ActionInt32
See Also
\ No newline at end of file + View Source

Field Value

Type: ActionUInt32
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnServerStarted.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnServerStarted.htm index 5859a57..91d9987 100644 --- a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnServerStarted.htm +++ b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnServerStarted.htm @@ -1,4 +1,4 @@ -NetworkingManager.OnServerStarted Field

NetworkingManagerOnServerStarted Field

[This is preliminary documentation and is subject to change.]

+NetworkingManager.OnServerStarted Field

NetworkingManagerOnServerStarted Field

[This is preliminary documentation and is subject to change.]

The callback to invoke once the server is ready

Namespace: diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RegenerateRSAKeys.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RegenerateRSAKeys.htm new file mode 100644 index 0000000..46a9ef8 --- /dev/null +++ b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RegenerateRSAKeys.htm @@ -0,0 +1,21 @@ +NetworkingManager.RegenerateRSAKeys Field

NetworkingManagerRegenerateRSAKeys Field

[This is preliminary documentation and is subject to change.]

+ An inspector bool that acts as a Trigger for regenerating RSA keys. Should not be used outside Unity editor. +

+ Namespace: +  MLAPI.MonoBehaviours.Core
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool RegenerateRSAKeys
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RunInBackground.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RunInBackground.htm index c46ce43..cc449b8 100644 --- a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RunInBackground.htm +++ b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RunInBackground.htm @@ -1,4 +1,4 @@ -NetworkingManager.RunInBackground Field

NetworkingManagerRunInBackground Field

[This is preliminary documentation and is subject to change.]

+NetworkingManager.RunInBackground Field

NetworkingManagerRunInBackground Field

[This is preliminary documentation and is subject to change.]

Gets or sets if the application should be set to run in background

Namespace: diff --git a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_SpawnablePrefabs.htm b/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_SpawnablePrefabs.htm deleted file mode 100644 index a6b7568..0000000 --- a/docs/html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_SpawnablePrefabs.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkingManager.SpawnablePrefabs Field

NetworkingManagerSpawnablePrefabs Field

[This is preliminary documentation and is subject to change.]

- A list of spawnable prefabs -

- Namespace: -  MLAPI.MonoBehaviours.Core
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public List<GameObject> SpawnablePrefabs
Request Example - View Source

Field Value

Type: ListGameObject
See Also
\ No newline at end of file diff --git a/docs/html/Fields_T_MLAPI_Data_Channel.htm b/docs/html/Fields_T_MLAPI_Data_Channel.htm new file mode 100644 index 0000000..b1e66aa --- /dev/null +++ b/docs/html/Fields_T_MLAPI_Data_Channel.htm @@ -0,0 +1,9 @@ +Channel Fields

Channel Fields

[This is preliminary documentation and is subject to change.]

The Channel type exposes the following members.

Fields
+   + NameDescription
Public fieldEncrypted
+ Wheter or not the channel should be encrypted +
Public fieldName
+ The name of the channel +
Public fieldType
+ The Transport QOS type +
Top
See Also
\ No newline at end of file diff --git a/docs/html/Fields_T_MLAPI_Data_MessageType.htm b/docs/html/Fields_T_MLAPI_Data_MessageType.htm new file mode 100644 index 0000000..3767f52 --- /dev/null +++ b/docs/html/Fields_T_MLAPI_Data_MessageType.htm @@ -0,0 +1,7 @@ +MessageType Fields

MessageType Fields

[This is preliminary documentation and is subject to change.]

The MessageType type exposes the following members.

Fields
+   + NameDescription
Public fieldName
+ The name of the messageType +
Public fieldPassthrough
+ Wheter or not the channel should have passthrough support. +
Top
See Also
\ No newline at end of file diff --git a/docs/html/Fields_T_MLAPI_Data_NetId.htm b/docs/html/Fields_T_MLAPI_Data_NetId.htm new file mode 100644 index 0000000..ba9f6f2 --- /dev/null +++ b/docs/html/Fields_T_MLAPI_Data_NetId.htm @@ -0,0 +1,9 @@ +NetId Fields

NetId Fields

[This is preliminary documentation and is subject to change.]

The NetId type exposes the following members.

Fields
+   + NameDescription
Public fieldConnectionId
+ The connectionId this client is assigned +
Public fieldHostId
+ The hostId this client is on +
Public fieldMeta
+ Meta data about hte client +
Top
See Also
\ No newline at end of file diff --git a/docs/html/Fields_T_MLAPI_Data_NetworkConfig.htm b/docs/html/Fields_T_MLAPI_Data_NetworkConfig.htm new file mode 100644 index 0000000..4efc26f --- /dev/null +++ b/docs/html/Fields_T_MLAPI_Data_NetworkConfig.htm @@ -0,0 +1,55 @@ +NetworkConfig Fields

NetworkConfig Fields

[This is preliminary documentation and is subject to change.]

The NetworkConfig type exposes the following members.

Fields
+   + NameDescription
Public fieldAllowPassthroughMessages
+ Wheter or not to allow any type of passthrough messages +
Public fieldChannels
+ Channels used by the NetworkedTransport +
Public fieldClientConnectionBufferTimeout
+ The amount of seconds to wait for handshake to complete before timing out a client +
Public fieldConnectAddress
+ The address to connect to +
Public fieldConnectionApproval
+ Wheter or not to use connection approval +
Public fieldConnectionData
+ The data to send during connection which can be used to decide on if a client should get accepted +
Public fieldConnectPort
+ The port for the NetworkTransport to use when connecting +
Public fieldEnableEncryption
+ Wheter or not to enable encryption +
Public fieldEnableSceneSwitching
+ Wheter or not to enable scene switching +
Public fieldEnableTimeResync
+ If your logic uses the NetwokrTime, this should probably be turned off. If however it's needed to maximize accuracy, this is recommended to be turned on +
Public fieldEventTickrate
+ The amount of times per second internal frame events will occur, examples include SyncedVar send checking. +
Public fieldHandleObjectSpawning
+ Wheter or not to make the library handle object spawning +
Public fieldMaxConnections
+ The max amount of Clients that can connect. +
Public fieldMaxReceiveEventsPerTickRate
+ The max amount of messages to process per ReceiveTickrate. This is to prevent flooding. +
Public fieldMessageBufferSize
+ The size of the receive message buffer. This is the max message size. +
Public fieldMessageTypes
+ Registered MessageTypes +
Public fieldNetworkedPrefabs
+ A list of spawnable prefabs +
Public fieldProtocolVersion
+ The protocol version. Different versions doesn't talk to each other. +
Public fieldReceiveTickrate
+ Amount of times per second the receive queue is emptied and all messages inside are processed. +
Public fieldRegisteredScenes
+ A list of SceneNames that can be used during networked games. +
Public fieldRSAPrivateKey
+ Private RSA XML key to use for signing key exchange +
Public fieldRSAPublicKey
+ Public RSA XML key to use for signing key exchange +
Public fieldSecondsHistory
+ The amount of seconds to keep a lag compensation position history +
Public fieldSendTickrate
+ The amount of times per second every pending message will be sent away. +
Public fieldServerTransports
+ The transport hosts the sever uses +
Public fieldSignKeyExchange
+ Wheter or not to enable signed diffie hellman key exchange. +
Top
See Also
\ No newline at end of file diff --git a/docs/html/Fields_T_MLAPI_Data_NetworkedPrefab.htm b/docs/html/Fields_T_MLAPI_Data_NetworkedPrefab.htm new file mode 100644 index 0000000..1889c71 --- /dev/null +++ b/docs/html/Fields_T_MLAPI_Data_NetworkedPrefab.htm @@ -0,0 +1,7 @@ +NetworkedPrefab Fields

NetworkedPrefab Fields

[This is preliminary documentation and is subject to change.]

The NetworkedPrefab type exposes the following members.

Fields
+   + NameDescription
Public fieldplayerPrefab
+ Wheter or not this is a playerPrefab +
Public fieldprefab
+ The gameobject of the prefab +
Top
See Also
\ No newline at end of file diff --git a/docs/html/Fields_T_MLAPI_Data_NetworkingConfiguration.htm b/docs/html/Fields_T_MLAPI_Data_NetworkingConfiguration.htm deleted file mode 100644 index d2d02ae..0000000 --- a/docs/html/Fields_T_MLAPI_Data_NetworkingConfiguration.htm +++ /dev/null @@ -1,55 +0,0 @@ -NetworkingConfiguration Fields

NetworkingConfiguration Fields

[This is preliminary documentation and is subject to change.]

The NetworkingConfiguration type exposes the following members.

Fields
-   - NameDescription
Public fieldAddress
- The address to connect to -
Public fieldAllowPassthroughMessages
- Wheter or not to allow any type of passthrough messages -
Public fieldChannels
- Channels used by the NetworkedTransport -
Public fieldClientConnectionBufferTimeout
- The amount of seconds to wait for handshake to complete before timing out a client -
Public fieldConnectionApproval
- Wheter or not to use connection approval -
Public fieldConnectionApprovalCallback
- The callback to invoke when a connection has to be decided if it should get approved -
Public fieldConnectionData
- The data to send during connection which can be used to decide on if a client should get accepted -
Public fieldEnableEncryption
- Wheter or not to enable encryption -
Public fieldEnableSceneSwitching
- Wheter or not to enable scene switching -
Public fieldEncryptedChannels
- Set of channels that will have all message contents encrypted when used -
Public fieldEventTickrate
- The amount of times per second internal frame events will occur, examples include SyncedVar send checking. -
Public fieldHandleObjectSpawning
- Wheter or not to make the library handle object spawning -
Public fieldMaxConnections
- The max amount of Clients that can connect. -
Public fieldMaxReceiveEventsPerTickRate
- The max amount of messages to process per ReceiveTickrate. This is to prevent flooding. -
Public fieldMessageBufferSize
- The size of the receive message buffer. This is the max message size. -
Public fieldMessageTypes
- Registered MessageTypes -
Public fieldPassthroughMessageTypes
- List of MessageTypes that can be passed through by Server. MessageTypes in this list should thus not be trusted to as great of an extent as normal messages. -
Public fieldPort
- The port for the NetworkTransport to use -
Public fieldProtocolVersion
- The protocol version. Different versions doesn't talk to each other. -
Public fieldReceiveTickrate
- Amount of times per second the receive queue is emptied and all messages inside are processed. -
Public fieldRegisteredScenes
- A list of SceneNames that can be used during networked games. -
Public fieldRSAPrivateKey
- Private RSA XML key to use for signing key exchange -
Public fieldRSAPublicKey
- Public RSA XML key to use for signing key exchange -
Public fieldSecondsHistory
- The amount of seconds to keep a lag compensation position history -
Public fieldSendTickrate
- The amount of times per second every pending message will be sent away. -
Public fieldSignKeyExchange
- Wheter or not to enable signed diffie hellman key exchange. -
Top
See Also
\ No newline at end of file diff --git a/docs/html/Fields_T_MLAPI_Data_TransportHost.htm b/docs/html/Fields_T_MLAPI_Data_TransportHost.htm new file mode 100644 index 0000000..bc749bd --- /dev/null +++ b/docs/html/Fields_T_MLAPI_Data_TransportHost.htm @@ -0,0 +1,9 @@ +TransportHost Fields

TransportHost Fields

[This is preliminary documentation and is subject to change.]

The TransportHost type exposes the following members.

Fields
+   + NameDescription
Public fieldName
+ The name of the host +
Public fieldPort
+ The port the host should listen to +
Public fieldWebsockets
+ If true, the socket will listen on TCP-Websockets, otherwise UDP +
Top
See Also
\ No newline at end of file diff --git a/docs/html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm b/docs/html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm index 81e706c..31990f3 100644 --- a/docs/html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm +++ b/docs/html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm @@ -1,5 +1,5 @@ -NetworkedObject Fields

NetworkedObject Fields

[This is preliminary documentation and is subject to change.]

The NetworkedObject type exposes the following members.

Fields
+NetworkedObject Fields

NetworkedObject Fields

[This is preliminary documentation and is subject to change.]

The NetworkedObject type exposes the following members.

Fields
  - NameDescription
Public fieldServerOnly
- Gets or sets if this object should be replicated across the network. Can only be changed before the object is spawned +
NameDescription
Public fieldNetworkedPrefabName
+ The name of the NetworkedPrefab
Top
See Also
\ No newline at end of file diff --git a/docs/html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm b/docs/html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm index b89c690..2c5d2c0 100644 --- a/docs/html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm +++ b/docs/html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm @@ -1,7 +1,7 @@ -NetworkingManager Fields

NetworkingManager Fields

[This is preliminary documentation and is subject to change.]

The NetworkingManager type exposes the following members.

Fields
+NetworkingManager Fields

NetworkingManager Fields

[This is preliminary documentation and is subject to change.]

The NetworkingManager type exposes the following members.

Fields
  - NameDescription
Public fieldDefaultPlayerPrefab
- The default prefab to give to players +
NameDescription
Public fieldConnectionApprovalCallback
+ The callback to invoke during connection approval
Public fieldDontDestroy
Gets or sets if the NetworkingManager should be marked as DontDestroyOnLoad
Public fieldNetworkConfig
@@ -12,8 +12,8 @@ The callback to invoke when a client disconnects
Public fieldOnServerStarted
The callback to invoke once the server is ready +
Public fieldRegenerateRSAKeys
+ An inspector bool that acts as a Trigger for regenerating RSA keys. Should not be used outside Unity editor.
Public fieldRunInBackground
Gets or sets if the application should be set to run in background -
Public fieldSpawnablePrefabs
- A list of spawnable prefabs
Top
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_Channel__ctor.htm b/docs/html/M_MLAPI_Data_Channel__ctor.htm new file mode 100644 index 0000000..0474fb1 --- /dev/null +++ b/docs/html/M_MLAPI_Data_Channel__ctor.htm @@ -0,0 +1,19 @@ +Channel Constructor

Channel Constructor

[This is preliminary documentation and is subject to change.]

Initializes a new instance of the Channel class

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Channel()
Request Example + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_MessageType__ctor.htm b/docs/html/M_MLAPI_Data_MessageType__ctor.htm new file mode 100644 index 0000000..dea3faf --- /dev/null +++ b/docs/html/M_MLAPI_Data_MessageType__ctor.htm @@ -0,0 +1,19 @@ +MessageType Constructor

MessageType Constructor

[This is preliminary documentation and is subject to change.]

Initializes a new instance of the MessageType class

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public MessageType()
Request Example + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_Equals.htm b/docs/html/M_MLAPI_Data_NetId_Equals.htm new file mode 100644 index 0000000..250f2ee --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetId_Equals.htm @@ -0,0 +1,24 @@ +NetId.Equals Method

NetIdEquals Method

[This is preliminary documentation and is subject to change.]

+ Determines whether the specified Object is equal to the current NetId. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public override bool Equals(
+	Object obj
+)
Request Example + View Source

Parameters

obj
Type: SystemObject
The Object to compare with the current NetId.

Return Value

Type: Boolean
true if the specified Object is equal to the current NetId; + otherwise, false.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_GetClientId.htm b/docs/html/M_MLAPI_Data_NetId_GetClientId.htm new file mode 100644 index 0000000..ae4531d --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetId_GetClientId.htm @@ -0,0 +1,21 @@ +NetId.GetClientId Method

NetIdGetClientId Method

[This is preliminary documentation and is subject to change.]

+ Gets the clientId. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public uint GetClientId()
Request Example + View Source

Return Value

Type: UInt32
The client identifier.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_GetHashCode.htm b/docs/html/M_MLAPI_Data_NetId_GetHashCode.htm new file mode 100644 index 0000000..1761e28 --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetId_GetHashCode.htm @@ -0,0 +1,22 @@ +NetId.GetHashCode Method

NetIdGetHashCode Method

[This is preliminary documentation and is subject to change.]

+ Serves as a hash function for a NetId object. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public override int GetHashCode()
Request Example + View Source

Return Value

Type: Int32
A hash code for this instance that is suitable for use in hashing algorithms and data structures such as a + hash table.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_IsHost.htm b/docs/html/M_MLAPI_Data_NetId_IsHost.htm new file mode 100644 index 0000000..3a66222 --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetId_IsHost.htm @@ -0,0 +1,21 @@ +NetId.IsHost Method

NetIdIsHost Method

[This is preliminary documentation and is subject to change.]

+ Returns wheter or not the clientId represents a -1 +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool IsHost()
Request Example + View Source

Return Value

Type: Boolean
true, if host, false otherwise.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_IsInvalid.htm b/docs/html/M_MLAPI_Data_NetId_IsInvalid.htm new file mode 100644 index 0000000..be7ee74 --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetId_IsInvalid.htm @@ -0,0 +1,21 @@ +NetId.IsInvalid Method

NetIdIsInvalid Method

[This is preliminary documentation and is subject to change.]

+ Returns if this is a invalid clientId, (-2) +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool IsInvalid()
Request Example + View Source

Return Value

Type: Boolean
true, if invalid, false otherwise.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId__ctor.htm b/docs/html/M_MLAPI_Data_NetId__ctor.htm new file mode 100644 index 0000000..79053f6 --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetId__ctor.htm @@ -0,0 +1,26 @@ +NetId Constructor (Byte, UInt16, Boolean, Boolean)

NetId Constructor (Byte, UInt16, Boolean, Boolean)

[This is preliminary documentation and is subject to change.]

+ Initializes a new instance of the netId struct from transport values +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public NetId(
+	byte hostId,
+	ushort connectionId,
+	bool isHost,
+	bool isInvalid
+)
Request Example + View Source

Parameters

hostId
Type: SystemByte
Host identifier.
connectionId
Type: SystemUInt16
Connection identifier.
isHost
Type: SystemBoolean
If set to true is host.
isInvalid
Type: SystemBoolean
If set to true is invalid.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId__ctor_1.htm b/docs/html/M_MLAPI_Data_NetId__ctor_1.htm new file mode 100644 index 0000000..b3a73e3 --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetId__ctor_1.htm @@ -0,0 +1,23 @@ +NetId Constructor (UInt32)

NetId Constructor (UInt32)

[This is preliminary documentation and is subject to change.]

+ Initializes a new instance of the netId struct from a clientId +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public NetId(
+	uint clientId
+)
Request Example + View Source

Parameters

clientId
Type: SystemUInt32
Client identifier.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_op_Equality.htm b/docs/html/M_MLAPI_Data_NetId_op_Equality.htm new file mode 100644 index 0000000..cc7f862 --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetId_op_Equality.htm @@ -0,0 +1,24 @@ +NetId.Equality Operator

NetIdEquality Operator

[This is preliminary documentation and is subject to change.]

+ Determines whether a specified instance of NetId is equal to another specified NetId. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static bool operator ==(
+	NetId client1,
+	NetId client2
+)
Request Example + View Source

Parameters

client1
Type: MLAPI.DataNetId
The first NetId to compare.
client2
Type: MLAPI.DataNetId
The second NetId to compare.

Return Value

Type: Boolean
true if client1 and client2 are equal; otherwise, false.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_op_Inequality.htm b/docs/html/M_MLAPI_Data_NetId_op_Inequality.htm new file mode 100644 index 0000000..c9aaa5e --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetId_op_Inequality.htm @@ -0,0 +1,24 @@ +NetId.Inequality Operator

NetIdInequality Operator

[This is preliminary documentation and is subject to change.]

+ Determines whether a specified instance of NetId is not equal to another specified NetId. +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static bool operator !=(
+	NetId client1,
+	NetId client2
+)
Request Example + View Source

Parameters

client1
Type: MLAPI.DataNetId
The first NetId to compare.
client2
Type: MLAPI.DataNetId
The second NetId to compare.

Return Value

Type: Boolean
true if client1 and client2 are not equal; otherwise, false.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm b/docs/html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm new file mode 100644 index 0000000..1eb8686 --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm @@ -0,0 +1,23 @@ +NetworkConfig.CompareConfig Method

NetworkConfigCompareConfig Method

[This is preliminary documentation and is subject to change.]

+ Compares a SHA256 hash with the current NetworkingConfiguration instances hash +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool CompareConfig(
+	byte[] hash
+)
Request Example + View Source

Parameters

hash
Type: SystemByte

[Missing <param name="hash"/> documentation for "M:MLAPI.Data.NetworkConfig.CompareConfig(System.Byte[])"]

Return Value

Type: Boolean

[Missing <returns> documentation for "M:MLAPI.Data.NetworkConfig.CompareConfig(System.Byte[])"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetworkConfig_GetConfig.htm b/docs/html/M_MLAPI_Data_NetworkConfig_GetConfig.htm new file mode 100644 index 0000000..b55988a --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetworkConfig_GetConfig.htm @@ -0,0 +1,23 @@ +NetworkConfig.GetConfig Method

NetworkConfigGetConfig Method

[This is preliminary documentation and is subject to change.]

+ Gets a SHA256 hash of parts of the NetworkingConfiguration instance +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public byte[] GetConfig(
+	bool cache = true
+)
Request Example + View Source

Parameters

cache (Optional)
Type: SystemBoolean

[Missing <param name="cache"/> documentation for "M:MLAPI.Data.NetworkConfig.GetConfig(System.Boolean)"]

Return Value

Type: Byte

[Missing <returns> documentation for "M:MLAPI.Data.NetworkConfig.GetConfig(System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetworkConfig__ctor.htm b/docs/html/M_MLAPI_Data_NetworkConfig__ctor.htm new file mode 100644 index 0000000..8df6433 --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetworkConfig__ctor.htm @@ -0,0 +1,19 @@ +NetworkConfig Constructor

NetworkConfig Constructor

[This is preliminary documentation and is subject to change.]

Initializes a new instance of the NetworkConfig class

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public NetworkConfig()
Request Example + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetworkedPrefab__ctor.htm b/docs/html/M_MLAPI_Data_NetworkedPrefab__ctor.htm new file mode 100644 index 0000000..a848aa6 --- /dev/null +++ b/docs/html/M_MLAPI_Data_NetworkedPrefab__ctor.htm @@ -0,0 +1,19 @@ +NetworkedPrefab Constructor

NetworkedPrefab Constructor

[This is preliminary documentation and is subject to change.]

Initializes a new instance of the NetworkedPrefab class

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public NetworkedPrefab()
Request Example + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetworkingConfiguration_CompareConfig.htm b/docs/html/M_MLAPI_Data_NetworkingConfiguration_CompareConfig.htm deleted file mode 100644 index 1d9a69b..0000000 --- a/docs/html/M_MLAPI_Data_NetworkingConfiguration_CompareConfig.htm +++ /dev/null @@ -1,23 +0,0 @@ -NetworkingConfiguration.CompareConfig Method

NetworkingConfigurationCompareConfig Method

[This is preliminary documentation and is subject to change.]

- Compares a SHA256 hash with the current NetworkingConfiguration instances hash -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool CompareConfig(
-	byte[] hash
-)
Request Example - View Source

Parameters

hash
Type: SystemByte

[Missing <param name="hash"/> documentation for "M:MLAPI.Data.NetworkingConfiguration.CompareConfig(System.Byte[])"]

Return Value

Type: Boolean

[Missing <returns> documentation for "M:MLAPI.Data.NetworkingConfiguration.CompareConfig(System.Byte[])"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetworkingConfiguration_GetConfig.htm b/docs/html/M_MLAPI_Data_NetworkingConfiguration_GetConfig.htm deleted file mode 100644 index 6ec5fb3..0000000 --- a/docs/html/M_MLAPI_Data_NetworkingConfiguration_GetConfig.htm +++ /dev/null @@ -1,23 +0,0 @@ -NetworkingConfiguration.GetConfig Method

NetworkingConfigurationGetConfig Method

[This is preliminary documentation and is subject to change.]

- Gets a SHA256 hash of parts of the NetworkingConfiguration instance -

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public byte[] GetConfig(
-	bool cache = true
-)
Request Example - View Source

Parameters

cache (Optional)
Type: SystemBoolean

[Missing <param name="cache"/> documentation for "M:MLAPI.Data.NetworkingConfiguration.GetConfig(System.Boolean)"]

Return Value

Type: Byte

[Missing <returns> documentation for "M:MLAPI.Data.NetworkingConfiguration.GetConfig(System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetworkingConfiguration__ctor.htm b/docs/html/M_MLAPI_Data_NetworkingConfiguration__ctor.htm deleted file mode 100644 index 5acd8c3..0000000 --- a/docs/html/M_MLAPI_Data_NetworkingConfiguration__ctor.htm +++ /dev/null @@ -1,19 +0,0 @@ -NetworkingConfiguration Constructor

NetworkingConfiguration Constructor

[This is preliminary documentation and is subject to change.]

Initializes a new instance of the NetworkingConfiguration class

- Namespace: -  MLAPI.Data
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public NetworkingConfiguration()
Request Example - View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_TransportHost__ctor.htm b/docs/html/M_MLAPI_Data_TransportHost__ctor.htm new file mode 100644 index 0000000..0ddb7fd --- /dev/null +++ b/docs/html/M_MLAPI_Data_TransportHost__ctor.htm @@ -0,0 +1,19 @@ +TransportHost Constructor

TransportHost Constructor

[This is preliminary documentation and is subject to change.]

Initializes a new instance of the TransportHost class

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public TransportHost()
Request Example + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm index 97c7dc7..bafe5f4 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm @@ -20,4 +20,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

networkId
Type: SystemUInt32

[Missing <param name="networkId"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

Return Value

Type: NetworkedObject

[Missing <returns> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

See Also
\ No newline at end of file + View Source

Parameters

networkId
Type: SystemUInt32

[Missing <param name="networkId"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

Return Value

Type: NetworkedObject

[Missing <returns> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm index 480d060..d9c50b3 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm @@ -1,4 +1,4 @@ -NetworkedBehaviour.RegisterMessageHandler Method

NetworkedBehaviourRegisterMessageHandler Method

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.RegisterMessageHandler Method

NetworkedBehaviourRegisterMessageHandler Method

[This is preliminary documentation and is subject to change.]

Registers a message handler

Namespace: @@ -6,7 +6,7 @@ Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
protected int RegisterMessageHandler(
 	string name,
-	Action<int, byte[]> action
+	Action<uint, byte[]> action
 )
Request Example View Source

Parameters

name
Type: SystemString
The MessageType to register
action
Type: SystemActionInt32, Byte
The callback to get invoked whenever a message is received

Return Value

Type: Int32
HandlerId for the messageHandler that can be used to deregister the messageHandler
See Also
\ No newline at end of file + View Source

Parameters

name
Type: SystemString
The MessageType to register
action
Type: SystemActionUInt32, Byte
The callback to get invoked whenever a message is received

Return Value

Type: Int32
HandlerId for the messageHandler that can be used to deregister the messageHandler
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm index 9da7729..b9049ca 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm @@ -1,11 +1,11 @@ -NetworkedBehaviour.SendToClient Method (Int32, String, String, Byte[])

NetworkedBehaviourSendToClient Method (Int32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClient Method (UInt32, String, String, Byte[])

NetworkedBehaviourSendToClient Method (UInt32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

Sends a buffer to a client with a given clientId from Server

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
protected void SendToClient(
-	int clientId,
+	uint clientId,
 	string messageType,
 	string channelName,
 	byte[] data
@@ -23,4 +23,4 @@
 			encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " +
 			"scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D");
 		HT_requestExampleLink.innerHTML = HT_requestExampleLinkText;
-		View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemUInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm index 2186a72..90c3c80 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm @@ -1,11 +1,11 @@ -NetworkedBehaviour.SendToClientTarget Method (Int32, String, String, Byte[])

NetworkedBehaviourSendToClientTarget Method (Int32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClientTarget Method (UInt32, String, String, Byte[])

NetworkedBehaviourSendToClientTarget Method (UInt32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
protected void SendToClientTarget(
-	int clientId,
+	uint clientId,
 	string messageType,
 	string channelName,
 	byte[] data
@@ -23,4 +23,4 @@
 			encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " +
 			"scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D");
 		HT_requestExampleLink.innerHTML = HT_requestExampleLinkText;
-		View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemUInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm index 57656b9..0d9e376 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm @@ -1,4 +1,4 @@ -NetworkedBehaviour.SendToClientTarget(T) Method (Int32, String, String, T)

NetworkedBehaviourSendToClientTargetT Method (Int32, String, String, T)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClientTarget(T) Method (Int32, String, String, T)

NetworkedBehaviourSendToClientTargetT Method (Int32, String, String, T)

[This is preliminary documentation and is subject to change.]

Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked

Namespace: @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm index 013c9ad..16fcc02 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm @@ -1,4 +1,4 @@ -NetworkedBehaviour.SendToClient(T) Method (Int32, String, String, T)

NetworkedBehaviourSendToClientT Method (Int32, String, String, T)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClient(T) Method (Int32, String, String, T)

NetworkedBehaviourSendToClientT Method (Int32, String, String, T)

[This is preliminary documentation and is subject to change.]

Sends a binary serialized class to a client with a given clientId from Server

Namespace: @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm index 02b48fa..40da40e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm @@ -1,11 +1,11 @@ -NetworkedBehaviour.SendToClients Method (List(Int32), String, String, Byte[])

NetworkedBehaviourSendToClients Method (ListInt32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClients Method (List(UInt32), String, String, Byte[])

NetworkedBehaviourSendToClients Method (ListUInt32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

Sends a buffer to multiple clients from the server

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
protected void SendToClients(
-	List<int> clientIds,
+	List<uint> clientIds,
 	string messageType,
 	string channelName,
 	byte[] data
@@ -23,4 +23,4 @@
 			encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " +
 			"scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D");
 		HT_requestExampleLink.innerHTML = HT_requestExampleLinkText;
-		View Source

Parameters

clientIds
Type: System.Collections.GenericListInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm index 6f03e58..c20b062 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm @@ -1,11 +1,11 @@ -NetworkedBehaviour.SendToClientsTarget Method (List(Int32), String, String, Byte[])

NetworkedBehaviourSendToClientsTarget Method (ListInt32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClientsTarget Method (List(UInt32), String, String, Byte[])

NetworkedBehaviourSendToClientsTarget Method (ListUInt32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
protected void SendToClientsTarget(
-	List<int> clientIds,
+	List<uint> clientIds,
 	string messageType,
 	string channelName,
 	byte[] data
@@ -23,4 +23,4 @@
 			encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " +
 			"scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D");
 		HT_requestExampleLink.innerHTML = HT_requestExampleLinkText;
-		View Source

Parameters

clientIds
Type: System.Collections.GenericListInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm index 9945783..e483ee1 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm @@ -1,11 +1,10 @@ -NetworkedBehaviour.SendToClientsTarget Method (Int32[], String, String, Byte[])

NetworkedBehaviourSendToClientsTarget Method (Int32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

- Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked +NetworkedBehaviour.SendToClientsTarget Method (String, String, Byte[])

NetworkedBehaviourSendToClientsTarget Method (String, String, Byte)

[This is preliminary documentation and is subject to change.]

+ Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
protected void SendToClientsTarget(
-	int[] clientIds,
 	string messageType,
 	string channelName,
 	byte[] data
@@ -23,4 +22,4 @@
 			encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " +
 			"scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D");
 		HT_requestExampleLink.innerHTML = HT_requestExampleLinkText;
-		View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm index f0852b8..b765f56 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm @@ -1,10 +1,11 @@ -NetworkedBehaviour.SendToClientsTarget Method (String, String, Byte[])

NetworkedBehaviourSendToClientsTarget Method (String, String, Byte)

[This is preliminary documentation and is subject to change.]

- Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked +NetworkedBehaviour.SendToClientsTarget Method (UInt32[], String, String, Byte[])

NetworkedBehaviourSendToClientsTarget Method (UInt32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

+ Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
protected void SendToClientsTarget(
+	uint[] clientIds,
 	string messageType,
 	string channelName,
 	byte[] data
@@ -22,4 +23,4 @@
 			encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " +
 			"scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D");
 		HT_requestExampleLink.innerHTML = HT_requestExampleLinkText;
-		View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm index 09c8ef0..c38e139 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm @@ -1,11 +1,11 @@ -NetworkedBehaviour.SendToClientsTarget(T) Method (List(Int32), String, String, T)

NetworkedBehaviourSendToClientsTargetT Method (ListInt32, String, String, T)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClientsTarget(T) Method (List(UInt32), String, String, T)

NetworkedBehaviourSendToClientsTargetT Method (ListUInt32, String, String, T)

[This is preliminary documentation and is subject to change.]

Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
protected void SendToClientsTarget<T>(
-	List<int> clientIds,
+	List<uint> clientIds,
 	string messageType,
 	string channelName,
 	T instance
@@ -24,4 +24,4 @@
 			encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " +
 			"scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D");
 		HT_requestExampleLink.innerHTML = HT_requestExampleLinkText;
-		View Source

Parameters

clientIds
Type: System.Collections.GenericListInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm index d663c95..1af7712 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm @@ -1,4 +1,4 @@ -NetworkedBehaviour.SendToClientsTarget(T) Method (Int32[], String, String, T)

NetworkedBehaviourSendToClientsTargetT Method (Int32, String, String, T)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClientsTarget(T) Method (Int32[], String, String, T)

NetworkedBehaviourSendToClientsTargetT Method (Int32, String, String, T)

[This is preliminary documentation and is subject to change.]

Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked

Namespace: @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm index 35f5674..dfc120e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm @@ -1,4 +1,4 @@ -NetworkedBehaviour.SendToClientsTarget(T) Method (String, String, T)

NetworkedBehaviourSendToClientsTargetT Method (String, String, T)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClientsTarget(T) Method (String, String, T)

NetworkedBehaviourSendToClientsTargetT Method (String, String, T)

[This is preliminary documentation and is subject to change.]

Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked

Namespace: @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm index f6f612e..721c5a6 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm @@ -1,11 +1,10 @@ -NetworkedBehaviour.SendToClients Method (Int32[], String, String, Byte[])

NetworkedBehaviourSendToClients Method (Int32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

- Sends a buffer to multiple clients from the server +NetworkedBehaviour.SendToClients Method (String, String, Byte[])

NetworkedBehaviourSendToClients Method (String, String, Byte)

[This is preliminary documentation and is subject to change.]

+ Sends a buffer to all clients from the server

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
protected void SendToClients(
-	int[] clientIds,
 	string messageType,
 	string channelName,
 	byte[] data
@@ -23,4 +22,4 @@
 			encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " +
 			"scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D");
 		HT_requestExampleLink.innerHTML = HT_requestExampleLinkText;
-		View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm index d805810..3c6b53c 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm @@ -1,10 +1,11 @@ -NetworkedBehaviour.SendToClients Method (String, String, Byte[])

NetworkedBehaviourSendToClients Method (String, String, Byte)

[This is preliminary documentation and is subject to change.]

- Sends a buffer to all clients from the server +NetworkedBehaviour.SendToClients Method (UInt32[], String, String, Byte[])

NetworkedBehaviourSendToClients Method (UInt32, String, String, Byte)

[This is preliminary documentation and is subject to change.]

+ Sends a buffer to multiple clients from the server

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
protected void SendToClients(
+	uint[] clientIds,
 	string messageType,
 	string channelName,
 	byte[] data
@@ -22,4 +23,4 @@
 			encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " +
 			"scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D");
 		HT_requestExampleLink.innerHTML = HT_requestExampleLinkText;
-		View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm index 04d9490..5e512f6 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm @@ -1,4 +1,4 @@ -NetworkedBehaviour.SendToClients(T) Method (List(Int32), String, String, T)

NetworkedBehaviourSendToClientsT Method (ListInt32, String, String, T)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClients(T) Method (List(Int32), String, String, T)

NetworkedBehaviourSendToClientsT Method (ListInt32, String, String, T)

[This is preliminary documentation and is subject to change.]

Sends a binary serialized class to multiple clients from the server

Namespace: @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: System.Collections.GenericListInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm index a41476a..6324292 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm @@ -1,4 +1,4 @@ -NetworkedBehaviour.SendToClients(T) Method (Int32[], String, String, T)

NetworkedBehaviourSendToClientsT Method (Int32, String, String, T)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClients(T) Method (Int32[], String, String, T)

NetworkedBehaviourSendToClientsT Method (Int32, String, String, T)

[This is preliminary documentation and is subject to change.]

Sends a binary serialized class to multiple clients from the server

Namespace: @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm index 31aa439..9b877c1 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm @@ -1,4 +1,4 @@ -NetworkedBehaviour.SendToClients(T) Method (String, String, T)

NetworkedBehaviourSendToClientsT Method (String, String, T)

[This is preliminary documentation and is subject to change.]

+NetworkedBehaviour.SendToClients(T) Method (String, String, T)

NetworkedBehaviourSendToClientsT Method (String, String, T)

[This is preliminary documentation and is subject to change.]

Sends a buffer to all clients from the server

Namespace: @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm index 717ec22..327380f 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm index 237d397..4a9cc39 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm index 5fb576f..b5f9b4a 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm index b480cc4..815168a 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm index a7f665c..5f2877b 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm index 25598d2..c779e28 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm index 4801d34..382c70a 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm index 7617e60..a1b2842 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm index 2a27843..03d3f83 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm index 29a9577..c27aedc 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm index 1ecba06..9366552 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm index ae3365c..3db1956 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_ChangeOwnership.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_ChangeOwnership.htm index 7b6ed4c..164e73e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_ChangeOwnership.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_ChangeOwnership.htm @@ -1,11 +1,11 @@ -NetworkedObject.ChangeOwnership Method

NetworkedObjectChangeOwnership Method

[This is preliminary documentation and is subject to change.]

+NetworkedObject.ChangeOwnership Method

NetworkedObjectChangeOwnership Method

[This is preliminary documentation and is subject to change.]

Changes the owner of the object. Can only be called from server

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void ChangeOwnership(
-	int newOwnerClientId
+	uint newOwnerClientId
 )
Request Example View Source

Parameters

newOwnerClientId
Type: SystemInt32
The new owner clientId
See Also
\ No newline at end of file + View Source

Parameters

newOwnerClientId
Type: SystemUInt32
The new owner clientId
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_RemoveOwnership.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_RemoveOwnership.htm index fba7017..cf3d24e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_RemoveOwnership.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_RemoveOwnership.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_Spawn.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_Spawn.htm index 4aa8101..bb530d3 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_Spawn.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_Spawn.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnWithOwnership.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnWithOwnership.htm index d49ce5c..0a84b65 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnWithOwnership.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnWithOwnership.htm @@ -1,11 +1,11 @@ -NetworkedObject.SpawnWithOwnership Method

NetworkedObjectSpawnWithOwnership Method

[This is preliminary documentation and is subject to change.]

+NetworkedObject.SpawnWithOwnership Method

NetworkedObjectSpawnWithOwnership Method

[This is preliminary documentation and is subject to change.]

Spawns an object across the network with a given owner. Can only be called from server

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void SpawnWithOwnership(
-	int clientId
+	uint clientId
 )
Request Example View Source

Parameters

clientId
Type: SystemInt32
The clientId to own the object
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemUInt32
The clientId to own the object
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject__ctor.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject__ctor.htm index 7466e7d..3f2f890 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject__ctor.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedObject__ctor.htm @@ -16,4 +16,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm index 42e50c0..94c6869 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm @@ -1,12 +1,10 @@ -NetworkingManager.StartClient Method

NetworkingManagerStartClient Method

[This is preliminary documentation and is subject to change.]

- Starts a client with a given NetworkingConfiguration +NetworkingManager.StartClient Method

NetworkingManagerStartClient Method

[This is preliminary documentation and is subject to change.]

+ Starts a client

Namespace:  MLAPI.MonoBehaviours.Core
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void StartClient(
-	NetworkingConfiguration netConfig
-)
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void StartClient()
Request Example View Source

Parameters

netConfig
Type: MLAPI.DataNetworkingConfiguration
The NetworkingConfiguration to use
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm new file mode 100644 index 0000000..d8abcc3 --- /dev/null +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm @@ -0,0 +1,21 @@ +NetworkingManager.StartClientWebsocket Method

NetworkingManagerStartClientWebsocket Method

[This is preliminary documentation and is subject to change.]

+ Starts a client using Websockets +

+ Namespace: +  MLAPI.MonoBehaviours.Core
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void StartClientWebsocket()
Request Example + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm index c90d22a..8cea7b9 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm @@ -1,11 +1,12 @@ -NetworkingManager.StartHost Method

NetworkingManagerStartHost Method

[This is preliminary documentation and is subject to change.]

- Starts a Host with a given NetworkingConfiguration +NetworkingManager.StartHost Method

NetworkingManagerStartHost Method

[This is preliminary documentation and is subject to change.]

+ Starts a Host

Namespace:  MLAPI.MonoBehaviours.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void StartHost(
-	NetworkingConfiguration netConfig
+	Nullable<Vector3> pos = null,
+	Nullable<Quaternion> rot = null
 )
Request Example View Source

Parameters

netConfig
Type: MLAPI.DataNetworkingConfiguration
The NetworkingConfiguration to use
See Also
\ No newline at end of file + View Source

Parameters

pos (Optional)
Type: SystemNullableVector3

[Missing <param name="pos"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkingManager.StartHost(System.Nullable{UnityEngine.Vector3},System.Nullable{UnityEngine.Quaternion})"]

rot (Optional)
Type: SystemNullableQuaternion

[Missing <param name="rot"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkingManager.StartHost(System.Nullable{UnityEngine.Vector3},System.Nullable{UnityEngine.Quaternion})"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm index 1963b68..889917e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm @@ -1,12 +1,10 @@ -NetworkingManager.StartServer Method

NetworkingManagerStartServer Method

[This is preliminary documentation and is subject to change.]

- Starts a server with a given NetworkingConfiguration +NetworkingManager.StartServer Method

NetworkingManagerStartServer Method

[This is preliminary documentation and is subject to change.]

+ Starts a server

Namespace:  MLAPI.MonoBehaviours.Core
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void StartServer(
-	NetworkingConfiguration netConfig
-)
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void StartServer()
Request Example View Source

Parameters

netConfig
Type: MLAPI.DataNetworkingConfiguration
The NetworkingConfiguration to use
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm index 865dfcf..8c5d3ff 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm @@ -1,4 +1,4 @@ -NetworkingManager.StopClient Method

NetworkingManagerStopClient Method

[This is preliminary documentation and is subject to change.]

+NetworkingManager.StopClient Method

NetworkingManagerStopClient Method

[This is preliminary documentation and is subject to change.]

Stops the running client

Namespace: @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm index 34fe4d3..3989f15 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm @@ -1,4 +1,4 @@ -NetworkingManager.StopHost Method

NetworkingManagerStopHost Method

[This is preliminary documentation and is subject to change.]

+NetworkingManager.StopHost Method

NetworkingManagerStopHost Method

[This is preliminary documentation and is subject to change.]

Stops the running host

Namespace: @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm index 6535350..d0c571c 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm @@ -1,4 +1,4 @@ -NetworkingManager.StopServer Method

NetworkingManagerStopServer Method

[This is preliminary documentation and is subject to change.]

+NetworkingManager.StopServer Method

NetworkingManagerStopServer Method

[This is preliminary documentation and is subject to change.]

Stops the running server

Namespace: @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager__ctor.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager__ctor.htm index 237c4f0..8d0149f 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager__ctor.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager__ctor.htm @@ -16,4 +16,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_TrackedObject__ctor.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_TrackedObject__ctor.htm index 6a074b4..6923f51 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_TrackedObject__ctor.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_TrackedObject__ctor.htm @@ -1,4 +1,4 @@ -TrackedObject Constructor

TrackedObject Constructor

[This is preliminary documentation and is subject to change.]

Initializes a new instance of the TrackedObject class

+TrackedObject Constructor

TrackedObject Constructor

[This is preliminary documentation and is subject to change.]

Initializes a new instance of the TrackedObject class

Namespace:  MLAPI.MonoBehaviours.Core
Assembly: diff --git a/docs/html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_NetworkStart.htm b/docs/html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_NetworkStart.htm index 4cc6ebc..f57b77f 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_NetworkStart.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_NetworkStart.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform__ctor.htm b/docs/html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform__ctor.htm index 0609d34..1bceec9 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform__ctor.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform__ctor.htm @@ -16,4 +16,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm index 8c95b9f..30352b1 100644 --- a/docs/html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm @@ -1,11 +1,11 @@ -LagCompensationManager.Simulate Method (Int32, Action)

LagCompensationManagerSimulate Method (Int32, Action)

[This is preliminary documentation and is subject to change.]

- Turns time back a given amount of seconds, invokes an action and turns it back. The time is based on the estimated RTT of a clientId +LagCompensationManager.Simulate Method (Single, Action)

LagCompensationManagerSimulate Method (Single, Action)

[This is preliminary documentation and is subject to change.]

+ Turns time back a given amount of seconds, invokes an action and turns it back

Namespace:  MLAPI.NetworkingManagerComponents.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static void Simulate(
-	int clientId,
+	float secondsAgo,
 	Action action
 )
Request Example View Source

Parameters

clientId
Type: SystemInt32
The clientId's RTT to use
action
Type: SystemAction
The action to invoke when time is turned back
See Also
\ No newline at end of file + View Source

Parameters

secondsAgo
Type: SystemSingle
The amount of seconds
action
Type: SystemAction
The action to invoke when time is turned back
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate_1.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate_1.htm index 50020a6..4c7463e 100644 --- a/docs/html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate_1.htm +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate_1.htm @@ -1,11 +1,11 @@ -LagCompensationManager.Simulate Method (Single, Action)

LagCompensationManagerSimulate Method (Single, Action)

[This is preliminary documentation and is subject to change.]

- Turns time back a given amount of seconds, invokes an action and turns it back +LagCompensationManager.Simulate Method (UInt32, Action)

LagCompensationManagerSimulate Method (UInt32, Action)

[This is preliminary documentation and is subject to change.]

+ Turns time back a given amount of seconds, invokes an action and turns it back. The time is based on the estimated RTT of a clientId

Namespace:  MLAPI.NetworkingManagerComponents.Core
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static void Simulate(
-	float secondsAgo,
+	uint clientId,
 	Action action
 )
Request Example View Source

Parameters

secondsAgo
Type: SystemSingle
The amount of seconds
action
Type: SystemAction
The action to invoke when time is turned back
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemUInt32
The clientId's RTT to use
action
Type: SystemAction
The action to invoke when time is turned back
See Also
\ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_Data_Channel.htm b/docs/html/Methods_T_MLAPI_Data_Channel.htm new file mode 100644 index 0000000..9ba102f --- /dev/null +++ b/docs/html/Methods_T_MLAPI_Data_Channel.htm @@ -0,0 +1,3 @@ +Channel Methods

Channel Methods

[This is preliminary documentation and is subject to change.]

The Channel type exposes the following members.

Methods
+   + NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_Data_MessageType.htm b/docs/html/Methods_T_MLAPI_Data_MessageType.htm new file mode 100644 index 0000000..df4193a --- /dev/null +++ b/docs/html/Methods_T_MLAPI_Data_MessageType.htm @@ -0,0 +1,3 @@ +MessageType Methods

MessageType Methods

[This is preliminary documentation and is subject to change.]

The MessageType type exposes the following members.

Methods
+   + NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_Data_NetId.htm b/docs/html/Methods_T_MLAPI_Data_NetId.htm new file mode 100644 index 0000000..4b41704 --- /dev/null +++ b/docs/html/Methods_T_MLAPI_Data_NetId.htm @@ -0,0 +1,13 @@ +NetId Methods

NetId Methods

[This is preliminary documentation and is subject to change.]

The NetId type exposes the following members.

Methods
+   + NameDescription
Public methodEquals
+ Determines whether the specified Object is equal to the current NetId. +
(Overrides ValueTypeEquals(Object).)
Public methodGetClientId
+ Gets the clientId. +
Public methodGetHashCode
+ Serves as a hash function for a NetId object. +
(Overrides ValueTypeGetHashCode.)
Public methodGetType (Inherited from Object.)
Public methodIsHost
+ Returns wheter or not the clientId represents a -1 +
Public methodIsInvalid
+ Returns if this is a invalid clientId, (-2) +
Public methodToString (Inherited from ValueType.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_Data_NetworkConfig.htm b/docs/html/Methods_T_MLAPI_Data_NetworkConfig.htm new file mode 100644 index 0000000..1c9d6ab --- /dev/null +++ b/docs/html/Methods_T_MLAPI_Data_NetworkConfig.htm @@ -0,0 +1,7 @@ +NetworkConfig Methods

NetworkConfig Methods

[This is preliminary documentation and is subject to change.]

The NetworkConfig type exposes the following members.

Methods
+   + NameDescription
Public methodCompareConfig
+ Compares a SHA256 hash with the current NetworkingConfiguration instances hash +
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetConfig
+ Gets a SHA256 hash of parts of the NetworkingConfiguration instance +
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_Data_NetworkedPrefab.htm b/docs/html/Methods_T_MLAPI_Data_NetworkedPrefab.htm new file mode 100644 index 0000000..a4fcb2b --- /dev/null +++ b/docs/html/Methods_T_MLAPI_Data_NetworkedPrefab.htm @@ -0,0 +1,3 @@ +NetworkedPrefab Methods

NetworkedPrefab Methods

[This is preliminary documentation and is subject to change.]

The NetworkedPrefab type exposes the following members.

Methods
+   + NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_Data_NetworkingConfiguration.htm b/docs/html/Methods_T_MLAPI_Data_NetworkingConfiguration.htm deleted file mode 100644 index 0be4d92..0000000 --- a/docs/html/Methods_T_MLAPI_Data_NetworkingConfiguration.htm +++ /dev/null @@ -1,7 +0,0 @@ -NetworkingConfiguration Methods

NetworkingConfiguration Methods

[This is preliminary documentation and is subject to change.]

The NetworkingConfiguration type exposes the following members.

Methods
-   - NameDescription
Public methodCompareConfig
- Compares a SHA256 hash with the current NetworkingConfiguration instances hash -
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetConfig
- Gets a SHA256 hash of parts of the NetworkingConfiguration instance -
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_Data_TransportHost.htm b/docs/html/Methods_T_MLAPI_Data_TransportHost.htm new file mode 100644 index 0000000..9742c9a --- /dev/null +++ b/docs/html/Methods_T_MLAPI_Data_TransportHost.htm @@ -0,0 +1,3 @@ +TransportHost Methods

TransportHost Methods

[This is preliminary documentation and is subject to change.]

The TransportHost type exposes the following members.

Methods
+   + NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm b/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm index 3c6210c..32ff8bd 100644 --- a/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm +++ b/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm @@ -12,15 +12,15 @@ Gets called when we loose ownership of this object
Protected methodRegisterMessageHandler
Registers a message handler -
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(Int32, String, String, Byte)
+
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server
Protected methodSendToClientT(Int32, String, String, T)
Sends a binary serialized class to a client with a given clientId from Server -
Protected methodSendToClients(String, String, Byte)
+
Protected methodSendToClients(String, String, Byte)
Sends a buffer to all clients from the server -
Protected methodSendToClients(ListInt32, String, String, Byte)
+
Protected methodSendToClients(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server -
Protected methodSendToClients(Int32, String, String, Byte)
+
Protected methodSendToClients(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server
Protected methodSendToClientsT(String, String, T)
Sends a buffer to all clients from the server @@ -28,19 +28,19 @@ Sends a binary serialized class to multiple clients from the server
Protected methodSendToClientsT(Int32, String, String, T)
Sends a binary serialized class to multiple clients from the server -
Protected methodSendToClientsTarget(String, String, Byte)
+
Protected methodSendToClientsTarget(String, String, Byte)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
Protected methodSendToClientsTarget(ListInt32, String, String, Byte)
+
Protected methodSendToClientsTarget(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
Protected methodSendToClientsTarget(Int32, String, String, Byte)
+
Protected methodSendToClientsTarget(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
Protected methodSendToClientsTargetT(String, String, T)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
Protected methodSendToClientsTargetT(ListInt32, String, String, T)
+
Protected methodSendToClientsTargetT(ListUInt32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
Protected methodSendToClientsTargetT(Int32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
Protected methodSendToClientTarget(Int32, String, String, Byte)
+
Protected methodSendToClientTarget(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
Protected methodSendToClientTargetT(Int32, String, String, T)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked diff --git a/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm b/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm index 35aa14c..a2bdc5f 100644 --- a/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm +++ b/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm @@ -1,11 +1,13 @@ -NetworkingManager Methods

NetworkingManager Methods

[This is preliminary documentation and is subject to change.]

The NetworkingManager type exposes the following members.

Methods
+NetworkingManager Methods

NetworkingManager Methods

[This is preliminary documentation and is subject to change.]

The NetworkingManager type exposes the following members.

Methods
  NameDescription
Public methodBroadcastMessage(String) (Inherited from Component.)
Public methodBroadcastMessage(String, Object) (Inherited from Component.)
Public methodBroadcastMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodBroadcastMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodCancelInvoke (Inherited from MonoBehaviour.)
Public methodCancelInvoke(String) (Inherited from MonoBehaviour.)
Public methodCompareTag (Inherited from Component.)
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetComponent(Type) (Inherited from Component.)
Public methodGetComponent(String) (Inherited from Component.)
Public methodGetComponent``1 (Inherited from Component.)
Public methodGetComponentInChildren(Type) (Inherited from Component.)
Public methodGetComponentInChildren(Type, Boolean) (Inherited from Component.)
Public methodGetComponentInChildren``1 (Inherited from Component.)
Public methodGetComponentInChildren``1(Boolean) (Inherited from Component.)
Public methodGetComponentInParent(Type) (Inherited from Component.)
Public methodGetComponentInParent``1 (Inherited from Component.)
Public methodGetComponents(Type) (Inherited from Component.)
Public methodGetComponents(Type, ListComponent) (Inherited from Component.)
Public methodGetComponents``1 (Inherited from Component.)
Public methodGetComponents``1(ListUMP) (Inherited from Component.)
Public methodGetComponentsInChildren(Type) (Inherited from Component.)
Public methodGetComponentsInChildren(Type, Boolean) (Inherited from Component.)
Public methodGetComponentsInChildren``1 (Inherited from Component.)
Public methodGetComponentsInChildren``1(Boolean) (Inherited from Component.)
Public methodGetComponentsInChildren``1(ListUMP) (Inherited from Component.)
Public methodGetComponentsInChildren``1(Boolean, ListUMP) (Inherited from Component.)
Public methodGetComponentsInParent(Type) (Inherited from Component.)
Public methodGetComponentsInParent(Type, Boolean) (Inherited from Component.)
Public methodGetComponentsInParent``1 (Inherited from Component.)
Public methodGetComponentsInParent``1(Boolean) (Inherited from Component.)
Public methodGetComponentsInParent``1(Boolean, ListUMP) (Inherited from Component.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetInstanceID (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodInvoke (Inherited from MonoBehaviour.)
Public methodInvokeRepeating (Inherited from MonoBehaviour.)
Public methodIsInvoking (Inherited from MonoBehaviour.)
Public methodIsInvoking(String) (Inherited from MonoBehaviour.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodStartClient
- Starts a client with a given NetworkingConfiguration + Starts a client +
Public methodStartClientWebsocket
+ Starts a client using Websockets
Public methodStartCoroutine(IEnumerator) (Inherited from MonoBehaviour.)
Public methodStartCoroutine(String) (Inherited from MonoBehaviour.)
Public methodStartCoroutine(String, Object) (Inherited from MonoBehaviour.)
Public methodStartCoroutine_Auto Obsolete. (Inherited from MonoBehaviour.)
Public methodStartHost
- Starts a Host with a given NetworkingConfiguration + Starts a Host
Public methodStartServer
- Starts a server with a given NetworkingConfiguration + Starts a server
Public methodStopAllCoroutines (Inherited from MonoBehaviour.)
Public methodStopClient
Stops the running client
Public methodStopCoroutine(String) (Inherited from MonoBehaviour.)
Public methodStopCoroutine(IEnumerator) (Inherited from MonoBehaviour.)
Public methodStopCoroutine(Coroutine) (Inherited from MonoBehaviour.)
Public methodStopHost
diff --git a/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm b/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm index 0734345..f6e036b 100644 --- a/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm +++ b/docs/html/Methods_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm @@ -1,3 +1,3 @@ -TrackedObject Methods

TrackedObject Methods

[This is preliminary documentation and is subject to change.]

The TrackedObject type exposes the following members.

Methods
+TrackedObject Methods

TrackedObject Methods

[This is preliminary documentation and is subject to change.]

The TrackedObject type exposes the following members.

Methods
  NameDescription
Public methodBroadcastMessage(String) (Inherited from Component.)
Public methodBroadcastMessage(String, Object) (Inherited from Component.)
Public methodBroadcastMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodBroadcastMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodCancelInvoke (Inherited from MonoBehaviour.)
Public methodCancelInvoke(String) (Inherited from MonoBehaviour.)
Public methodCompareTag (Inherited from Component.)
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetComponent(Type) (Inherited from Component.)
Public methodGetComponent(String) (Inherited from Component.)
Public methodGetComponent``1 (Inherited from Component.)
Public methodGetComponentInChildren(Type) (Inherited from Component.)
Public methodGetComponentInChildren(Type, Boolean) (Inherited from Component.)
Public methodGetComponentInChildren``1 (Inherited from Component.)
Public methodGetComponentInChildren``1(Boolean) (Inherited from Component.)
Public methodGetComponentInParent(Type) (Inherited from Component.)
Public methodGetComponentInParent``1 (Inherited from Component.)
Public methodGetComponents(Type) (Inherited from Component.)
Public methodGetComponents(Type, ListComponent) (Inherited from Component.)
Public methodGetComponents``1 (Inherited from Component.)
Public methodGetComponents``1(ListUMP) (Inherited from Component.)
Public methodGetComponentsInChildren(Type) (Inherited from Component.)
Public methodGetComponentsInChildren(Type, Boolean) (Inherited from Component.)
Public methodGetComponentsInChildren``1 (Inherited from Component.)
Public methodGetComponentsInChildren``1(Boolean) (Inherited from Component.)
Public methodGetComponentsInChildren``1(ListUMP) (Inherited from Component.)
Public methodGetComponentsInChildren``1(Boolean, ListUMP) (Inherited from Component.)
Public methodGetComponentsInParent(Type) (Inherited from Component.)
Public methodGetComponentsInParent(Type, Boolean) (Inherited from Component.)
Public methodGetComponentsInParent``1 (Inherited from Component.)
Public methodGetComponentsInParent``1(Boolean) (Inherited from Component.)
Public methodGetComponentsInParent``1(Boolean, ListUMP) (Inherited from Component.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetInstanceID (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodInvoke (Inherited from MonoBehaviour.)
Public methodInvokeRepeating (Inherited from MonoBehaviour.)
Public methodIsInvoking (Inherited from MonoBehaviour.)
Public methodIsInvoking(String) (Inherited from MonoBehaviour.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodStartCoroutine(IEnumerator) (Inherited from MonoBehaviour.)
Public methodStartCoroutine(String) (Inherited from MonoBehaviour.)
Public methodStartCoroutine(String, Object) (Inherited from MonoBehaviour.)
Public methodStartCoroutine_Auto Obsolete. (Inherited from MonoBehaviour.)
Public methodStopAllCoroutines (Inherited from MonoBehaviour.)
Public methodStopCoroutine(String) (Inherited from MonoBehaviour.)
Public methodStopCoroutine(IEnumerator) (Inherited from MonoBehaviour.)
Public methodStopCoroutine(Coroutine) (Inherited from MonoBehaviour.)
Public methodToString (Inherited from Object.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm b/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm index c04e56e..18e8227 100644 --- a/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm +++ b/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm @@ -16,15 +16,15 @@ Registers a message handler (Inherited from NetworkedBehaviour.)
Public methodResetParameterOptions
TODO -
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(Int32, String, String, Byte)
+
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientT(Int32, String, String, T)
Sends a binary serialized class to a client with a given clientId from Server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
Sends a buffer to all clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(String, String, T)
Sends a buffer to all clients from the server @@ -32,19 +32,19 @@ Sends a binary serialized class to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(Int32, String, String, T)
Sends a binary serialized class to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(String, String, T)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListInt32, String, String, T)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListUInt32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(Int32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTargetT(Int32, String, String, T)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked diff --git a/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm b/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm index 9953bd3..ff25eeb 100644 --- a/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm +++ b/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm @@ -12,15 +12,15 @@ Gets called when we loose ownership of this object
(Inherited from NetworkedBehaviour.)
Protected methodRegisterMessageHandler
Registers a message handler -
(Inherited from NetworkedBehaviour.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientT(Int32, String, String, T)
Sends a binary serialized class to a client with a given clientId from Server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
Sends a buffer to all clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(String, String, T)
Sends a buffer to all clients from the server @@ -28,19 +28,19 @@ Sends a binary serialized class to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(Int32, String, String, T)
Sends a binary serialized class to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(String, String, T)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListInt32, String, String, T)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListUInt32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(Int32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTargetT(Int32, String, String, T)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked diff --git a/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm b/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm index c124e04..1abec01 100644 --- a/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm +++ b/docs/html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm @@ -12,15 +12,15 @@ Gets called when we loose ownership of this object
(Inherited from NetworkedBehaviour.)
Protected methodRegisterMessageHandler
Registers a message handler -
(Inherited from NetworkedBehaviour.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientT(Int32, String, String, T)
Sends a binary serialized class to a client with a given clientId from Server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
Sends a buffer to all clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(String, String, T)
Sends a buffer to all clients from the server @@ -28,19 +28,19 @@ Sends a binary serialized class to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(Int32, String, String, T)
Sends a binary serialized class to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(String, String, T)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListInt32, String, String, T)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListUInt32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(Int32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTargetT(Int32, String, String, T)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked diff --git a/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm b/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm index 341094a..d0c06e4 100644 --- a/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm +++ b/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm @@ -1,7 +1,7 @@ LagCompensationManager Methods

LagCompensationManager Methods

[This is preliminary documentation and is subject to change.]

Methods
  - NameDescription
Public methodStatic memberSimulate(Int32, Action)
- Turns time back a given amount of seconds, invokes an action and turns it back. The time is based on the estimated RTT of a clientId -
Public methodStatic memberSimulate(Single, Action)
+
NameDescription
Public methodStatic memberSimulate(Single, Action)
Turns time back a given amount of seconds, invokes an action and turns it back +
Public methodStatic memberSimulate(UInt32, Action)
+ Turns time back a given amount of seconds, invokes an action and turns it back. The time is based on the estimated RTT of a clientId
Top
See Also
\ No newline at end of file diff --git a/docs/html/N_MLAPI_Data.htm b/docs/html/N_MLAPI_Data.htm index de93e50..5687ed2 100644 --- a/docs/html/N_MLAPI_Data.htm +++ b/docs/html/N_MLAPI_Data.htm @@ -1,7 +1,19 @@ -MLAPI.Data Namespace

MLAPI.Data Namespace

[This is preliminary documentation and is subject to change.]

 
Classes
+MLAPI.Data Namespace

MLAPI.Data Namespace

[This is preliminary documentation and is subject to change.]

 
Classes
  - ClassDescription
Public classNetworkedClient
- A NetworkedClient -
Public classNetworkingConfiguration
+
ClassDescription
Public classChannel
+ A data object that represents a NetworkTransport channel +
Public classMessageType
+ Represents a MLAPI message type +
Public classNetworkConfig
The configuration object used to start server, client and hosts +
Public classNetworkedClient
+ A NetworkedClient +
Public classNetworkedPrefab
+ A class that represents a NetworkedPrefab +
Public classTransportHost
+ Represents a Transport host +
Structures
+   + StructureDescription
Public structureNetId
+ Represents a ClientId structure
\ No newline at end of file diff --git a/docs/html/Operators_T_MLAPI_Data_NetId.htm b/docs/html/Operators_T_MLAPI_Data_NetId.htm new file mode 100644 index 0000000..1883f1e --- /dev/null +++ b/docs/html/Operators_T_MLAPI_Data_NetId.htm @@ -0,0 +1,7 @@ +NetId Operators

NetId Operators

[This is preliminary documentation and is subject to change.]

The NetId type exposes the following members.

Operators
+   + NameDescription
Public operatorStatic memberEquality
+ Determines whether a specified instance of NetId is equal to another specified NetId. +
Public operatorStatic memberInequality
+ Determines whether a specified instance of NetId is not equal to another specified NetId. +
Top
See Also
\ No newline at end of file diff --git a/docs/html/Overload_MLAPI_Data_NetId__ctor.htm b/docs/html/Overload_MLAPI_Data_NetId__ctor.htm new file mode 100644 index 0000000..036f363 --- /dev/null +++ b/docs/html/Overload_MLAPI_Data_NetId__ctor.htm @@ -0,0 +1,7 @@ +NetId Constructor

NetId Constructor

[This is preliminary documentation and is subject to change.]

Overload List
+   + NameDescription
Public methodNetId(UInt32)
+ Initializes a new instance of the netId struct from a clientId +
Public methodNetId(Byte, UInt16, Boolean, Boolean)
+ Initializes a new instance of the netId struct from transport values +
Top
See Also
\ No newline at end of file diff --git a/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm b/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm index bde77a0..84a5cf0 100644 --- a/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm +++ b/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm @@ -1,7 +1,7 @@ -NetworkedBehaviour.SendToClient Method

NetworkedBehaviourSendToClient Method

[This is preliminary documentation and is subject to change.]

Overload List
+NetworkedBehaviour.SendToClient Method \ No newline at end of file diff --git a/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm b/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm index e649819..a19b124 100644 --- a/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm +++ b/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm @@ -1,7 +1,7 @@ -NetworkedBehaviour.SendToClientTarget Method

NetworkedBehaviourSendToClientTarget Method

[This is preliminary documentation and is subject to change.]

Overload List
+NetworkedBehaviour.SendToClientTarget Method
\ No newline at end of file diff --git a/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm b/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm index 61a1ab3..2b9e96c 100644 --- a/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm +++ b/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm @@ -1,15 +1,15 @@ -NetworkedBehaviour.SendToClients Method

NetworkedBehaviourSendToClients Method

[This is preliminary documentation and is subject to change.]

Overload List
+NetworkedBehaviour.SendToClients Method

NetworkedBehaviourSendToClients Method

[This is preliminary documentation and is subject to change.]

Overload List
  - NameDescription
Protected methodSendToClients(String, String, Byte)
+
NameDescription
Protected methodSendToClients(String, String, Byte)
Sends a buffer to all clients from the server
Protected methodSendToClientsT(String, String, T)
Sends a buffer to all clients from the server -
Protected methodSendToClients(ListInt32, String, String, Byte)
- Sends a buffer to multiple clients from the server -
Protected methodSendToClientsT(ListInt32, String, String, T)
+
Protected methodSendToClientsT(ListInt32, String, String, T)
Sends a binary serialized class to multiple clients from the server -
Protected methodSendToClients(Int32, String, String, Byte)
+
Protected methodSendToClients(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server -
Protected methodSendToClientsT(Int32, String, String, T)
+
Protected methodSendToClientsT(Int32, String, String, T)
Sends a binary serialized class to multiple clients from the server +
Protected methodSendToClients(UInt32, String, String, Byte)
+ Sends a buffer to multiple clients from the server
Top
See Also
\ No newline at end of file diff --git a/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm b/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm index 28d8b90..5a5fb41 100644 --- a/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm +++ b/docs/html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm @@ -1,15 +1,15 @@ -NetworkedBehaviour.SendToClientsTarget Method

NetworkedBehaviourSendToClientsTarget Method

[This is preliminary documentation and is subject to change.]

Overload List
+NetworkedBehaviour.SendToClientsTarget Method

NetworkedBehaviourSendToClientsTarget Method

[This is preliminary documentation and is subject to change.]

Overload List
  - NameDescription
Protected methodSendToClientsTarget(String, String, Byte)
+
NameDescription
Protected methodSendToClientsTarget(String, String, Byte)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked
Protected methodSendToClientsTargetT(String, String, T)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
Protected methodSendToClientsTarget(ListInt32, String, String, Byte)
+
Protected methodSendToClientsTarget(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
Protected methodSendToClientsTargetT(ListInt32, String, String, T)
+
Protected methodSendToClientsTargetT(ListUInt32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
Protected methodSendToClientsTarget(Int32, String, String, Byte)
+
Protected methodSendToClientsTargetT(Int32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
Protected methodSendToClientsTargetT(Int32, String, String, T)
+
Protected methodSendToClientsTarget(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
Top
See Also
\ No newline at end of file diff --git a/docs/html/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm b/docs/html/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm index 85677ba..f8074a4 100644 --- a/docs/html/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm +++ b/docs/html/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm @@ -1,7 +1,7 @@ -LagCompensationManager.Simulate Method

LagCompensationManagerSimulate Method

[This is preliminary documentation and is subject to change.]

Overload List
+LagCompensationManager.Simulate Method

LagCompensationManagerSimulate Method

[This is preliminary documentation and is subject to change.]

Overload List
  - NameDescription
Public methodStatic memberSimulate(Int32, Action)
- Turns time back a given amount of seconds, invokes an action and turns it back. The time is based on the estimated RTT of a clientId -
Public methodStatic memberSimulate(Single, Action)
+
NameDescription
Public methodStatic memberSimulate(Single, Action)
Turns time back a given amount of seconds, invokes an action and turns it back +
Public methodStatic memberSimulate(UInt32, Action)
+ Turns time back a given amount of seconds, invokes an action and turns it back. The time is based on the estimated RTT of a clientId
Top
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_Data_NetId_ServerNetId.htm b/docs/html/P_MLAPI_Data_NetId_ServerNetId.htm new file mode 100644 index 0000000..114d045 --- /dev/null +++ b/docs/html/P_MLAPI_Data_NetId_ServerNetId.htm @@ -0,0 +1,21 @@ +NetId.ServerNetId Property

NetIdServerNetId Property

[This is preliminary documentation and is subject to change.]

+ Static ServerNetId for comparison +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static NetId ServerNetId { get; }
Request Example + View Source

Property Value

Type: NetId
The server net identifier.
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm index 5d402f4..c391b8b 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm @@ -4,7 +4,7 @@ Namespace:  MLAPI.MonoBehaviours.Core
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int ownerClientId { get; }
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public uint ownerClientId { get; }
Request Example View Source

Property Value

Type: Int32
See Also
\ No newline at end of file + View Source

Property Value

Type: UInt32
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkId.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkId.htm index c40b0ea..b6b58b9 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkId.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkId.htm @@ -1,4 +1,4 @@ -NetworkedObject.NetworkId Property

NetworkedObjectNetworkId Property

[This is preliminary documentation and is subject to change.]

+NetworkedObject.NetworkId Property

NetworkedObjectNetworkId Property

[This is preliminary documentation and is subject to change.]

Gets the unique ID of this object that is synced across the network

Namespace: @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: UInt32
See Also
\ No newline at end of file + View Source

Property Value

Type: UInt32
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_OwnerClientId.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_OwnerClientId.htm index 7cd15f0..24995e4 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_OwnerClientId.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_OwnerClientId.htm @@ -1,10 +1,10 @@ -NetworkedObject.OwnerClientId Property

NetworkedObjectOwnerClientId Property

[This is preliminary documentation and is subject to change.]

+NetworkedObject.OwnerClientId Property

NetworkedObjectOwnerClientId Property

[This is preliminary documentation and is subject to change.]

Gets the clientId of the owner of this NetworkedObject

Namespace:  MLAPI.MonoBehaviours.Core
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int OwnerClientId { get; }
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public uint OwnerClientId { get; }
Request Example View Source

Property Value

Type: Int32
See Also
\ No newline at end of file + View Source

Property Value

Type: UInt32
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_PoolId.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_PoolId.htm index 9cb28fb..ad6e2ca 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_PoolId.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_PoolId.htm @@ -1,4 +1,4 @@ -NetworkedObject.PoolId Property

NetworkedObjectPoolId Property

[This is preliminary documentation and is subject to change.]

+NetworkedObject.PoolId Property

NetworkedObjectPoolId Property

[This is preliminary documentation and is subject to change.]

Gets the poolId this object is part of

Namespace: @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: UInt16
See Also
\ No newline at end of file + View Source

Property Value

Type: UInt16
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnablePrefabIndex.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnablePrefabIndex.htm deleted file mode 100644 index 63eeddb..0000000 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnablePrefabIndex.htm +++ /dev/null @@ -1,21 +0,0 @@ -NetworkedObject.SpawnablePrefabIndex Property

NetworkedObjectSpawnablePrefabIndex Property

[This is preliminary documentation and is subject to change.]

- The index of the prefab used to spawn this in the spawnablePrefabs list -

- Namespace: -  MLAPI.MonoBehaviours.Core
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int SpawnablePrefabIndex { get; }
Request Example - View Source

Property Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isLocalPlayer.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isLocalPlayer.htm index daa722f..de35b2a 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isLocalPlayer.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isLocalPlayer.htm @@ -1,4 +1,4 @@ -NetworkedObject.isLocalPlayer Property

NetworkedObjectisLocalPlayer Property

[This is preliminary documentation and is subject to change.]

+NetworkedObject.isLocalPlayer Property

NetworkedObjectisLocalPlayer Property

[This is preliminary documentation and is subject to change.]

Gets if the object is the the personal clients player object

Namespace: @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isOwner.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isOwner.htm index 854329e..c7d0555 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isOwner.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isOwner.htm @@ -1,4 +1,4 @@ -NetworkedObject.isOwner Property

NetworkedObjectisOwner Property

[This is preliminary documentation and is subject to change.]

+NetworkedObject.isOwner Property

NetworkedObjectisOwner Property

[This is preliminary documentation and is subject to change.]

Gets if the object is owned by the local player

Namespace: @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPlayerObject.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPlayerObject.htm index 15e4f3f..2364e5b 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPlayerObject.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPlayerObject.htm @@ -1,4 +1,4 @@ -NetworkedObject.isPlayerObject Property

NetworkedObjectisPlayerObject Property

[This is preliminary documentation and is subject to change.]

+NetworkedObject.isPlayerObject Property

NetworkedObjectisPlayerObject Property

[This is preliminary documentation and is subject to change.]

Gets if this object is a player object

Namespace: @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPooledObject.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPooledObject.htm index 7560c6d..6021927 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPooledObject.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPooledObject.htm @@ -1,4 +1,4 @@ -NetworkedObject.isPooledObject Property

NetworkedObjectisPooledObject Property

[This is preliminary documentation and is subject to change.]

+NetworkedObject.isPooledObject Property

NetworkedObjectisPooledObject Property

[This is preliminary documentation and is subject to change.]

Gets if this object is part of a pool

Namespace: @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isSpawned.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isSpawned.htm index 6978e09..8f4d326 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isSpawned.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isSpawned.htm @@ -1,4 +1,4 @@ -NetworkedObject.isSpawned Property

NetworkedObjectisSpawned Property

[This is preliminary documentation and is subject to change.]

+NetworkedObject.isSpawned Property

NetworkedObjectisSpawned Property

[This is preliminary documentation and is subject to change.]

Gets if the object has yet been spawned across the network

Namespace: @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectedClients.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectedClients.htm index 5ecb5be..89e7759 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectedClients.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectedClients.htm @@ -4,7 +4,7 @@ Namespace:  MLAPI.MonoBehaviours.Core
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Dictionary<int, NetworkedClient> ConnectedClients { get; }
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Dictionary<uint, NetworkedClient> ConnectedClients { get; }
Request Example View Source

Property Value

Type: DictionaryInt32, NetworkedClient
See Also
\ No newline at end of file + View Source

Property Value

Type: DictionaryUInt32, NetworkedClient
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_IsClientConnected.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_IsClientConnected.htm index 8dc0922..8b173ad 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_IsClientConnected.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_IsClientConnected.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_MyClientId.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_MyClientId.htm index 05cbc1d..ec34463 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_MyClientId.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_MyClientId.htm @@ -4,7 +4,7 @@ Namespace:  MLAPI.MonoBehaviours.Core
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int MyClientId { get; }
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public uint MyClientId { get; }
Request Example View Source

Property Value

Type: Int32
See Also
\ No newline at end of file + View Source

Property Value

Type: UInt32
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkTime.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkTime.htm index 198739c..6856979 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkTime.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkTime.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Single
See Also
\ No newline at end of file + View Source

Property Value

Type: Single
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isClient.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isClient.htm index b019094..a0e8ca2 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isClient.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isClient.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isHost.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isHost.htm index e6b29c9..9573005 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isHost.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isHost.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isServer.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isServer.htm index 544283e..f92d5d5 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isServer.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isServer.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_singleton.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_singleton.htm index 76f8dea..685ab60 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_singleton.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_singleton.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: NetworkingManager
See Also
\ No newline at end of file + View Source

Property Value

Type: NetworkingManager
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_TrackedObject_AvgTimeBetweenPointsMs.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_TrackedObject_AvgTimeBetweenPointsMs.htm new file mode 100644 index 0000000..dcc6536 --- /dev/null +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_TrackedObject_AvgTimeBetweenPointsMs.htm @@ -0,0 +1,21 @@ +TrackedObject.AvgTimeBetweenPointsMs Property

TrackedObjectAvgTimeBetweenPointsMs Property

[This is preliminary documentation and is subject to change.]

+ Gets the average amount of time between the points in miliseconds +

+ Namespace: +  MLAPI.MonoBehaviours.Core
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public float AvgTimeBetweenPointsMs { get; }
Request Example + View Source

Property Value

Type: Single
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_TrackedObject_TotalPoints.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_TrackedObject_TotalPoints.htm new file mode 100644 index 0000000..8ea98e5 --- /dev/null +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_TrackedObject_TotalPoints.htm @@ -0,0 +1,21 @@ +TrackedObject.TotalPoints Property

TrackedObjectTotalPoints Property

[This is preliminary documentation and is subject to change.]

+ Gets the total amount of points stored in the component +

+ Namespace: +  MLAPI.MonoBehaviours.Core
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int TotalPoints { get; }
Request Example + View Source

Property Value

Type: Int32
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_SimulationObjects.htm b/docs/html/P_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_SimulationObjects.htm index 3b84643..c8c650f 100644 --- a/docs/html/P_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_SimulationObjects.htm +++ b/docs/html/P_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_SimulationObjects.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: ListTrackedObject
See Also
\ No newline at end of file + View Source

Property Value

Type: ListTrackedObject
See Also
\ No newline at end of file diff --git a/docs/html/Properties_T_MLAPI_Data_NetId.htm b/docs/html/Properties_T_MLAPI_Data_NetId.htm new file mode 100644 index 0000000..2b76086 --- /dev/null +++ b/docs/html/Properties_T_MLAPI_Data_NetId.htm @@ -0,0 +1,5 @@ +NetId Properties

NetId Properties

[This is preliminary documentation and is subject to change.]

The NetId type exposes the following members.

Properties
+   + NameDescription
Public propertyStatic memberServerNetId
+ Static ServerNetId for comparison +
Top
See Also
\ No newline at end of file diff --git a/docs/html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm b/docs/html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm index 0722785..cb4f41a 100644 --- a/docs/html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm +++ b/docs/html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm @@ -1,4 +1,4 @@ -NetworkedObject Properties

NetworkedObject Properties

[This is preliminary documentation and is subject to change.]

The NetworkedObject type exposes the following members.

Properties
+NetworkedObject Properties

NetworkedObject Properties

[This is preliminary documentation and is subject to change.]

The NetworkedObject type exposes the following members.

Properties
  NameDescription
Public propertyanimation Obsolete. (Inherited from Component.)
Public propertyaudio Obsolete. (Inherited from Component.)
Public propertycamera Obsolete. (Inherited from Component.)
Public propertycollider Obsolete. (Inherited from Component.)
Public propertycollider2D Obsolete. (Inherited from Component.)
Public propertyconstantForce Obsolete. (Inherited from Component.)
Public propertyenabled (Inherited from Behaviour.)
Public propertygameObject (Inherited from Component.)
Public propertyguiElement Obsolete. (Inherited from Component.)
Public propertyguiText Obsolete. (Inherited from Component.)
Public propertyguiTexture Obsolete. (Inherited from Component.)
Public propertyhideFlags (Inherited from Object.)
Public propertyhingeJoint Obsolete. (Inherited from Component.)
Public propertyisActiveAndEnabled (Inherited from Behaviour.)
Public propertyisLocalPlayer
Gets if the object is the the personal clients player object @@ -16,6 +16,4 @@ Gets the clientId of the owner of this NetworkedObject
Public propertyparticleEmitter Obsolete. (Inherited from Component.)
Public propertyparticleSystem Obsolete. (Inherited from Component.)
Public propertyPoolId
Gets the poolId this object is part of -
Public propertyrenderer Obsolete. (Inherited from Component.)
Public propertyrigidbody Obsolete. (Inherited from Component.)
Public propertyrigidbody2D Obsolete. (Inherited from Component.)
Public propertyrunInEditMode (Inherited from MonoBehaviour.)
Public propertySpawnablePrefabIndex
- The index of the prefab used to spawn this in the spawnablePrefabs list -
Public propertytag (Inherited from Component.)
Public propertytransform (Inherited from Component.)
Public propertyuseGUILayout (Inherited from MonoBehaviour.)
Top
See Also
\ No newline at end of file +
Public propertyrenderer Obsolete. (Inherited from Component.)
Public propertyrigidbody Obsolete. (Inherited from Component.)
Public propertyrigidbody2D Obsolete. (Inherited from Component.)
Public propertyrunInEditMode (Inherited from MonoBehaviour.)
Public propertytag (Inherited from Component.)
Public propertytransform (Inherited from Component.)
Public propertyuseGUILayout (Inherited from MonoBehaviour.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm b/docs/html/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm index 661a783..ed92be5 100644 --- a/docs/html/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm +++ b/docs/html/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm @@ -1,3 +1,7 @@ -TrackedObject Properties

TrackedObject Properties

[This is preliminary documentation and is subject to change.]

The TrackedObject type exposes the following members.

Properties
+TrackedObject Properties

TrackedObject Properties

[This is preliminary documentation and is subject to change.]

The TrackedObject type exposes the following members.

Properties
  - NameDescription
Public propertyanimation Obsolete. (Inherited from Component.)
Public propertyaudio Obsolete. (Inherited from Component.)
Public propertycamera Obsolete. (Inherited from Component.)
Public propertycollider Obsolete. (Inherited from Component.)
Public propertycollider2D Obsolete. (Inherited from Component.)
Public propertyconstantForce Obsolete. (Inherited from Component.)
Public propertyenabled (Inherited from Behaviour.)
Public propertygameObject (Inherited from Component.)
Public propertyguiElement Obsolete. (Inherited from Component.)
Public propertyguiText Obsolete. (Inherited from Component.)
Public propertyguiTexture Obsolete. (Inherited from Component.)
Public propertyhideFlags (Inherited from Object.)
Public propertyhingeJoint Obsolete. (Inherited from Component.)
Public propertyisActiveAndEnabled (Inherited from Behaviour.)
Public propertylight Obsolete. (Inherited from Component.)
Public propertyname (Inherited from Object.)
Public propertynetworkView Obsolete. (Inherited from Component.)
Public propertyparticleEmitter Obsolete. (Inherited from Component.)
Public propertyparticleSystem Obsolete. (Inherited from Component.)
Public propertyrenderer Obsolete. (Inherited from Component.)
Public propertyrigidbody Obsolete. (Inherited from Component.)
Public propertyrigidbody2D Obsolete. (Inherited from Component.)
Public propertyrunInEditMode (Inherited from MonoBehaviour.)
Public propertytag (Inherited from Component.)
Public propertytransform (Inherited from Component.)
Public propertyuseGUILayout (Inherited from MonoBehaviour.)
Top
See Also
\ No newline at end of file +
NameDescription
Public propertyanimation Obsolete. (Inherited from Component.)
Public propertyaudio Obsolete. (Inherited from Component.)
Public propertyAvgTimeBetweenPointsMs
+ Gets the average amount of time between the points in miliseconds +
Public propertycamera Obsolete. (Inherited from Component.)
Public propertycollider Obsolete. (Inherited from Component.)
Public propertycollider2D Obsolete. (Inherited from Component.)
Public propertyconstantForce Obsolete. (Inherited from Component.)
Public propertyenabled (Inherited from Behaviour.)
Public propertygameObject (Inherited from Component.)
Public propertyguiElement Obsolete. (Inherited from Component.)
Public propertyguiText Obsolete. (Inherited from Component.)
Public propertyguiTexture Obsolete. (Inherited from Component.)
Public propertyhideFlags (Inherited from Object.)
Public propertyhingeJoint Obsolete. (Inherited from Component.)
Public propertyisActiveAndEnabled (Inherited from Behaviour.)
Public propertylight Obsolete. (Inherited from Component.)
Public propertyname (Inherited from Object.)
Public propertynetworkView Obsolete. (Inherited from Component.)
Public propertyparticleEmitter Obsolete. (Inherited from Component.)
Public propertyparticleSystem Obsolete. (Inherited from Component.)
Public propertyrenderer Obsolete. (Inherited from Component.)
Public propertyrigidbody Obsolete. (Inherited from Component.)
Public propertyrigidbody2D Obsolete. (Inherited from Component.)
Public propertyrunInEditMode (Inherited from MonoBehaviour.)
Public propertytag (Inherited from Component.)
Public propertyTotalPoints
+ Gets the total amount of points stored in the component +
Public propertytransform (Inherited from Component.)
Public propertyuseGUILayout (Inherited from MonoBehaviour.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_Data_Channel.htm b/docs/html/T_MLAPI_Data_Channel.htm new file mode 100644 index 0000000..2b4564c --- /dev/null +++ b/docs/html/T_MLAPI_Data_Channel.htm @@ -0,0 +1,34 @@ +Channel Class

Channel Class

[This is preliminary documentation and is subject to change.]

+ A data object that represents a NetworkTransport channel +
Inheritance Hierarchy
SystemObject
  MLAPI.DataChannel

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
[SerializableAttribute]
+public class Channel
Request Example + View Source

The Channel type exposes the following members.

Constructors
+   + NameDescription
Public methodChannel
Initializes a new instance of the Channel class
Top
Methods
+   + NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Fields
+   + NameDescription
Public fieldEncrypted
+ Wheter or not the channel should be encrypted +
Public fieldName
+ The name of the channel +
Public fieldType
+ The Transport QOS type +
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_Data_MessageType.htm b/docs/html/T_MLAPI_Data_MessageType.htm new file mode 100644 index 0000000..b698e04 --- /dev/null +++ b/docs/html/T_MLAPI_Data_MessageType.htm @@ -0,0 +1,32 @@ +MessageType Class

MessageType Class

[This is preliminary documentation and is subject to change.]

+ Represents a MLAPI message type +
Inheritance Hierarchy
SystemObject
  MLAPI.DataMessageType

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
[SerializableAttribute]
+public class MessageType
Request Example + View Source

The MessageType type exposes the following members.

Constructors
+   + NameDescription
Public methodMessageType
Initializes a new instance of the MessageType class
Top
Methods
+   + NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Fields
+   + NameDescription
Public fieldName
+ The name of the messageType +
Public fieldPassthrough
+ Wheter or not the channel should have passthrough support. +
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_Data_NetId.htm b/docs/html/T_MLAPI_Data_NetId.htm new file mode 100644 index 0000000..d7f6f26 --- /dev/null +++ b/docs/html/T_MLAPI_Data_NetId.htm @@ -0,0 +1,57 @@ +NetId Structure

NetId Structure

[This is preliminary documentation and is subject to change.]

+ Represents a ClientId structure +

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public struct NetId
Request Example + View Source

The NetId type exposes the following members.

Constructors
+   + NameDescription
Public methodNetId(UInt32)
+ Initializes a new instance of the netId struct from a clientId +
Public methodNetId(Byte, UInt16, Boolean, Boolean)
+ Initializes a new instance of the netId struct from transport values +
Top
Properties
+   + NameDescription
Public propertyStatic memberServerNetId
+ Static ServerNetId for comparison +
Top
Methods
+   + NameDescription
Public methodEquals
+ Determines whether the specified Object is equal to the current NetId. +
(Overrides ValueTypeEquals(Object).)
Public methodGetClientId
+ Gets the clientId. +
Public methodGetHashCode
+ Serves as a hash function for a NetId object. +
(Overrides ValueTypeGetHashCode.)
Public methodGetType (Inherited from Object.)
Public methodIsHost
+ Returns wheter or not the clientId represents a -1 +
Public methodIsInvalid
+ Returns if this is a invalid clientId, (-2) +
Public methodToString (Inherited from ValueType.)
Top
Operators
+   + NameDescription
Public operatorStatic memberEquality
+ Determines whether a specified instance of NetId is equal to another specified NetId. +
Public operatorStatic memberInequality
+ Determines whether a specified instance of NetId is not equal to another specified NetId. +
Top
Fields
+   + NameDescription
Public fieldConnectionId
+ The connectionId this client is assigned +
Public fieldHostId
+ The hostId this client is on +
Public fieldMeta
+ Meta data about hte client +
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_Data_NetworkingConfiguration.htm b/docs/html/T_MLAPI_Data_NetworkConfig.htm similarity index 53% rename from docs/html/T_MLAPI_Data_NetworkingConfiguration.htm rename to docs/html/T_MLAPI_Data_NetworkConfig.htm index d1b6d93..317c909 100644 --- a/docs/html/T_MLAPI_Data_NetworkingConfiguration.htm +++ b/docs/html/T_MLAPI_Data_NetworkConfig.htm @@ -1,10 +1,11 @@ -NetworkingConfiguration Class

NetworkingConfiguration Class

[This is preliminary documentation and is subject to change.]

+NetworkConfig Class

NetworkConfig Class

[This is preliminary documentation and is subject to change.]

The configuration object used to start server, client and hosts -
Inheritance Hierarchy
SystemObject
  MLAPI.DataNetworkingConfiguration

+
Inheritance Hierarchy
SystemObject
  MLAPI.DataNetworkConfig

Namespace:  MLAPI.Data
Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public class NetworkingConfiguration
Request Example +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
[SerializableAttribute]
+public class NetworkConfig
Request Example View Source

The NetworkingConfiguration type exposes the following members.

Constructors
+ View Source

The NetworkConfig type exposes the following members.

Constructors
  - NameDescription
Public methodNetworkingConfiguration
Initializes a new instance of the NetworkingConfiguration class
Top
Methods
+ NameDescription
Public methodNetworkConfig
Initializes a new instance of the NetworkConfig class
Top
Methods
  - NameDescription
Public methodCompareConfig
+
NameDescription
Public methodCompareConfig
Compares a SHA256 hash with the current NetworkingConfiguration instances hash -
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetConfig
+
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetConfig
Gets a SHA256 hash of parts of the NetworkingConfiguration instance
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Fields
  - NameDescription
Public fieldAddress
- The address to connect to -
Public fieldAllowPassthroughMessages
+
NameDescription
Public fieldAllowPassthroughMessages
Wheter or not to allow any type of passthrough messages -
Public fieldChannels
+
Public fieldChannels
Channels used by the NetworkedTransport -
Public fieldClientConnectionBufferTimeout
+
Public fieldClientConnectionBufferTimeout
The amount of seconds to wait for handshake to complete before timing out a client -
Public fieldConnectionApproval
+
Public fieldConnectAddress
+ The address to connect to +
Public fieldConnectionApproval
Wheter or not to use connection approval -
Public fieldConnectionApprovalCallback
- The callback to invoke when a connection has to be decided if it should get approved -
Public fieldConnectionData
+
Public fieldConnectionData
The data to send during connection which can be used to decide on if a client should get accepted -
Public fieldEnableEncryption
+
Public fieldConnectPort
+ The port for the NetworkTransport to use when connecting +
Public fieldEnableEncryption
Wheter or not to enable encryption -
Public fieldEnableSceneSwitching
+
Public fieldEnableSceneSwitching
Wheter or not to enable scene switching -
Public fieldEncryptedChannels
- Set of channels that will have all message contents encrypted when used -
Public fieldEventTickrate
+
Public fieldEnableTimeResync
+ If your logic uses the NetwokrTime, this should probably be turned off. If however it's needed to maximize accuracy, this is recommended to be turned on +
Public fieldEventTickrate
The amount of times per second internal frame events will occur, examples include SyncedVar send checking. -
Public fieldHandleObjectSpawning
+
Public fieldHandleObjectSpawning
Wheter or not to make the library handle object spawning -
Public fieldMaxConnections
+
Public fieldMaxConnections
The max amount of Clients that can connect. -
Public fieldMaxReceiveEventsPerTickRate
+
Public fieldMaxReceiveEventsPerTickRate
The max amount of messages to process per ReceiveTickrate. This is to prevent flooding. -
Public fieldMessageBufferSize
+
Public fieldMessageBufferSize
The size of the receive message buffer. This is the max message size. -
Public fieldMessageTypes
+
Public fieldMessageTypes
Registered MessageTypes -
Public fieldPassthroughMessageTypes
- List of MessageTypes that can be passed through by Server. MessageTypes in this list should thus not be trusted to as great of an extent as normal messages. -
Public fieldPort
- The port for the NetworkTransport to use -
Public fieldProtocolVersion
+
Public fieldNetworkedPrefabs
+ A list of spawnable prefabs +
Public fieldProtocolVersion
The protocol version. Different versions doesn't talk to each other. -
Public fieldReceiveTickrate
+
Public fieldReceiveTickrate
Amount of times per second the receive queue is emptied and all messages inside are processed. -
Public fieldRegisteredScenes
+
Public fieldRegisteredScenes
A list of SceneNames that can be used during networked games. -
Public fieldRSAPrivateKey
+
Public fieldRSAPrivateKey
Private RSA XML key to use for signing key exchange -
Public fieldRSAPublicKey
+
Public fieldRSAPublicKey
Public RSA XML key to use for signing key exchange -
Public fieldSecondsHistory
+
Public fieldSecondsHistory
The amount of seconds to keep a lag compensation position history -
Public fieldSendTickrate
+
Public fieldSendTickrate
The amount of times per second every pending message will be sent away. -
Public fieldSignKeyExchange
+
Public fieldServerTransports
+ The transport hosts the sever uses +
Public fieldSignKeyExchange
Wheter or not to enable signed diffie hellman key exchange.
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_Data_NetworkedPrefab.htm b/docs/html/T_MLAPI_Data_NetworkedPrefab.htm new file mode 100644 index 0000000..5d11a53 --- /dev/null +++ b/docs/html/T_MLAPI_Data_NetworkedPrefab.htm @@ -0,0 +1,32 @@ +NetworkedPrefab Class

NetworkedPrefab Class

[This is preliminary documentation and is subject to change.]

+ A class that represents a NetworkedPrefab +
Inheritance Hierarchy
SystemObject
  MLAPI.DataNetworkedPrefab

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
[SerializableAttribute]
+public class NetworkedPrefab
Request Example + View Source

The NetworkedPrefab type exposes the following members.

Constructors
+   + NameDescription
Public methodNetworkedPrefab
Initializes a new instance of the NetworkedPrefab class
Top
Methods
+   + NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Fields
+   + NameDescription
Public fieldplayerPrefab
+ Wheter or not this is a playerPrefab +
Public fieldprefab
+ The gameobject of the prefab +
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_Data_TransportHost.htm b/docs/html/T_MLAPI_Data_TransportHost.htm new file mode 100644 index 0000000..b6dd81b --- /dev/null +++ b/docs/html/T_MLAPI_Data_TransportHost.htm @@ -0,0 +1,34 @@ +TransportHost Class

TransportHost Class

[This is preliminary documentation and is subject to change.]

+ Represents a Transport host +
Inheritance Hierarchy
SystemObject
  MLAPI.DataTransportHost

+ Namespace: +  MLAPI.Data
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
[SerializableAttribute]
+public class TransportHost
Request Example + View Source

The TransportHost type exposes the following members.

Constructors
+   + NameDescription
Public methodTransportHost
Initializes a new instance of the TransportHost class
Top
Methods
+   + NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Fields
+   + NameDescription
Public fieldName
+ The name of the host +
Public fieldPort
+ The port the host should listen to +
Public fieldWebsockets
+ If true, the socket will listen on TCP-Websockets, otherwise UDP +
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm b/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm index 69e3926..304b51b 100644 --- a/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm +++ b/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm @@ -52,15 +52,15 @@ Gets called when we loose ownership of this object
Protected methodRegisterMessageHandler
Registers a message handler -
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(Int32, String, String, Byte)
+
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server
Protected methodSendToClientT(Int32, String, String, T)
Sends a binary serialized class to a client with a given clientId from Server -
Protected methodSendToClients(String, String, Byte)
+
Protected methodSendToClients(String, String, Byte)
Sends a buffer to all clients from the server -
Protected methodSendToClients(ListInt32, String, String, Byte)
+
Protected methodSendToClients(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server -
Protected methodSendToClients(Int32, String, String, Byte)
+
Protected methodSendToClients(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server
Protected methodSendToClientsT(String, String, T)
Sends a buffer to all clients from the server @@ -68,19 +68,19 @@ Sends a binary serialized class to multiple clients from the server
Protected methodSendToClientsT(Int32, String, String, T)
Sends a binary serialized class to multiple clients from the server -
Protected methodSendToClientsTarget(String, String, Byte)
+
Protected methodSendToClientsTarget(String, String, Byte)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
Protected methodSendToClientsTarget(ListInt32, String, String, Byte)
+
Protected methodSendToClientsTarget(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
Protected methodSendToClientsTarget(Int32, String, String, Byte)
+
Protected methodSendToClientsTarget(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
Protected methodSendToClientsTargetT(String, String, T)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
Protected methodSendToClientsTargetT(ListInt32, String, String, T)
+
Protected methodSendToClientsTargetT(ListUInt32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
Protected methodSendToClientsTargetT(Int32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
Protected methodSendToClientTarget(Int32, String, String, Byte)
+
Protected methodSendToClientTarget(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
Protected methodSendToClientTargetT(Int32, String, String, T)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked diff --git a/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm b/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm index 6898966..9e0c4c3 100644 --- a/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm +++ b/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm @@ -38,9 +38,7 @@ Gets the clientId of the owner of this NetworkedObject
Public propertyparticleEmitter Obsolete. (Inherited from Component.)
Public propertyparticleSystem Obsolete. (Inherited from Component.)
Public propertyPoolId
Gets the poolId this object is part of -
Public propertyrenderer Obsolete. (Inherited from Component.)
Public propertyrigidbody Obsolete. (Inherited from Component.)
Public propertyrigidbody2D Obsolete. (Inherited from Component.)
Public propertyrunInEditMode (Inherited from MonoBehaviour.)
Public propertySpawnablePrefabIndex
- The index of the prefab used to spawn this in the spawnablePrefabs list -
Public propertytag (Inherited from Component.)
Public propertytransform (Inherited from Component.)
Public propertyuseGUILayout (Inherited from MonoBehaviour.)
Top
Methods
+
Public propertyrenderer Obsolete. (Inherited from Component.)
Public propertyrigidbody Obsolete. (Inherited from Component.)
Public propertyrigidbody2D Obsolete. (Inherited from Component.)
Public propertyrunInEditMode (Inherited from MonoBehaviour.)
Public propertytag (Inherited from Component.)
Public propertytransform (Inherited from Component.)
Public propertyuseGUILayout (Inherited from MonoBehaviour.)
Top
Methods
  NameDescription
Public methodBroadcastMessage(String) (Inherited from Component.)
Public methodBroadcastMessage(String, Object) (Inherited from Component.)
Public methodBroadcastMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodBroadcastMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodCancelInvoke (Inherited from MonoBehaviour.)
Public methodCancelInvoke(String) (Inherited from MonoBehaviour.)
Public methodChangeOwnership
Changes the owner of the object. Can only be called from server @@ -52,6 +50,6 @@ Spawns an object across the network with a given owner. Can only be called from server
Public methodStartCoroutine(IEnumerator) (Inherited from MonoBehaviour.)
Public methodStartCoroutine(String) (Inherited from MonoBehaviour.)
Public methodStartCoroutine(String, Object) (Inherited from MonoBehaviour.)
Public methodStartCoroutine_Auto Obsolete. (Inherited from MonoBehaviour.)
Public methodStopAllCoroutines (Inherited from MonoBehaviour.)
Public methodStopCoroutine(String) (Inherited from MonoBehaviour.)
Public methodStopCoroutine(IEnumerator) (Inherited from MonoBehaviour.)
Public methodStopCoroutine(Coroutine) (Inherited from MonoBehaviour.)
Public methodToString (Inherited from Object.)
Top
Fields
  - NameDescription
Public fieldServerOnly
- Gets or sets if this object should be replicated across the network. Can only be changed before the object is spawned +
NameDescription
Public fieldNetworkedPrefabName
+ The name of the NetworkedPrefab
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm b/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm index 074c120..76839d0 100644 --- a/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm +++ b/docs/html/T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm @@ -41,11 +41,13 @@
Public propertytag (Inherited from Component.)
Public propertytransform (Inherited from Component.)
Public propertyuseGUILayout (Inherited from MonoBehaviour.)
Top
Methods
  NameDescription
Public methodBroadcastMessage(String) (Inherited from Component.)
Public methodBroadcastMessage(String, Object) (Inherited from Component.)
Public methodBroadcastMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodBroadcastMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodCancelInvoke (Inherited from MonoBehaviour.)
Public methodCancelInvoke(String) (Inherited from MonoBehaviour.)
Public methodCompareTag (Inherited from Component.)
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetComponent(Type) (Inherited from Component.)
Public methodGetComponent(String) (Inherited from Component.)
Public methodGetComponent``1 (Inherited from Component.)
Public methodGetComponentInChildren(Type) (Inherited from Component.)
Public methodGetComponentInChildren(Type, Boolean) (Inherited from Component.)
Public methodGetComponentInChildren``1 (Inherited from Component.)
Public methodGetComponentInChildren``1(Boolean) (Inherited from Component.)
Public methodGetComponentInParent(Type) (Inherited from Component.)
Public methodGetComponentInParent``1 (Inherited from Component.)
Public methodGetComponents(Type) (Inherited from Component.)
Public methodGetComponents(Type, ListComponent) (Inherited from Component.)
Public methodGetComponents``1 (Inherited from Component.)
Public methodGetComponents``1(ListUMP) (Inherited from Component.)
Public methodGetComponentsInChildren(Type) (Inherited from Component.)
Public methodGetComponentsInChildren(Type, Boolean) (Inherited from Component.)
Public methodGetComponentsInChildren``1 (Inherited from Component.)
Public methodGetComponentsInChildren``1(Boolean) (Inherited from Component.)
Public methodGetComponentsInChildren``1(ListUMP) (Inherited from Component.)
Public methodGetComponentsInChildren``1(Boolean, ListUMP) (Inherited from Component.)
Public methodGetComponentsInParent(Type) (Inherited from Component.)
Public methodGetComponentsInParent(Type, Boolean) (Inherited from Component.)
Public methodGetComponentsInParent``1 (Inherited from Component.)
Public methodGetComponentsInParent``1(Boolean) (Inherited from Component.)
Public methodGetComponentsInParent``1(Boolean, ListUMP) (Inherited from Component.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetInstanceID (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodInvoke (Inherited from MonoBehaviour.)
Public methodInvokeRepeating (Inherited from MonoBehaviour.)
Public methodIsInvoking (Inherited from MonoBehaviour.)
Public methodIsInvoking(String) (Inherited from MonoBehaviour.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodStartClient
- Starts a client with a given NetworkingConfiguration + Starts a client +
Public methodStartClientWebsocket
+ Starts a client using Websockets
Public methodStartCoroutine(IEnumerator) (Inherited from MonoBehaviour.)
Public methodStartCoroutine(String) (Inherited from MonoBehaviour.)
Public methodStartCoroutine(String, Object) (Inherited from MonoBehaviour.)
Public methodStartCoroutine_Auto Obsolete. (Inherited from MonoBehaviour.)
Public methodStartHost
- Starts a Host with a given NetworkingConfiguration + Starts a Host
Public methodStartServer
- Starts a server with a given NetworkingConfiguration + Starts a server
Public methodStopAllCoroutines (Inherited from MonoBehaviour.)
Public methodStopClient
Stops the running client
Public methodStopCoroutine(String) (Inherited from MonoBehaviour.)
Public methodStopCoroutine(IEnumerator) (Inherited from MonoBehaviour.)
Public methodStopCoroutine(Coroutine) (Inherited from MonoBehaviour.)
Public methodStopHost
@@ -54,8 +56,8 @@ Stops the running server
Public methodToString (Inherited from Object.)
Top
Fields
  - NameDescription
Public fieldDefaultPlayerPrefab
- The default prefab to give to players +
NameDescription
Public fieldConnectionApprovalCallback
+ The callback to invoke during connection approval
Public fieldDontDestroy
Gets or sets if the NetworkingManager should be marked as DontDestroyOnLoad
Public fieldNetworkConfig
@@ -66,8 +68,8 @@ The callback to invoke when a client disconnects
Public fieldOnServerStarted
The callback to invoke once the server is ready +
Public fieldRegenerateRSAKeys
+ An inspector bool that acts as a Trigger for regenerating RSA keys. Should not be used outside Unity editor.
Public fieldRunInBackground
Gets or sets if the application should be set to run in background -
Public fieldSpawnablePrefabs
- A list of spawnable prefabs
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_MonoBehaviours_Core_TrackedObject.htm b/docs/html/T_MLAPI_MonoBehaviours_Core_TrackedObject.htm index b91ea71..9c24339 100644 --- a/docs/html/T_MLAPI_MonoBehaviours_Core_TrackedObject.htm +++ b/docs/html/T_MLAPI_MonoBehaviours_Core_TrackedObject.htm @@ -1,4 +1,4 @@ -TrackedObject Class

TrackedObject Class

[This is preliminary documentation and is subject to change.]

+TrackedObject Class

TrackedObject Class

[This is preliminary documentation and is subject to change.]

A component used for lag compensation. Each object with this component will get tracked
Inheritance Hierarchy
SystemObject
  Object
    Component
      Behaviour
        MonoBehaviour
          MLAPI.MonoBehaviours.CoreTrackedObject

Namespace: @@ -22,6 +22,10 @@  
NameDescription
Public methodTrackedObject
Initializes a new instance of the TrackedObject class
Top
Properties
  - NameDescription
Public propertyanimation Obsolete. (Inherited from Component.)
Public propertyaudio Obsolete. (Inherited from Component.)
Public propertycamera Obsolete. (Inherited from Component.)
Public propertycollider Obsolete. (Inherited from Component.)
Public propertycollider2D Obsolete. (Inherited from Component.)
Public propertyconstantForce Obsolete. (Inherited from Component.)
Public propertyenabled (Inherited from Behaviour.)
Public propertygameObject (Inherited from Component.)
Public propertyguiElement Obsolete. (Inherited from Component.)
Public propertyguiText Obsolete. (Inherited from Component.)
Public propertyguiTexture Obsolete. (Inherited from Component.)
Public propertyhideFlags (Inherited from Object.)
Public propertyhingeJoint Obsolete. (Inherited from Component.)
Public propertyisActiveAndEnabled (Inherited from Behaviour.)
Public propertylight Obsolete. (Inherited from Component.)
Public propertyname (Inherited from Object.)
Public propertynetworkView Obsolete. (Inherited from Component.)
Public propertyparticleEmitter Obsolete. (Inherited from Component.)
Public propertyparticleSystem Obsolete. (Inherited from Component.)
Public propertyrenderer Obsolete. (Inherited from Component.)
Public propertyrigidbody Obsolete. (Inherited from Component.)
Public propertyrigidbody2D Obsolete. (Inherited from Component.)
Public propertyrunInEditMode (Inherited from MonoBehaviour.)
Public propertytag (Inherited from Component.)
Public propertytransform (Inherited from Component.)
Public propertyuseGUILayout (Inherited from MonoBehaviour.)
Top
Methods
+ NameDescription
Public propertyanimation Obsolete. (Inherited from Component.)
Public propertyaudio Obsolete. (Inherited from Component.)
Public propertyAvgTimeBetweenPointsMs
+ Gets the average amount of time between the points in miliseconds +
Public propertycamera Obsolete. (Inherited from Component.)
Public propertycollider Obsolete. (Inherited from Component.)
Public propertycollider2D Obsolete. (Inherited from Component.)
Public propertyconstantForce Obsolete. (Inherited from Component.)
Public propertyenabled (Inherited from Behaviour.)
Public propertygameObject (Inherited from Component.)
Public propertyguiElement Obsolete. (Inherited from Component.)
Public propertyguiText Obsolete. (Inherited from Component.)
Public propertyguiTexture Obsolete. (Inherited from Component.)
Public propertyhideFlags (Inherited from Object.)
Public propertyhingeJoint Obsolete. (Inherited from Component.)
Public propertyisActiveAndEnabled (Inherited from Behaviour.)
Public propertylight Obsolete. (Inherited from Component.)
Public propertyname (Inherited from Object.)
Public propertynetworkView Obsolete. (Inherited from Component.)
Public propertyparticleEmitter Obsolete. (Inherited from Component.)
Public propertyparticleSystem Obsolete. (Inherited from Component.)
Public propertyrenderer Obsolete. (Inherited from Component.)
Public propertyrigidbody Obsolete. (Inherited from Component.)
Public propertyrigidbody2D Obsolete. (Inherited from Component.)
Public propertyrunInEditMode (Inherited from MonoBehaviour.)
Public propertytag (Inherited from Component.)
Public propertyTotalPoints
+ Gets the total amount of points stored in the component +
Public propertytransform (Inherited from Component.)
Public propertyuseGUILayout (Inherited from MonoBehaviour.)
Top
Methods
  NameDescription
Public methodBroadcastMessage(String) (Inherited from Component.)
Public methodBroadcastMessage(String, Object) (Inherited from Component.)
Public methodBroadcastMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodBroadcastMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodCancelInvoke (Inherited from MonoBehaviour.)
Public methodCancelInvoke(String) (Inherited from MonoBehaviour.)
Public methodCompareTag (Inherited from Component.)
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetComponent(Type) (Inherited from Component.)
Public methodGetComponent(String) (Inherited from Component.)
Public methodGetComponent``1 (Inherited from Component.)
Public methodGetComponentInChildren(Type) (Inherited from Component.)
Public methodGetComponentInChildren(Type, Boolean) (Inherited from Component.)
Public methodGetComponentInChildren``1 (Inherited from Component.)
Public methodGetComponentInChildren``1(Boolean) (Inherited from Component.)
Public methodGetComponentInParent(Type) (Inherited from Component.)
Public methodGetComponentInParent``1 (Inherited from Component.)
Public methodGetComponents(Type) (Inherited from Component.)
Public methodGetComponents(Type, ListComponent) (Inherited from Component.)
Public methodGetComponents``1 (Inherited from Component.)
Public methodGetComponents``1(ListUMP) (Inherited from Component.)
Public methodGetComponentsInChildren(Type) (Inherited from Component.)
Public methodGetComponentsInChildren(Type, Boolean) (Inherited from Component.)
Public methodGetComponentsInChildren``1 (Inherited from Component.)
Public methodGetComponentsInChildren``1(Boolean) (Inherited from Component.)
Public methodGetComponentsInChildren``1(ListUMP) (Inherited from Component.)
Public methodGetComponentsInChildren``1(Boolean, ListUMP) (Inherited from Component.)
Public methodGetComponentsInParent(Type) (Inherited from Component.)
Public methodGetComponentsInParent(Type, Boolean) (Inherited from Component.)
Public methodGetComponentsInParent``1 (Inherited from Component.)
Public methodGetComponentsInParent``1(Boolean) (Inherited from Component.)
Public methodGetComponentsInParent``1(Boolean, ListUMP) (Inherited from Component.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetInstanceID (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodInvoke (Inherited from MonoBehaviour.)
Public methodInvokeRepeating (Inherited from MonoBehaviour.)
Public methodIsInvoking (Inherited from MonoBehaviour.)
Public methodIsInvoking(String) (Inherited from MonoBehaviour.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodStartCoroutine(IEnumerator) (Inherited from MonoBehaviour.)
Public methodStartCoroutine(String) (Inherited from MonoBehaviour.)
Public methodStartCoroutine(String, Object) (Inherited from MonoBehaviour.)
Public methodStartCoroutine_Auto Obsolete. (Inherited from MonoBehaviour.)
Public methodStopAllCoroutines (Inherited from MonoBehaviour.)
Public methodStopCoroutine(String) (Inherited from MonoBehaviour.)
Public methodStopCoroutine(IEnumerator) (Inherited from MonoBehaviour.)
Public methodStopCoroutine(Coroutine) (Inherited from MonoBehaviour.)
Public methodToString (Inherited from Object.)
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm b/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm index ae95f18..349f08d 100644 --- a/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm +++ b/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm @@ -58,15 +58,15 @@ Registers a message handler (Inherited from NetworkedBehaviour.)
Public methodResetParameterOptions
TODO -
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(Int32, String, String, Byte)
+
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientT(Int32, String, String, T)
Sends a binary serialized class to a client with a given clientId from Server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
Sends a buffer to all clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(String, String, T)
Sends a buffer to all clients from the server @@ -74,19 +74,19 @@ Sends a binary serialized class to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(Int32, String, String, T)
Sends a binary serialized class to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(String, String, T)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListInt32, String, String, T)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListUInt32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(Int32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTargetT(Int32, String, String, T)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked diff --git a/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm b/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm index 49e6e71..9ca9e47 100644 --- a/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm +++ b/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm @@ -52,15 +52,15 @@ Gets called when we loose ownership of this object
(Inherited from NetworkedBehaviour.)
Protected methodRegisterMessageHandler
Registers a message handler -
(Inherited from NetworkedBehaviour.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientT(Int32, String, String, T)
Sends a binary serialized class to a client with a given clientId from Server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
Sends a buffer to all clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(String, String, T)
Sends a buffer to all clients from the server @@ -68,19 +68,19 @@ Sends a binary serialized class to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(Int32, String, String, T)
Sends a binary serialized class to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(String, String, T)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListInt32, String, String, T)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListUInt32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(Int32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTargetT(Int32, String, String, T)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked diff --git a/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm b/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm index bd065c8..a3f7338 100644 --- a/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm +++ b/docs/html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm @@ -52,15 +52,15 @@ Gets called when we loose ownership of this object
(Inherited from NetworkedBehaviour.)
Protected methodRegisterMessageHandler
Registers a message handler -
(Inherited from NetworkedBehaviour.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Public methodSendMessage(String) (Inherited from Component.)
Public methodSendMessage(String, Object) (Inherited from Component.)
Public methodSendMessage(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessage(String, Object, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object) (Inherited from Component.)
Public methodSendMessageUpwards(String, SendMessageOptions) (Inherited from Component.)
Public methodSendMessageUpwards(String, Object, SendMessageOptions) (Inherited from Component.)
Protected methodSendToClient(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientT(Int32, String, String, T)
Sends a binary serialized class to a client with a given clientId from Server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(String, String, Byte)
Sends a buffer to all clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClients(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(String, String, T)
Sends a buffer to all clients from the server @@ -68,19 +68,19 @@ Sends a binary serialized class to multiple clients from the server
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsT(Int32, String, String, T)
Sends a binary serialized class to multiple clients from the server -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(String, String, Byte)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListInt32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(ListUInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTarget(UInt32, String, String, Byte)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(String, String, T)
Sends a buffer to all clients from the server. Only handlers on this NetworkedBehaviour will get invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListInt32, String, String, T)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(ListUInt32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientsTargetT(Int32, String, String, T)
Sends a buffer to multiple clients from the server. Only handlers on this NetworkedBehaviour gets invoked -
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(Int32, String, String, Byte)
+
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTarget(UInt32, String, String, Byte)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked
(Inherited from NetworkedBehaviour.)
Protected methodSendToClientTargetT(Int32, String, String, T)
Sends a buffer to a client with a given clientId from Server. Only handlers on this NetworkedBehaviour gets invoked diff --git a/docs/html/T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm b/docs/html/T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm index 3cf6e82..c194072 100644 --- a/docs/html/T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm +++ b/docs/html/T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm @@ -24,8 +24,8 @@ Simulation objects
Top
Methods
  - NameDescription
Public methodStatic memberSimulate(Int32, Action)
- Turns time back a given amount of seconds, invokes an action and turns it back. The time is based on the estimated RTT of a clientId -
Public methodStatic memberSimulate(Single, Action)
+
NameDescription
Public methodStatic memberSimulate(Single, Action)
Turns time back a given amount of seconds, invokes an action and turns it back +
Public methodStatic memberSimulate(UInt32, Action)
+ Turns time back a given amount of seconds, invokes an action and turns it back. The time is based on the estimated RTT of a clientId
Top
See Also
\ No newline at end of file diff --git a/docs/toc/Fields_T_MLAPI_Data_Channel.xml b/docs/toc/Fields_T_MLAPI_Data_Channel.xml new file mode 100644 index 0000000..ddd510c --- /dev/null +++ b/docs/toc/Fields_T_MLAPI_Data_Channel.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Fields_T_MLAPI_Data_MessageType.xml b/docs/toc/Fields_T_MLAPI_Data_MessageType.xml new file mode 100644 index 0000000..7ba8cdd --- /dev/null +++ b/docs/toc/Fields_T_MLAPI_Data_MessageType.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Fields_T_MLAPI_Data_NetId.xml b/docs/toc/Fields_T_MLAPI_Data_NetId.xml new file mode 100644 index 0000000..a717661 --- /dev/null +++ b/docs/toc/Fields_T_MLAPI_Data_NetId.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Fields_T_MLAPI_Data_NetworkConfig.xml b/docs/toc/Fields_T_MLAPI_Data_NetworkConfig.xml new file mode 100644 index 0000000..ee97f1c --- /dev/null +++ b/docs/toc/Fields_T_MLAPI_Data_NetworkConfig.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Fields_T_MLAPI_Data_NetworkedPrefab.xml b/docs/toc/Fields_T_MLAPI_Data_NetworkedPrefab.xml new file mode 100644 index 0000000..384536e --- /dev/null +++ b/docs/toc/Fields_T_MLAPI_Data_NetworkedPrefab.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Fields_T_MLAPI_Data_NetworkingConfiguration.xml b/docs/toc/Fields_T_MLAPI_Data_NetworkingConfiguration.xml deleted file mode 100644 index 79e6f04..0000000 --- a/docs/toc/Fields_T_MLAPI_Data_NetworkingConfiguration.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/toc/Fields_T_MLAPI_Data_TransportHost.xml b/docs/toc/Fields_T_MLAPI_Data_TransportHost.xml new file mode 100644 index 0000000..2182de0 --- /dev/null +++ b/docs/toc/Fields_T_MLAPI_Data_TransportHost.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.xml b/docs/toc/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.xml index 1d4e2b3..3eec607 100644 --- a/docs/toc/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.xml +++ b/docs/toc/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.xml b/docs/toc/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.xml index ae4fc71..43e8f11 100644 --- a/docs/toc/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.xml +++ b/docs/toc/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Methods_T_MLAPI_Data_NetId.xml b/docs/toc/Methods_T_MLAPI_Data_NetId.xml new file mode 100644 index 0000000..741ca7e --- /dev/null +++ b/docs/toc/Methods_T_MLAPI_Data_NetId.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Methods_T_MLAPI_Data_NetworkConfig.xml b/docs/toc/Methods_T_MLAPI_Data_NetworkConfig.xml new file mode 100644 index 0000000..2da62b2 --- /dev/null +++ b/docs/toc/Methods_T_MLAPI_Data_NetworkConfig.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Methods_T_MLAPI_Data_NetworkingConfiguration.xml b/docs/toc/Methods_T_MLAPI_Data_NetworkingConfiguration.xml deleted file mode 100644 index e1a755b..0000000 --- a/docs/toc/Methods_T_MLAPI_Data_NetworkingConfiguration.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/toc/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.xml b/docs/toc/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.xml index b463b47..765446f 100644 --- a/docs/toc/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.xml +++ b/docs/toc/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/N_MLAPI_Data.xml b/docs/toc/N_MLAPI_Data.xml index 2f19779..20175cb 100644 --- a/docs/toc/N_MLAPI_Data.xml +++ b/docs/toc/N_MLAPI_Data.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Operators_T_MLAPI_Data_NetId.xml b/docs/toc/Operators_T_MLAPI_Data_NetId.xml new file mode 100644 index 0000000..46ed7ae --- /dev/null +++ b/docs/toc/Operators_T_MLAPI_Data_NetId.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Overload_MLAPI_Data_NetId__ctor.xml b/docs/toc/Overload_MLAPI_Data_NetId__ctor.xml new file mode 100644 index 0000000..4e117ab --- /dev/null +++ b/docs/toc/Overload_MLAPI_Data_NetId__ctor.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.xml b/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.xml index 73710e0..3559794 100644 --- a/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.xml +++ b/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.xml b/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.xml index 45a165a..baa0bd0 100644 --- a/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.xml +++ b/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.xml b/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.xml index 874ce31..28d73f0 100644 --- a/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.xml +++ b/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.xml b/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.xml index dc4d7a0..694cc8d 100644 --- a/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.xml +++ b/docs/toc/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.xml b/docs/toc/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.xml index 8bfe517..fed8cb7 100644 --- a/docs/toc/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.xml +++ b/docs/toc/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Properties_T_MLAPI_Data_NetId.xml b/docs/toc/Properties_T_MLAPI_Data_NetId.xml new file mode 100644 index 0000000..5542aa0 --- /dev/null +++ b/docs/toc/Properties_T_MLAPI_Data_NetId.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.xml b/docs/toc/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.xml index 7641c01..09bd4e1 100644 --- a/docs/toc/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.xml +++ b/docs/toc/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.xml b/docs/toc/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.xml new file mode 100644 index 0000000..60408f9 --- /dev/null +++ b/docs/toc/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/T_MLAPI_Data_Channel.xml b/docs/toc/T_MLAPI_Data_Channel.xml new file mode 100644 index 0000000..53b39f1 --- /dev/null +++ b/docs/toc/T_MLAPI_Data_Channel.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/T_MLAPI_Data_MessageType.xml b/docs/toc/T_MLAPI_Data_MessageType.xml new file mode 100644 index 0000000..a3c874e --- /dev/null +++ b/docs/toc/T_MLAPI_Data_MessageType.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/T_MLAPI_Data_NetId.xml b/docs/toc/T_MLAPI_Data_NetId.xml new file mode 100644 index 0000000..b6fba98 --- /dev/null +++ b/docs/toc/T_MLAPI_Data_NetId.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/T_MLAPI_Data_NetworkConfig.xml b/docs/toc/T_MLAPI_Data_NetworkConfig.xml new file mode 100644 index 0000000..f63a80d --- /dev/null +++ b/docs/toc/T_MLAPI_Data_NetworkConfig.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/T_MLAPI_Data_NetworkedPrefab.xml b/docs/toc/T_MLAPI_Data_NetworkedPrefab.xml new file mode 100644 index 0000000..08b6b92 --- /dev/null +++ b/docs/toc/T_MLAPI_Data_NetworkedPrefab.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/T_MLAPI_Data_NetworkingConfiguration.xml b/docs/toc/T_MLAPI_Data_NetworkingConfiguration.xml deleted file mode 100644 index 959d493..0000000 --- a/docs/toc/T_MLAPI_Data_NetworkingConfiguration.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/docs/toc/T_MLAPI_Data_TransportHost.xml b/docs/toc/T_MLAPI_Data_TransportHost.xml new file mode 100644 index 0000000..bd70ed7 --- /dev/null +++ b/docs/toc/T_MLAPI_Data_TransportHost.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/T_MLAPI_MonoBehaviours_Core_TrackedObject.xml b/docs/toc/T_MLAPI_MonoBehaviours_Core_TrackedObject.xml index 330f7ef..4b5d6d6 100644 --- a/docs/toc/T_MLAPI_MonoBehaviours_Core_TrackedObject.xml +++ b/docs/toc/T_MLAPI_MonoBehaviours_Core_TrackedObject.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From ef8ace51b48ad5d7dd5ef6c7343aa7837824418d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 17:37:41 +0200 Subject: [PATCH 14/47] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index a9e8d22..7d24bd5 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,9 @@ There is also a autogenerated Sandcastle [API reference](https://twotenpvp.githu The example project has a much lower priority compared to the library itself. If something doesn't exist in the example nor the wiki. Please open an issue on GitHub. +## Special thanks +Special thanks to [Gabriel Tofvesson](https://github.com/GabrielTofvesson) for writing the BitWriter, BitReader & ECDH implementation + ## Issues and missing features From 2bde20bfdd542b6d5cd9ac130ac1cb08eb064560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 17:49:50 +0200 Subject: [PATCH 15/47] Update Protocol.md --- Protocol.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Protocol.md b/Protocol.md index 6a0e1d4..3b2bad9 100644 --- a/Protocol.md +++ b/Protocol.md @@ -1,4 +1,7 @@ # MLAPI Protocol +#### NOTE +_This protocol specification is TEMPORARY, it's due to change and is just here to give you an aproximate idea of how the protocol works_ + The MLAPI protocol is layered. The layers can be seen below. The first layer is the UDP IP layer. Ontop of the UDP layer, the Unity Network Transport layer is built. And just after that, the MLAPI's protocol starts to appear. The MLAPI has two protocol stages. The first stage is the generic MLAPI message protocol. This is the protocol all messages use that is sent by the user or the MLAPI library. From a94acfe34d8237d276523bd1e49a3efa666ed733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 18:26:22 +0200 Subject: [PATCH 16/47] Made ReadULong public --- MLAPI/NetworkingManagerComponents/Binary/BitReader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs index a853b85..f76dedb 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs @@ -54,7 +54,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary public long[] ReadLongArray(int known = -1) => ReadArray(ReadLong, known); public string ReadString() => Encoding.UTF8.GetString(ReadByteArray()); - private ulong ReadULong() + public ulong ReadULong() { ulong header = ReadByte(); if (header <= 240) return header; From 18388088603f03fe87861a62fb6d5d1cbd762cf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 19:37:12 +0200 Subject: [PATCH 17/47] Added Targeted SyncedVars that only sync to the owner of a object --- MLAPI/Attributes/SyncedVar.cs | 4 + MLAPI/Data/SyncedVarField.cs | 18 + MLAPI/MLAPI.csproj | 1 + .../MonoBehaviours/Core/NetworkedBehaviour.cs | 764 ++++++++++++------ .../Core/InternalMessageHandler.Receive.cs | 4 +- 5 files changed, 544 insertions(+), 247 deletions(-) create mode 100644 MLAPI/Data/SyncedVarField.cs diff --git a/MLAPI/Attributes/SyncedVar.cs b/MLAPI/Attributes/SyncedVar.cs index d88fa2c..19e7111 100644 --- a/MLAPI/Attributes/SyncedVar.cs +++ b/MLAPI/Attributes/SyncedVar.cs @@ -12,5 +12,9 @@ namespace MLAPI.Attributes /// The method name to invoke when the SyncVar get's updated. /// public string hook; + /// + /// If true, the syncedVar will only be synced to the owner. + /// + public bool target; } } diff --git a/MLAPI/Data/SyncedVarField.cs b/MLAPI/Data/SyncedVarField.cs new file mode 100644 index 0000000..1d662a1 --- /dev/null +++ b/MLAPI/Data/SyncedVarField.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using System.Text; + +namespace MLAPI.Data +{ + internal class SyncedVarField + { + internal FieldInfo FieldInfo; + internal FieldType FieldType; + internal object FieldValue; + internal MethodInfo HookMethod; + internal bool Dirty; + internal bool Target; + } +} diff --git a/MLAPI/MLAPI.csproj b/MLAPI/MLAPI.csproj index 8e56c79..86817ba 100644 --- a/MLAPI/MLAPI.csproj +++ b/MLAPI/MLAPI.csproj @@ -73,6 +73,7 @@ + diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index e8840ff..31f37e9 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -202,13 +202,8 @@ namespace MLAPI.MonoBehaviours.Core } #region SYNC_VAR - private List syncedFields = new List(); - internal List syncedFieldTypes = new List(); - private List syncedFieldValues = new List(); - private List syncedVarHooks = new List(); + internal List syncedVarFields = new List(); private bool syncVarInit = false; - //A dirty field is a field that's not synced. - private bool[] dirtyFields; internal void SyncVarInit() { if (syncVarInit) @@ -221,132 +216,214 @@ namespace MLAPI.MonoBehaviours.Core { object[] syncedVarAttributes = sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true); MethodInfo method = null; - for (int j = 0; j < syncedVarAttributes.Length; j++) + if (!string.IsNullOrEmpty(((SyncedVar)syncedVarAttributes[0]).hook)) { - if(!string.IsNullOrEmpty(((SyncedVar)syncedVarAttributes[j]).hook)) - { - method = GetType().GetMethod(((SyncedVar)syncedVarAttributes[j]).hook, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance); - break; - } + method = GetType().GetMethod(((SyncedVar)syncedVarAttributes[0]).hook, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance); + break; } if (sortedFields[i].FieldType == typeof(bool)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Bool); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if(sortedFields[i].FieldType == typeof(byte)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Byte); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(char)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Char); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(double)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Double); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(float)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Single); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(int)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Int); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(long)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Long); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(sbyte)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.SByte); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(short)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Short); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(uint)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.UInt); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(ulong)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.ULong); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(ushort)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.UShort); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if(sortedFields[i].FieldType == typeof(string)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.String); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if(sortedFields[i].FieldType == typeof(Vector3)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Vector3); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if(sortedFields[i].FieldType == typeof(Vector2)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Vector2); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if (sortedFields[i].FieldType == typeof(Quaternion)) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.Quaternion); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else if(sortedFields[i].FieldType == typeof(byte[])) { - syncedFields.Add(sortedFields[i]); - syncedFieldValues.Add(sortedFields[i].GetValue(this)); - syncedFieldTypes.Add(FieldType.ByteArray); - syncedVarHooks.Add(method); + syncedVarFields.Add(new SyncedVarField() + { + Dirty = false, + Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + FieldInfo = sortedFields[i], + FieldType = FieldType.Bool, + FieldValue = sortedFields[i].GetValue(this), + HookMethod = method + }); } else { @@ -354,8 +431,7 @@ namespace MLAPI.MonoBehaviours.Core } } } - dirtyFields = new bool[syncedFields.Count]; - if (dirtyFields.Length > 255) + if (syncedVarFields.Count > 255) { Debug.LogError("MLAPI: You can not have more than 255 SyncVar's per NetworkedBehaviour!"); } @@ -363,15 +439,15 @@ namespace MLAPI.MonoBehaviours.Core internal void OnSyncVarUpdate(object value, byte fieldIndex) { - syncedFields[fieldIndex].SetValue(this, value); - if (syncedVarHooks[fieldIndex] != null) - syncedVarHooks[fieldIndex].Invoke(this, null); + syncedVarFields[fieldIndex].FieldInfo.SetValue(this, value); + if (syncedVarFields[fieldIndex].HookMethod != null) + syncedVarFields[fieldIndex].HookMethod.Invoke(this, null); } internal void FlushToClient(uint clientId) { //This NetworkedBehaviour has no SyncVars - if (dirtyFields.Length == 0) + if (syncedVarFields.Count == 0) return; using (MemoryStream stream = new MemoryStream()) @@ -379,73 +455,85 @@ namespace MLAPI.MonoBehaviours.Core using (BinaryWriter writer = new BinaryWriter(stream)) { //Write all indexes - writer.Write((byte)dirtyFields.Length); + int syncCount = 0; + for (int i = 0; i < syncedVarFields.Count; i++) + { + if (!syncedVarFields[i].Target) + syncCount++; + else if (syncedVarFields[i].Target && ownerClientId == clientId) + syncCount++; + } + if (syncCount == 0) + return; + writer.Write((byte)syncCount); writer.Write(networkId); //NetId writer.Write(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex - for (byte i = 0; i < dirtyFields.Length; i++) + for (byte i = 0; i < syncedVarFields.Count; i++) { + if (syncedVarFields[i].Target && clientId != ownerClientId) + continue; writer.Write(i); //FieldIndex - switch (syncedFieldTypes[i]) + switch (syncedVarFields[i].FieldType) { case FieldType.Bool: - writer.Write((bool)syncedFields[i].GetValue(this)); + writer.Write((bool)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Byte: - writer.Write((byte)syncedFields[i].GetValue(this)); + writer.Write((byte)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Char: - writer.Write((char)syncedFields[i].GetValue(this)); + writer.Write((char)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Double: - writer.Write((double)syncedFields[i].GetValue(this)); + writer.Write((double)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Single: - writer.Write((float)syncedFields[i].GetValue(this)); + writer.Write((float)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Int: - writer.Write((int)syncedFields[i].GetValue(this)); + writer.Write((int)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Long: - writer.Write((long)syncedFields[i].GetValue(this)); + writer.Write((long)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.SByte: - writer.Write((sbyte)syncedFields[i].GetValue(this)); + writer.Write((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Short: - writer.Write((short)syncedFields[i].GetValue(this)); + writer.Write((short)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.UInt: - writer.Write((uint)syncedFields[i].GetValue(this)); + writer.Write((uint)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.ULong: - writer.Write((ulong)syncedFields[i].GetValue(this)); + writer.Write((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.UShort: - writer.Write((ushort)syncedFields[i].GetValue(this)); + writer.Write((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.String: - writer.Write((string)syncedFields[i].GetValue(this)); + writer.Write((string)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Vector3: - Vector3 vector3 = (Vector3)syncedFields[i].GetValue(this); + Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); writer.Write(vector3.x); writer.Write(vector3.y); writer.Write(vector3.z); break; case FieldType.Vector2: - Vector2 vector2 = (Vector2)syncedFields[i].GetValue(this); + Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); writer.Write(vector2.x); writer.Write(vector2.y); break; case FieldType.Quaternion: - Vector3 euler = ((Quaternion)syncedFields[i].GetValue(this)).eulerAngles; + Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; writer.Write(euler.x); writer.Write(euler.y); writer.Write(euler.z); break; case FieldType.ByteArray: - writer.Write((ushort)((byte[])syncedFields[i].GetValue(this)).Length); - writer.Write((byte[])syncedFields[i].GetValue(this)); + writer.Write((ushort)((byte[])syncedVarFields[i].FieldInfo.GetValue(this)).Length); + writer.Write((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); break; } } @@ -462,100 +550,286 @@ namespace MLAPI.MonoBehaviours.Core SetDirtyness(); if(NetworkingManager.singleton.NetworkTime - lastSyncTime >= SyncVarSyncDelay) { - byte dirtyCount = 0; - for (byte i = 0; i < dirtyFields.Length; i++) + byte nonTargetDirtyCount = 0; + byte totalDirtyCount = 0; + byte dirtyTargets = 0; + for (byte i = 0; i < syncedVarFields.Count; i++) { - if (dirtyFields[i]) - dirtyCount++; + if (syncedVarFields[i].Dirty) + totalDirtyCount++; + if (syncedVarFields[i].Target && syncedVarFields[i].Dirty) + dirtyTargets++; + if (syncedVarFields[i].Dirty && !syncedVarFields[i].Target) + nonTargetDirtyCount++; } - if (dirtyCount == 0) + if (totalDirtyCount == 0) return; //All up to date! - //It's sync time! - using (MemoryStream stream = new MemoryStream()) - { - using(BinaryWriter writer = new BinaryWriter(stream)) - { - //Write all indexes - writer.Write(dirtyCount); - writer.Write(networkId); //NetId - writer.Write(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex - for (byte i = 0; i < dirtyFields.Length; i++) - { - //Writes all the indexes of the dirty syncvars. - if (dirtyFields[i] == true) - { - writer.Write(i); //FieldIndex - switch (syncedFieldTypes[i]) - { - case FieldType.Bool: - writer.Write((bool)syncedFields[i].GetValue(this)); - break; - case FieldType.Byte: - writer.Write((byte)syncedFields[i].GetValue(this)); - break; - case FieldType.Char: - writer.Write((char)syncedFields[i].GetValue(this)); - break; - case FieldType.Double: - writer.Write((double)syncedFields[i].GetValue(this)); - break; - case FieldType.Single: - writer.Write((float)syncedFields[i].GetValue(this)); - break; - case FieldType.Int: - writer.Write((int)syncedFields[i].GetValue(this)); - break; - case FieldType.Long: - writer.Write((long)syncedFields[i].GetValue(this)); - break; - case FieldType.SByte: - writer.Write((sbyte)syncedFields[i].GetValue(this)); - break; - case FieldType.Short: - writer.Write((short)syncedFields[i].GetValue(this)); - break; - case FieldType.UInt: - writer.Write((uint)syncedFields[i].GetValue(this)); - break; - case FieldType.ULong: - writer.Write((ulong)syncedFields[i].GetValue(this)); - break; - case FieldType.UShort: - writer.Write((ushort)syncedFields[i].GetValue(this)); - break; - case FieldType.String: - writer.Write((string)syncedFields[i].GetValue(this)); - break; - case FieldType.Vector3: - Vector3 vector3 = (Vector3)syncedFields[i].GetValue(this); - writer.Write(vector3.x); - writer.Write(vector3.y); - writer.Write(vector3.z); - break; - case FieldType.Vector2: - Vector2 vector2 = (Vector2)syncedFields[i].GetValue(this); - writer.Write(vector2.x); - writer.Write(vector2.y); - break; - case FieldType.Quaternion: - Vector3 euler = ((Quaternion)syncedFields[i].GetValue(this)).eulerAngles; - writer.Write(euler.x); - writer.Write(euler.y); - writer.Write(euler.z); - break; - case FieldType.ByteArray: - writer.Write((ushort)((byte[])syncedFields[i].GetValue(this)).Length); - writer.Write((byte[])syncedFields[i].GetValue(this)); - break; + // If we don't have targets. We can send one big message, + // thus only serializing it once. Otherwise, we have to create two messages. One for the non targets and one for the target + if (dirtyTargets == 0) + { + //It's sync time! + using (MemoryStream stream = new MemoryStream()) + { + using (BinaryWriter writer = new BinaryWriter(stream)) + { + //Write all indexes + writer.Write(totalDirtyCount); + writer.Write(networkId); //NetId + writer.Write(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex + for (byte i = 0; i < syncedVarFields.Count; i++) + { + //Writes all the indexes of the dirty syncvars. + if (syncedVarFields[i].Dirty == true) + { + writer.Write(i); //FieldIndex + switch (syncedVarFields[i].FieldType) + { + case FieldType.Bool: + writer.Write((bool)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Byte: + writer.Write((byte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Char: + writer.Write((char)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Double: + writer.Write((double)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Single: + writer.Write((float)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Int: + writer.Write((int)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Long: + writer.Write((long)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByte: + writer.Write((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Short: + writer.Write((short)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UInt: + writer.Write((uint)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULong: + writer.Write((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShort: + writer.Write((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.String: + writer.Write((string)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Vector3: + Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); + writer.Write(vector3.x); + writer.Write(vector3.y); + writer.Write(vector3.z); + break; + case FieldType.Vector2: + Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); + writer.Write(vector2.x); + writer.Write(vector2.y); + break; + case FieldType.Quaternion: + Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; + writer.Write(euler.x); + writer.Write(euler.y); + writer.Write(euler.z); + break; + case FieldType.ByteArray: + writer.Write((ushort)((byte[])syncedVarFields[i].FieldInfo.GetValue(this)).Length); + writer.Write((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + + } + syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); + syncedVarFields[i].Dirty = false; } - syncedFieldValues[i] = syncedFields[i].GetValue(this); - dirtyFields[i] = false; } } + InternalMessageHandler.Send("MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); + } + } + else + { + //It's sync time. This is the target receivers packet. + using (MemoryStream stream = new MemoryStream()) + { + using (BinaryWriter writer = new BinaryWriter(stream)) + { + //Write all indexes + writer.Write(totalDirtyCount); + writer.Write(networkId); //NetId + writer.Write(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex + for (byte i = 0; i < syncedVarFields.Count; i++) + { + //Writes all the indexes of the dirty syncvars. + if (syncedVarFields[i].Dirty == true) + { + writer.Write(i); //FieldIndex + switch (syncedVarFields[i].FieldType) + { + case FieldType.Bool: + writer.Write((bool)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Byte: + writer.Write((byte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Char: + writer.Write((char)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Double: + writer.Write((double)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Single: + writer.Write((float)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Int: + writer.Write((int)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Long: + writer.Write((long)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByte: + writer.Write((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Short: + writer.Write((short)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UInt: + writer.Write((uint)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULong: + writer.Write((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShort: + writer.Write((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.String: + writer.Write((string)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Vector3: + Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); + writer.Write(vector3.x); + writer.Write(vector3.y); + writer.Write(vector3.z); + break; + case FieldType.Vector2: + Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); + writer.Write(vector2.x); + writer.Write(vector2.y); + break; + case FieldType.Quaternion: + Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; + writer.Write(euler.x); + writer.Write(euler.y); + writer.Write(euler.z); + break; + case FieldType.ByteArray: + writer.Write((ushort)((byte[])syncedVarFields[i].FieldInfo.GetValue(this)).Length); + writer.Write((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + + } + } + } + } + InternalMessageHandler.Send(ownerClientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); //Send only to target + } + + //It's sync time. This is the NON target receivers packet. + using (MemoryStream stream = new MemoryStream()) + { + using (BinaryWriter writer = new BinaryWriter(stream)) + { + //Write all indexes + writer.Write(nonTargetDirtyCount); + writer.Write(networkId); //NetId + writer.Write(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex + for (byte i = 0; i < syncedVarFields.Count; i++) + { + //Writes all the indexes of the dirty syncvars. + if (syncedVarFields[i].Dirty == true && !syncedVarFields[i].Target) + { + writer.Write(i); //FieldIndex + switch (syncedVarFields[i].FieldType) + { + case FieldType.Bool: + writer.Write((bool)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Byte: + writer.Write((byte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Char: + writer.Write((char)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Double: + writer.Write((double)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Single: + writer.Write((float)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Int: + writer.Write((int)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Long: + writer.Write((long)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByte: + writer.Write((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Short: + writer.Write((short)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UInt: + writer.Write((uint)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULong: + writer.Write((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShort: + writer.Write((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.String: + writer.Write((string)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Vector3: + Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); + writer.Write(vector3.x); + writer.Write(vector3.y); + writer.Write(vector3.z); + break; + case FieldType.Vector2: + Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); + writer.Write(vector2.x); + writer.Write(vector2.y); + break; + case FieldType.Quaternion: + Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; + writer.Write(euler.x); + writer.Write(euler.y); + writer.Write(euler.z); + break; + case FieldType.ByteArray: + writer.Write((ushort)((byte[])syncedVarFields[i].FieldInfo.GetValue(this)).Length); + writer.Write((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + + } + syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); + syncedVarFields[i].Dirty = false; + } + } + } + InternalMessageHandler.Send("MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray(), ownerClientId); // Send to everyone except target. } - InternalMessageHandler.Send("MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); } lastSyncTime = NetworkingManager.singleton.NetworkTime; } @@ -565,111 +839,111 @@ namespace MLAPI.MonoBehaviours.Core { if (!isServer) return; - for (int i = 0; i < syncedFields.Count; i++) + for (int i = 0; i < syncedVarFields.Count; i++) { - switch (syncedFieldTypes[i]) + switch (syncedVarFields[i].FieldType) { case FieldType.Bool: - if ((bool)syncedFields[i].GetValue(this) != (bool)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((bool)syncedVarFields[i].FieldInfo.GetValue(this) != (bool)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.Byte: - if ((byte)syncedFields[i].GetValue(this) != (byte)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((byte)syncedVarFields[i].FieldInfo.GetValue(this) != (byte)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.Char: - if ((char)syncedFields[i].GetValue(this) != (char)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((char)syncedVarFields[i].FieldInfo.GetValue(this) != (char)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.Double: - if ((double)syncedFields[i].GetValue(this) != (double)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((double)syncedVarFields[i].FieldInfo.GetValue(this) != (double)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.Single: - if ((float)syncedFields[i].GetValue(this) != (float)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((float)syncedVarFields[i].FieldInfo.GetValue(this) != (float)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.Int: - if ((int)syncedFields[i].GetValue(this) != (int)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((int)syncedVarFields[i].FieldInfo.GetValue(this) != (int)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.Long: - if ((long)syncedFields[i].GetValue(this) != (long)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((long)syncedVarFields[i].FieldInfo.GetValue(this) != (long)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.SByte: - if ((sbyte)syncedFields[i].GetValue(this) != (sbyte)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((sbyte)syncedVarFields[i].FieldInfo.GetValue(this) != (sbyte)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.Short: - if ((short)syncedFields[i].GetValue(this) != (short)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((short)syncedVarFields[i].FieldInfo.GetValue(this) != (short)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.UInt: - if ((uint)syncedFields[i].GetValue(this) != (uint)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((uint)syncedVarFields[i].FieldInfo.GetValue(this) != (uint)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.ULong: - if ((ulong)syncedFields[i].GetValue(this) != (ulong)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((ulong)syncedVarFields[i].FieldInfo.GetValue(this) != (ulong)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.UShort: - if ((ushort)syncedFields[i].GetValue(this) != (ushort)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((ushort)syncedVarFields[i].FieldInfo.GetValue(this) != (ushort)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.String: - if ((string)syncedFields[i].GetValue(this) != (string)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((string)syncedVarFields[i].FieldInfo.GetValue(this) != (string)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.Vector3: - if ((Vector3)syncedFields[i].GetValue(this) != (Vector3)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((Vector3)syncedVarFields[i].FieldInfo.GetValue(this) != (Vector3)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.Vector2: - if ((Vector2)syncedFields[i].GetValue(this) != (Vector2)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((Vector2)syncedVarFields[i].FieldInfo.GetValue(this) != (Vector2)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.Quaternion: - if ((Quaternion)syncedFields[i].GetValue(this) != (Quaternion)syncedFieldValues[i]) - dirtyFields[i] = true; //This fields value is out of sync! + if ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this) != (Quaternion)syncedVarFields[i].FieldValue) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; case FieldType.ByteArray: - if(((byte[])syncedFields[i].GetValue(this)).SequenceEqual(((byte[])syncedFieldValues[i]))) - dirtyFields[i] = true; //This fields value is out of sync! + if(((byte[])syncedVarFields[i].FieldInfo.GetValue(this)).SequenceEqual(((byte[])syncedVarFields[i].FieldValue))) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! else - dirtyFields[i] = false; //Up to date + syncedVarFields[i].Dirty = false; //Up to date break; } } diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs index 9d0dcd0..f9b6e06 100644 --- a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs @@ -304,12 +304,12 @@ namespace MLAPI.NetworkingManagerComponents.Core Debug.LogWarning("MLAPI: Sync message recieved for a non existant behaviour"); return; } - else if (fieldIndex > (SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedFieldTypes.Count - 1)) + else if (fieldIndex > (SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedVarFields.Count - 1)) { Debug.LogWarning("MLAPI: Sync message recieved for field out of bounds"); return; } - FieldType type = SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedFieldTypes[fieldIndex]; + FieldType type = SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedVarFields[fieldIndex].FieldType; switch (type) { case FieldType.Bool: From df109debf42e9199bfc9c10a579618f93bf28f9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 19:49:53 +0200 Subject: [PATCH 18/47] Fixed potential issue when syncing only targeted messages --- MLAPI/MLAPI.csproj | 2 +- MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/MLAPI/MLAPI.csproj b/MLAPI/MLAPI.csproj index 86817ba..b429cfa 100644 --- a/MLAPI/MLAPI.csproj +++ b/MLAPI/MLAPI.csproj @@ -36,7 +36,7 @@ true - ..\..\MLAPI-Examples\Assets\MLAPI\ + ..\..\MLAPI-Examples\Assets\MLAPI\Lib\ DEBUG;TRACE full AnyCPU diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index 31f37e9..d96ca22 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -744,6 +744,17 @@ namespace MLAPI.MonoBehaviours.Core InternalMessageHandler.Send(ownerClientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); //Send only to target } + if (nonTargetDirtyCount == 0) + { + //Seems like ONLY targeted syncedVars was changed. Thus we need to remove the dirty tags and return; + for (int i = 0; i < syncedVarFields.Count; i++) + { + syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); + syncedVarFields[i].Dirty = false; + } + return; + } + //It's sync time. This is the NON target receivers packet. using (MemoryStream stream = new MemoryStream()) { From b799341f8a7711780c1388cfd18fdc3ca9c709a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 19:55:36 +0200 Subject: [PATCH 19/47] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7d24bd5..0c25283 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ There is also a autogenerated Sandcastle [API reference](https://twotenpvp.githu * Networked NavMeshAgent \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/NetworkedNavMeshAgent)\] * Networked Object Pooling \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/Networked-Object-Pooling)\] * Synced Vars \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/SyncedVars)\] +* Targeted Synced Vars \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/SyncedVars#target)\] * Encryption \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/Message-Encryption)\] From 90c5a86fb0ab40aa08fc8768146e541af634f7b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 21:29:52 +0200 Subject: [PATCH 20/47] Fixed writebyte issue with BitWriter --- MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index 5a6c46b..48dc23a 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -232,6 +232,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary if (t is byte) { WriteByte(writeTo, t as byte? ?? 0, bitOffset, isAligned); + bitOffset += 8; return; } else if (t is ushort) value = t as ushort? ?? 0; From 85ecca2af9dd25ace709222716c5dae9dc13aa39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 21:36:55 +0200 Subject: [PATCH 21/47] Fixed SyncedVar issue --- .../MonoBehaviours/Core/NetworkedBehaviour.cs | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index d96ca22..4b9085c 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -240,7 +240,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.Byte, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -252,7 +252,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.Char, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -264,7 +264,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.Double, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -276,7 +276,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.Single, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -288,7 +288,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.Int, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -300,7 +300,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.Long, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -312,7 +312,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.SByte, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -324,7 +324,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.Short, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -336,7 +336,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.UInt, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -348,7 +348,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.ULong, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -360,7 +360,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.UShort, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -372,7 +372,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.String, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -384,7 +384,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.Vector3, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -396,7 +396,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.Vector2, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -408,7 +408,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.Quaternion, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -420,7 +420,7 @@ namespace MLAPI.MonoBehaviours.Core Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, + FieldType = FieldType.ByteArray, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); From 4d28f3420e9927e93128ee42917e93912c1ccf84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 21:38:08 +0200 Subject: [PATCH 22/47] Switched the Generic MLAPI message layer to BitWriter & BitReader --- .../MonoBehaviours/Core/NetworkingManager.cs | 369 +++++++++--------- .../Core/InternalMessageHandler.Send.cs | 284 ++++++-------- 2 files changed, 305 insertions(+), 348 deletions(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index 8d8c465..f415288 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -10,6 +10,7 @@ using System.Security.Cryptography; using MLAPI.NetworkingManagerComponents.Cryptography; using MLAPI.NetworkingManagerComponents.Core; using UnityEngine.SceneManagement; +using MLAPI.NetworkingManagerComponents.Binary; namespace MLAPI.MonoBehaviours.Core { @@ -821,200 +822,198 @@ namespace MLAPI.MonoBehaviours.Core private void HandleIncomingData(uint clientId, byte[] data, int channelId) { - using(MemoryStream readStream = new MemoryStream(data)) + BitReader reader = new BitReader(data); + + ushort messageType = reader.ReadUShort(); + bool targeted = reader.ReadBool(); + uint targetNetworkId = 0; + ushort networkOrderId = 0; + if (targeted) { - using (BinaryReader reader = new BinaryReader(readStream)) + targetNetworkId = reader.ReadUInt(); + networkOrderId = reader.ReadUShort(); + } + bool isPassthrough = reader.ReadBool(); + + uint passthroughOrigin = 0; + uint passthroughTarget = 0; + + if (isPassthrough && isServer) + passthroughTarget = reader.ReadUInt(); + else if (isPassthrough && !isServer) + passthroughOrigin = reader.ReadUInt(); + + + //Client tried to send a network message that was not the connection request before he was accepted. + if (isServer && pendingClients.Contains(clientId) && messageType != 0) + { + Debug.LogWarning("MLAPI: Message recieved from clientId " + clientId + " before it has been accepted"); + return; + } + + + //ushort bytesToRead = reader.ReadUShort(); + reader.SkipPadded(); + + byte[] incommingData = reader.ReadByteArray(); + if (NetworkConfig.EncryptedChannelsHashSet.Contains(MessageManager.reverseChannels[channelId])) + { + //Encrypted message + if (isServer) + incommingData = CryptographyHelper.Decrypt(incommingData, connectedClients[clientId].AesKey); + else + incommingData = CryptographyHelper.Decrypt(incommingData, clientAesKey); + } + + if (isServer && isPassthrough && !NetworkConfig.PassthroughMessageHashSet.Contains(messageType)) + { + Debug.LogWarning("MLAPI: Client " + clientId + " tried to send a passthrough message for a messageType not registered as passthrough"); + return; + } + else if (isClient && isPassthrough && !NetworkConfig.PassthroughMessageHashSet.Contains(messageType)) + { + Debug.LogWarning("MLAPI: Server tried to send a passthrough message for a messageType not registered as passthrough"); + return; + } + else if (isServer && isPassthrough) + { + if (!connectedClients.ContainsKey(passthroughTarget)) { - ushort messageType = reader.ReadUInt16(); - bool targeted = reader.ReadBoolean(); - uint targetNetworkId = 0; - ushort networkOrderId = 0; - if(targeted) + Debug.LogWarning("MLAPI: Passthrough message was sent with invalid target: " + passthroughTarget + " from client " + clientId); + return; + } + uint? netIdTarget = null; + ushort? netOrderId = null; + if (targeted) + { + netIdTarget = targetNetworkId; + netOrderId = networkOrderId; + } + InternalMessageHandler.PassthroughSend(passthroughTarget, clientId, messageType, channelId, incommingData, netIdTarget, netOrderId); + return; + } + + if (messageType >= 32) + { + #region CUSTOM MESSAGE + //Custom message, invoke all message handlers + if (targeted) + { + if (!SpawnManager.spawnedObjects.ContainsKey(targetNetworkId)) { - targetNetworkId = reader.ReadUInt32(); - networkOrderId = reader.ReadUInt16(); - } - bool isPassthrough = reader.ReadBoolean(); - - uint passthroughOrigin = 0; - uint passthroughTarget = 0; - - if (isPassthrough && isServer) - passthroughTarget = reader.ReadUInt32(); - else if (isPassthrough && !isServer) - passthroughOrigin = reader.ReadUInt32(); - - - //Client tried to send a network message that was not the connection request before he was accepted. - if (isServer && pendingClients.Contains(clientId) && messageType != 0) - { - Debug.LogWarning("MLAPI: Message recieved from clientId " + clientId + " before it has been accepted"); + Debug.LogWarning("MLAPI: No target for message found"); return; } - - - ushort bytesToRead = reader.ReadUInt16(); - byte[] incommingData = reader.ReadBytes(bytesToRead); - if(NetworkConfig.EncryptedChannelsHashSet.Contains(MessageManager.reverseChannels[channelId])) + else if (!SpawnManager.spawnedObjects[targetNetworkId].targetMessageActions.ContainsKey(networkOrderId)) { - //Encrypted message - if (isServer) - incommingData = CryptographyHelper.Decrypt(incommingData, connectedClients[clientId].AesKey); + Debug.LogWarning("MLAPI: No target messageType for message found"); + return; + } + else if (!SpawnManager.spawnedObjects[targetNetworkId].targetMessageActions[networkOrderId].ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: No target found with the given messageType"); + return; + } + SpawnManager.spawnedObjects[targetNetworkId].targetMessageActions[networkOrderId][messageType].Invoke(clientId, incommingData); + } + else + { + foreach (KeyValuePair> pair in MessageManager.messageCallbacks[messageType]) + { + if (isPassthrough) + pair.Value(passthroughOrigin, incommingData); else - incommingData = CryptographyHelper.Decrypt(incommingData, clientAesKey); - } - - if (isServer && isPassthrough && !NetworkConfig.PassthroughMessageHashSet.Contains(messageType)) - { - Debug.LogWarning("MLAPI: Client " + clientId + " tried to send a passthrough message for a messageType not registered as passthrough"); - return; - } - else if(isClient && isPassthrough && !NetworkConfig.PassthroughMessageHashSet.Contains(messageType)) - { - Debug.LogWarning("MLAPI: Server tried to send a passthrough message for a messageType not registered as passthrough"); - return; - } - else if(isServer && isPassthrough) - { - if (!connectedClients.ContainsKey(passthroughTarget)) - { - Debug.LogWarning("MLAPI: Passthrough message was sent with invalid target: " + passthroughTarget + " from client " + clientId); - return; - } - uint? netIdTarget = null; - ushort? netOrderId = null; - if (targeted) - { - netIdTarget = targetNetworkId; - netOrderId = networkOrderId; - } - InternalMessageHandler.PassthroughSend(passthroughTarget, clientId, messageType, channelId, incommingData, netIdTarget, netOrderId); - return; - } - - if (messageType >= 32) - { - #region CUSTOM MESSAGE - //Custom message, invoke all message handlers - if(targeted) - { - if (!SpawnManager.spawnedObjects.ContainsKey(targetNetworkId)) - { - Debug.LogWarning("MLAPI: No target for message found"); - return; - } - else if (!SpawnManager.spawnedObjects[targetNetworkId].targetMessageActions.ContainsKey(networkOrderId)) - { - Debug.LogWarning("MLAPI: No target messageType for message found"); - return; - } - else if (!SpawnManager.spawnedObjects[targetNetworkId].targetMessageActions[networkOrderId].ContainsKey(messageType)) - { - Debug.LogWarning("MLAPI: No target found with the given messageType"); - return; - } - SpawnManager.spawnedObjects[targetNetworkId].targetMessageActions[networkOrderId][messageType].Invoke(clientId, incommingData); - } - else - { - foreach (KeyValuePair> pair in MessageManager.messageCallbacks[messageType]) - { - if (isPassthrough) - pair.Value(passthroughOrigin, incommingData); - else - pair.Value(clientId, incommingData); - } - } - #endregion - } - else - { - #region INTERNAL MESSAGE - //MLAPI message - switch (messageType) - { - case 0: //Client to server > sends connection buffer - if (isServer) - { - InternalMessageHandler.HandleConnectionRequest(clientId, incommingData, channelId); - } - break; - case 1: //Server informs client it has been approved: - if (isClient) - { - InternalMessageHandler.HandleConnectionApproved(clientId, incommingData, channelId); - } - break; - case 2: - //Server informs client another client connected - //MLAPI_ADD_OBJECT - if (isClient) - { - InternalMessageHandler.HandleAddObject(clientId, incommingData, channelId); - } - break; - case 3: - //Server informs client another client disconnected - //MLAPI_CLIENT_DISCONNECT - if (isClient) - { - InternalMessageHandler.HandleClientDisconnect(clientId, incommingData, channelId); - } - break; - case 4: - //Server infroms clients to destroy an object - if (isClient) - { - InternalMessageHandler.HandleDestroyObject(clientId, incommingData, channelId); - } - break; - case 5: - //Scene switch - if (isClient) - { - InternalMessageHandler.HandleSwitchScene(clientId, incommingData, channelId); - } - break; - case 6: //Spawn pool object - if (isClient) - { - InternalMessageHandler.HandleSpawnPoolObject(clientId, incommingData, channelId); - } - break; - case 7: //Destroy pool object - if (isClient) - { - InternalMessageHandler.HandleDestroyPoolObject(clientId, incommingData, channelId); - } - break; - case 8: //Change owner - if (isClient) - { - InternalMessageHandler.HandleChangeOwner(clientId, incommingData, channelId); - } - break; - case 9: //Syncvar - if (isClient) - { - InternalMessageHandler.HandleSyncVarUpdate(clientId, incommingData, channelId); - } - break; - case 10: - if (isClient) //MLAPI_ADD_OBJECTS (plural) - { - InternalMessageHandler.HandleAddObjects(clientId, incommingData, channelId); - } - break; - case 11: - if (isClient) - { - InternalMessageHandler.HandleTimeSync(clientId, incommingData, channelId); - } - break; - } - #endregion + pair.Value(clientId, incommingData); } } + #endregion + } + else + { + #region INTERNAL MESSAGE + //MLAPI message + switch (messageType) + { + case 0: //Client to server > sends connection buffer + if (isServer) + { + InternalMessageHandler.HandleConnectionRequest(clientId, incommingData, channelId); + } + break; + case 1: //Server informs client it has been approved: + if (isClient) + { + InternalMessageHandler.HandleConnectionApproved(clientId, incommingData, channelId); + } + break; + case 2: + //Server informs client another client connected + //MLAPI_ADD_OBJECT + if (isClient) + { + InternalMessageHandler.HandleAddObject(clientId, incommingData, channelId); + } + break; + case 3: + //Server informs client another client disconnected + //MLAPI_CLIENT_DISCONNECT + if (isClient) + { + InternalMessageHandler.HandleClientDisconnect(clientId, incommingData, channelId); + } + break; + case 4: + //Server infroms clients to destroy an object + if (isClient) + { + InternalMessageHandler.HandleDestroyObject(clientId, incommingData, channelId); + } + break; + case 5: + //Scene switch + if (isClient) + { + InternalMessageHandler.HandleSwitchScene(clientId, incommingData, channelId); + } + break; + case 6: //Spawn pool object + if (isClient) + { + InternalMessageHandler.HandleSpawnPoolObject(clientId, incommingData, channelId); + } + break; + case 7: //Destroy pool object + if (isClient) + { + InternalMessageHandler.HandleDestroyPoolObject(clientId, incommingData, channelId); + } + break; + case 8: //Change owner + if (isClient) + { + InternalMessageHandler.HandleChangeOwner(clientId, incommingData, channelId); + } + break; + case 9: //Syncvar + if (isClient) + { + InternalMessageHandler.HandleSyncVarUpdate(clientId, incommingData, channelId); + } + break; + case 10: + if (isClient) //MLAPI_ADD_OBJECTS (plural) + { + InternalMessageHandler.HandleAddObjects(clientId, incommingData, channelId); + } + break; + case 11: + if (isClient) + { + InternalMessageHandler.HandleTimeSync(clientId, incommingData, channelId); + } + break; + } + #endregion } } diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs index 118725d..362c902 100644 --- a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs @@ -1,7 +1,7 @@ -using System.Collections.Generic; -using System.IO; +using System; +using System.Collections.Generic; using MLAPI.Data; -using MLAPI.MonoBehaviours.Core; +using MLAPI.NetworkingManagerComponents.Binary; using MLAPI.NetworkingManagerComponents.Cryptography; using UnityEngine; using UnityEngine.Networking; @@ -20,41 +20,29 @@ namespace MLAPI.NetworkingManagerComponents.Core return; } - int sizeOfStream = 10; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(messageType); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(true); - writer.Write(sourceId); - if (netManager.NetworkConfig.EncryptedChannelsHashSet.Contains(MessageManager.reverseChannels[channelId])) - { - //Encrypted message - byte[] encrypted = CryptographyHelper.Encrypt(data, netManager.connectedClients[targetId].AesKey); - writer.Write((ushort)encrypted.Length); - writer.Write(encrypted); - } - else - { - writer.Write((ushort)data.Length); - writer.Write(data); - } - } + writer.WriteUShort(messageType); + writer.WriteBool(networkId != null); + + if (networkId != null) + writer.WriteUInt(networkId.Value); + + if (orderId != null) + writer.WriteUShort(orderId.Value); + + writer.WriteBool(true); + writer.WriteUInt(sourceId); + + writer.WriteAlignBits(); + + if (netManager.NetworkConfig.EncryptedChannelsHashSet.Contains(MessageManager.reverseChannels[channelId])) + writer.WriteByteArray(CryptographyHelper.Encrypt(data, netManager.connectedClients[targetId].AesKey)); + else + writer.WriteByteArray(data); byte error; - NetworkTransport.QueueMessageForSending(targetNetId.HostId, targetNetId.ConnectionId, channelId, stream.GetBuffer(), sizeOfStream, out error); + NetworkTransport.QueueMessageForSending(targetNetId.HostId, targetNetId.ConnectionId, channelId, writer.Finalize(), (int)writer.GetFinalizeSize(), out error); } } @@ -80,55 +68,45 @@ namespace MLAPI.NetworkingManagerComponents.Core return; } - int sizeOfStream = 6; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - if (isPassthrough) - sizeOfStream += 4; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) + writer.WriteUShort(MessageManager.messageTypes[messageType]); + writer.WriteBool(networkId != null); + + if (networkId != null) + writer.WriteUInt(networkId.Value); + + if (orderId != null) + writer.WriteUShort(orderId.Value); + + writer.WriteBool(isPassthrough); + + if (isPassthrough) + writer.WriteUInt(clientId); + + writer.WriteAlignBits(); + + if (netManager.NetworkConfig.EncryptedChannelsHashSet.Contains(channelName)) { - writer.Write(MessageManager.messageTypes[messageType]); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(isPassthrough); - if (isPassthrough) - writer.Write(clientId); - - if (netManager.NetworkConfig.EncryptedChannelsHashSet.Contains(channelName)) - { - //This is an encrypted message. - byte[] encrypted; - if (netManager.isServer) - encrypted = CryptographyHelper.Encrypt(data, netManager.connectedClients[clientId].AesKey); - else - encrypted = CryptographyHelper.Encrypt(data, netManager.clientAesKey); - - writer.Write((ushort)encrypted.Length); - writer.Write(encrypted); - } + //This is an encrypted message. + byte[] encrypted; + if (netManager.isServer) + encrypted = CryptographyHelper.Encrypt(data, netManager.connectedClients[clientId].AesKey); else - { - //Send in plaintext. - writer.Write((ushort)data.Length); - writer.Write(data); - } + encrypted = CryptographyHelper.Encrypt(data, netManager.clientAesKey); + + writer.WriteByteArray(encrypted); } + else + writer.WriteByteArray(data); + byte error; if (isPassthrough) netId = NetId.ServerNetId; if (skipQueue) - NetworkTransport.Send(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], stream.GetBuffer(), sizeOfStream, out error); + NetworkTransport.Send(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], writer.Finalize(), (int)writer.GetFinalizeSize(), out error); else - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], stream.GetBuffer(), sizeOfStream, out error); + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], writer.Finalize(), (int)writer.GetFinalizeSize(), out error); } } @@ -140,27 +118,23 @@ namespace MLAPI.NetworkingManagerComponents.Core return; } - int sizeOfStream = 6; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(MessageManager.messageTypes[messageType]); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(false); - writer.Write((ushort)data.Length); - writer.Write(data); - } + writer.WriteUShort(MessageManager.messageTypes[messageType]); + writer.WriteBool(networkId != null); + + if (networkId != null) + writer.WriteUInt(networkId.Value); + + if (orderId != null) + writer.WriteUShort(orderId.Value); + + writer.WriteBool(false); + + writer.WriteAlignBits(); + + writer.WriteByteArray(data); + int channel = MessageManager.channels[channelName]; for (int i = 0; i < clientIds.Length; i++) { @@ -176,7 +150,7 @@ namespace MLAPI.NetworkingManagerComponents.Core netId = NetId.ServerNetId; } byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, writer.Finalize(), (int)writer.GetFinalizeSize(), out error); } } } @@ -189,28 +163,23 @@ namespace MLAPI.NetworkingManagerComponents.Core return; } - //2 bytes for messageType, 2 bytes for buffer length and one byte for target bool - int sizeOfStream = 6; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(MessageManager.messageTypes[messageType]); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(false); - writer.Write((ushort)data.Length); - writer.Write(data); - } + writer.WriteUShort(MessageManager.messageTypes[messageType]); + writer.WriteBool(networkId != null); + + if (networkId != null) + writer.WriteUInt(networkId.Value); + + if (orderId != null) + writer.WriteUShort(orderId.Value); + + writer.WriteBool(false); + + writer.WriteAlignBits(); + + writer.WriteByteArray(data); + int channel = MessageManager.channels[channelName]; for (int i = 0; i < clientIds.Count; i++) { @@ -226,7 +195,7 @@ namespace MLAPI.NetworkingManagerComponents.Core netId = NetId.ServerNetId; } byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, writer.Finalize(), (int)writer.GetFinalizeSize(), out error); } } } @@ -240,29 +209,23 @@ namespace MLAPI.NetworkingManagerComponents.Core Debug.LogWarning("MLAPI: Cannot send messages over encrypted channel to multiple clients."); return; } - - //2 bytes for messageType, 2 bytes for buffer length and one byte for target bool - int sizeOfStream = 6; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(MessageManager.messageTypes[messageType]); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(false); - writer.Write((ushort)data.Length); - writer.Write(data); - } + writer.WriteUShort(MessageManager.messageTypes[messageType]); + writer.WriteBool(networkId != null); + + if (networkId != null) + writer.WriteUInt(networkId.Value); + + if (orderId != null) + writer.WriteUShort(orderId.Value); + + writer.WriteBool(false); + + writer.WriteAlignBits(); + + writer.WriteByteArray(data); + int channel = MessageManager.channels[channelName]; foreach (KeyValuePair pair in netManager.connectedClients) { @@ -278,7 +241,7 @@ namespace MLAPI.NetworkingManagerComponents.Core netId = NetId.ServerNetId; } byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, writer.Finalize(), (int)writer.GetFinalizeSize(), out error); } } } @@ -291,28 +254,23 @@ namespace MLAPI.NetworkingManagerComponents.Core return; } - //2 bytes for messageType, 2 bytes for buffer length and one byte for target bool - int sizeOfStream = 5; - if (networkId != null) - sizeOfStream += 4; - if (orderId != null) - sizeOfStream += 2; - sizeOfStream += data.Length; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(MessageManager.messageTypes[messageType]); - writer.Write(networkId != null); - if (networkId != null) - writer.Write(networkId.Value); - if (orderId != null) - writer.Write(orderId.Value); - writer.Write(false); - writer.Write((ushort)data.Length); - writer.Write(data); - } + writer.WriteUShort(MessageManager.messageTypes[messageType]); + writer.WriteBool(networkId != null); + + if (networkId != null) + writer.WriteUInt(networkId.Value); + + if (orderId != null) + writer.WriteUShort(orderId.Value); + + writer.WriteBool(false); + + writer.WriteAlignBits(); + + writer.WriteByteArray(data); + int channel = MessageManager.channels[channelName]; foreach (KeyValuePair pair in netManager.connectedClients) { @@ -331,7 +289,7 @@ namespace MLAPI.NetworkingManagerComponents.Core netId = NetId.ServerNetId; } byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, stream.GetBuffer(), sizeOfStream, out error); + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, writer.Finalize(), (int)writer.GetFinalizeSize(), out error); } } } From 554010dbbce590699802f69678e89a14759f1e8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 21:41:24 +0200 Subject: [PATCH 23/47] Switched NetworkConfig GetConfig to BitWriter --- MLAPI/Data/NetworkConfig.cs | 73 ++++++++++++++++++------------------- 1 file changed, 36 insertions(+), 37 deletions(-) diff --git a/MLAPI/Data/NetworkConfig.cs b/MLAPI/Data/NetworkConfig.cs index 5c9bf3d..5f8c9f1 100644 --- a/MLAPI/Data/NetworkConfig.cs +++ b/MLAPI/Data/NetworkConfig.cs @@ -1,4 +1,5 @@ using MLAPI.MonoBehaviours.Core; +using MLAPI.NetworkingManagerComponents.Binary; using System; using System.Collections.Generic; using System.IO; @@ -155,53 +156,51 @@ namespace MLAPI.Data if (ConfigHash != null && cache) return ConfigHash; - using (MemoryStream writeStream = new MemoryStream()) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(writeStream)) + writer.WriteUShort(ProtocolVersion); + for (int i = 0; i < Channels.Count; i++) { - writer.Write(ProtocolVersion); - for (int i = 0; i < Channels.Count; i++) - { - writer.Write(Channels[i].Name); - writer.Write((byte)Channels[i].Type); - if (EnableEncryption) - writer.Write(Channels[i].Encrypted); - } - for (int i = 0; i < MessageTypes.Count; i++) - { - writer.Write(MessageTypes[i].Name); - if (AllowPassthroughMessages) - writer.Write(MessageTypes[i].Passthrough); - } - if (EnableSceneSwitching) - { - for (int i = 0; i < RegisteredScenes.Count; i++) - { - writer.Write(RegisteredScenes[i]); - } - } - if(HandleObjectSpawning) - { - for (int i = 0; i < NetworkedPrefabs.Count; i++) - { - writer.Write(NetworkedPrefabs[i].name); - } - } - writer.Write(HandleObjectSpawning); - writer.Write(EnableEncryption); - writer.Write(AllowPassthroughMessages); - writer.Write(EnableSceneSwitching); - writer.Write(SignKeyExchange); + writer.WriteString(Channels[i].Name); + writer.WriteByte((byte)Channels[i].Type); + if (EnableEncryption) + writer.WriteBool(Channels[i].Encrypted); } + for (int i = 0; i < MessageTypes.Count; i++) + { + writer.WriteString(MessageTypes[i].Name); + if (AllowPassthroughMessages) + writer.WriteBool(MessageTypes[i].Passthrough); + } + if (EnableSceneSwitching) + { + for (int i = 0; i < RegisteredScenes.Count; i++) + { + writer.WriteString(RegisteredScenes[i]); + } + } + if (HandleObjectSpawning) + { + for (int i = 0; i < NetworkedPrefabs.Count; i++) + { + writer.WriteString(NetworkedPrefabs[i].name); + } + } + writer.WriteBool(HandleObjectSpawning); + writer.WriteBool(EnableEncryption); + writer.WriteBool(AllowPassthroughMessages); + writer.WriteBool(EnableSceneSwitching); + writer.WriteBool(SignKeyExchange); + using (SHA256Managed sha256 = new SHA256Managed()) { //Returns a 256 bit / 32 byte long checksum of the config if (cache) { - ConfigHash = sha256.ComputeHash(writeStream.ToArray()); + ConfigHash = sha256.ComputeHash(writer.Finalize()); return ConfigHash; } - return sha256.ComputeHash(writeStream.ToArray()); + return sha256.ComputeHash(writer.Finalize()); } } } From 39c262e9e090bafc69ad824bdc286c12fb835a69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 21:46:22 +0200 Subject: [PATCH 24/47] Removed Generic MLAPI message header allocation --- .../MonoBehaviours/Core/NetworkingManager.cs | 1 + .../Core/InternalMessageHandler.Send.cs | 35 ++++++++++++++----- 2 files changed, 27 insertions(+), 9 deletions(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index f415288..d38d828 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -234,6 +234,7 @@ namespace MLAPI.MonoBehaviours.Core NetworkSceneManager.registeredSceneNames = new HashSet(); NetworkSceneManager.sceneIndexToString = new Dictionary(); NetworkSceneManager.sceneNameToIndex = new Dictionary(); + InternalMessageHandler.FinalMessageBuffer = new byte[NetworkConfig.MessageBufferSize]; if(NetworkConfig.HandleObjectSpawning) { diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs index 362c902..3b25def 100644 --- a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Send.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using MLAPI.Data; using MLAPI.NetworkingManagerComponents.Binary; using MLAPI.NetworkingManagerComponents.Cryptography; @@ -10,6 +9,7 @@ namespace MLAPI.NetworkingManagerComponents.Core { internal static partial class InternalMessageHandler { + internal static byte[] FinalMessageBuffer; internal static void PassthroughSend(uint targetId, uint sourceId, ushort messageType, int channelId, byte[] data, uint? networkId = null, ushort? orderId = null) { NetId targetNetId = new NetId(targetId); @@ -41,8 +41,10 @@ namespace MLAPI.NetworkingManagerComponents.Core else writer.WriteByteArray(data); + writer.Finalize(ref FinalMessageBuffer); + byte error; - NetworkTransport.QueueMessageForSending(targetNetId.HostId, targetNetId.ConnectionId, channelId, writer.Finalize(), (int)writer.GetFinalizeSize(), out error); + NetworkTransport.QueueMessageForSending(targetNetId.HostId, targetNetId.ConnectionId, channelId, FinalMessageBuffer, (int)writer.GetFinalizeSize(), out error); } } @@ -103,10 +105,13 @@ namespace MLAPI.NetworkingManagerComponents.Core byte error; if (isPassthrough) netId = NetId.ServerNetId; + + writer.Finalize(ref FinalMessageBuffer); + if (skipQueue) - NetworkTransport.Send(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], writer.Finalize(), (int)writer.GetFinalizeSize(), out error); + NetworkTransport.Send(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], FinalMessageBuffer, (int)writer.GetFinalizeSize(), out error); else - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], writer.Finalize(), (int)writer.GetFinalizeSize(), out error); + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, MessageManager.channels[channelName], FinalMessageBuffer, (int)writer.GetFinalizeSize(), out error); } } @@ -149,8 +154,11 @@ namespace MLAPI.NetworkingManagerComponents.Core //Client trying to send data to host netId = NetId.ServerNetId; } + + writer.Finalize(ref FinalMessageBuffer); + byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, writer.Finalize(), (int)writer.GetFinalizeSize(), out error); + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, FinalMessageBuffer, (int)writer.GetFinalizeSize(), out error); } } } @@ -194,8 +202,11 @@ namespace MLAPI.NetworkingManagerComponents.Core //Client trying to send data to host netId = NetId.ServerNetId; } + + writer.Finalize(ref FinalMessageBuffer); + byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, writer.Finalize(), (int)writer.GetFinalizeSize(), out error); + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, FinalMessageBuffer, (int)writer.GetFinalizeSize(), out error); } } } @@ -240,8 +251,11 @@ namespace MLAPI.NetworkingManagerComponents.Core //Client trying to send data to host netId = NetId.ServerNetId; } + + writer.Finalize(ref FinalMessageBuffer); + byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, writer.Finalize(), (int)writer.GetFinalizeSize(), out error); + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, FinalMessageBuffer, (int)writer.GetFinalizeSize(), out error); } } } @@ -288,8 +302,11 @@ namespace MLAPI.NetworkingManagerComponents.Core //Client trying to send data to host netId = NetId.ServerNetId; } + + writer.Finalize(ref FinalMessageBuffer); + byte error; - NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, writer.Finalize(), (int)writer.GetFinalizeSize(), out error); + NetworkTransport.QueueMessageForSending(netId.HostId, netId.ConnectionId, channel, FinalMessageBuffer, (int)writer.GetFinalizeSize(), out error); } } } From 2acb20e8ea6897d036e9f4fa2db3f9908b5f63bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 23:23:24 +0200 Subject: [PATCH 25/47] Replaced ALL usage of BinaryWriter / BinaryReader with BitReader & BitWriter --- MLAPI/Data/FieldType.cs | 1 - .../MonoBehaviours/Core/NetworkedBehaviour.cs | 529 +++++++-------- .../MonoBehaviours/Core/NetworkingManager.cs | 206 ++---- .../Core/InternalMessageHandler.Receive.cs | 640 ++++++++---------- .../Core/NetworkPoolManager.cs | 35 +- .../Core/NetworkSceneManager.cs | 12 +- .../Core/SpawnManager.cs | 103 ++- 7 files changed, 679 insertions(+), 847 deletions(-) diff --git a/MLAPI/Data/FieldType.cs b/MLAPI/Data/FieldType.cs index ed9be12..0d4a50a 100644 --- a/MLAPI/Data/FieldType.cs +++ b/MLAPI/Data/FieldType.cs @@ -7,7 +7,6 @@ { Bool, Byte, - Char, Double, Single, Int, diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index 4b9085c..228c34b 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -4,7 +4,6 @@ using UnityEngine; using System.Reflection; using MLAPI.Attributes; using System.Linq; -using System.IO; using MLAPI.Data; using MLAPI.NetworkingManagerComponents.Binary; using MLAPI.NetworkingManagerComponents.Core; @@ -245,18 +244,6 @@ namespace MLAPI.MonoBehaviours.Core HookMethod = method }); } - else if (sortedFields[i].FieldType == typeof(char)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.Char, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } else if (sortedFields[i].FieldType == typeof(double)) { syncedVarFields.Add(new SyncedVarField() @@ -450,95 +437,88 @@ namespace MLAPI.MonoBehaviours.Core if (syncedVarFields.Count == 0) return; - using (MemoryStream stream = new MemoryStream()) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) + //Write all indexes + int syncCount = 0; + for (int i = 0; i < syncedVarFields.Count; i++) { - //Write all indexes - int syncCount = 0; - for (int i = 0; i < syncedVarFields.Count; i++) + if (!syncedVarFields[i].Target) + syncCount++; + else if (syncedVarFields[i].Target && ownerClientId == clientId) + syncCount++; + } + if (syncCount == 0) + return; + writer.WriteByte((byte)syncCount); + writer.WriteUInt(networkId); //NetId + writer.WriteUShort(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex + for (byte i = 0; i < syncedVarFields.Count; i++) + { + if (syncedVarFields[i].Target && clientId != ownerClientId) + continue; + writer.WriteByte(i); //FieldIndex + switch (syncedVarFields[i].FieldType) { - if (!syncedVarFields[i].Target) - syncCount++; - else if (syncedVarFields[i].Target && ownerClientId == clientId) - syncCount++; - } - if (syncCount == 0) - return; - writer.Write((byte)syncCount); - writer.Write(networkId); //NetId - writer.Write(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex - for (byte i = 0; i < syncedVarFields.Count; i++) - { - if (syncedVarFields[i].Target && clientId != ownerClientId) - continue; - writer.Write(i); //FieldIndex - switch (syncedVarFields[i].FieldType) - { - case FieldType.Bool: - writer.Write((bool)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Byte: - writer.Write((byte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Char: - writer.Write((char)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Double: - writer.Write((double)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Single: - writer.Write((float)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Int: - writer.Write((int)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Long: - writer.Write((long)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByte: - writer.Write((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Short: - writer.Write((short)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UInt: - writer.Write((uint)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULong: - writer.Write((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShort: - writer.Write((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.String: - writer.Write((string)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Vector3: - Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); - writer.Write(vector3.x); - writer.Write(vector3.y); - writer.Write(vector3.z); - break; - case FieldType.Vector2: - Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); - writer.Write(vector2.x); - writer.Write(vector2.y); - break; - case FieldType.Quaternion: - Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; - writer.Write(euler.x); - writer.Write(euler.y); - writer.Write(euler.z); - break; - case FieldType.ByteArray: - writer.Write((ushort)((byte[])syncedVarFields[i].FieldInfo.GetValue(this)).Length); - writer.Write((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - } + case FieldType.Bool: + writer.WriteBool((bool)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Byte: + writer.WriteByte((byte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Double: + writer.WriteDouble((double)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Single: + writer.WriteFloat((float)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Int: + writer.WriteInt((int)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Long: + writer.WriteLong((long)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByte: + writer.WriteSByte((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Short: + writer.WriteShort((short)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UInt: + writer.WriteUInt((uint)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULong: + writer.WriteULong((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShort: + writer.WriteUShort((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.String: + writer.WriteString((string)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Vector3: + Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteFloat(vector3.x); + writer.WriteFloat(vector3.y); + writer.WriteFloat(vector3.z); + break; + case FieldType.Vector2: + Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteFloat(vector2.x); + writer.WriteFloat(vector2.y); + break; + case FieldType.Quaternion: + Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; + writer.WriteFloat(euler.x); + writer.WriteFloat(euler.y); + writer.WriteFloat(euler.z); + break; + case FieldType.ByteArray: + writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; } } - InternalMessageHandler.Send(clientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); + InternalMessageHandler.Send(clientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", writer.Finalize()); } } @@ -571,177 +551,162 @@ namespace MLAPI.MonoBehaviours.Core if (dirtyTargets == 0) { //It's sync time! - using (MemoryStream stream = new MemoryStream()) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) + //Write all indexes + writer.WriteByte(totalDirtyCount); + writer.WriteUInt(networkId); //NetId + writer.WriteUShort(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex + for (byte i = 0; i < syncedVarFields.Count; i++) { - //Write all indexes - writer.Write(totalDirtyCount); - writer.Write(networkId); //NetId - writer.Write(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex - for (byte i = 0; i < syncedVarFields.Count; i++) + //Writes all the indexes of the dirty syncvars. + if (syncedVarFields[i].Dirty == true) { - //Writes all the indexes of the dirty syncvars. - if (syncedVarFields[i].Dirty == true) + writer.WriteByte(i); //FieldIndex + switch (syncedVarFields[i].FieldType) { - writer.Write(i); //FieldIndex - switch (syncedVarFields[i].FieldType) - { - case FieldType.Bool: - writer.Write((bool)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Byte: - writer.Write((byte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Char: - writer.Write((char)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Double: - writer.Write((double)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Single: - writer.Write((float)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Int: - writer.Write((int)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Long: - writer.Write((long)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByte: - writer.Write((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Short: - writer.Write((short)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UInt: - writer.Write((uint)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULong: - writer.Write((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShort: - writer.Write((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.String: - writer.Write((string)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Vector3: - Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); - writer.Write(vector3.x); - writer.Write(vector3.y); - writer.Write(vector3.z); - break; - case FieldType.Vector2: - Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); - writer.Write(vector2.x); - writer.Write(vector2.y); - break; - case FieldType.Quaternion: - Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; - writer.Write(euler.x); - writer.Write(euler.y); - writer.Write(euler.z); - break; - case FieldType.ByteArray: - writer.Write((ushort)((byte[])syncedVarFields[i].FieldInfo.GetValue(this)).Length); - writer.Write((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; + case FieldType.Bool: + writer.WriteBool((bool)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Byte: + writer.WriteByte((byte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Double: + writer.WriteDouble((double)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Single: + writer.WriteFloat((float)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Int: + writer.WriteInt((int)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Long: + writer.WriteLong((long)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByte: + writer.WriteSByte((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Short: + writer.WriteShort((short)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UInt: + writer.WriteUInt((uint)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULong: + writer.WriteULong((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShort: + writer.WriteUShort((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.String: + writer.WriteString((string)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Vector3: + Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteFloat(vector3.x); + writer.WriteFloat(vector3.y); + writer.WriteFloat(vector3.z); + break; + case FieldType.Vector2: + Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteFloat(vector2.x); + writer.WriteFloat(vector2.y); + break; + case FieldType.Quaternion: + Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; + writer.WriteFloat(euler.x); + writer.WriteFloat(euler.y); + writer.WriteFloat(euler.z); + break; + case FieldType.ByteArray: + writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; - } - syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); - syncedVarFields[i].Dirty = false; } + syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); + syncedVarFields[i].Dirty = false; } } - InternalMessageHandler.Send("MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); + InternalMessageHandler.Send("MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", writer.Finalize()); } } else { //It's sync time. This is the target receivers packet. - using (MemoryStream stream = new MemoryStream()) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) + //Write all indexes + writer.WriteByte(totalDirtyCount); + writer.WriteUInt(networkId); //NetId + writer.WriteUShort(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex + for (byte i = 0; i < syncedVarFields.Count; i++) { - //Write all indexes - writer.Write(totalDirtyCount); - writer.Write(networkId); //NetId - writer.Write(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex - for (byte i = 0; i < syncedVarFields.Count; i++) + //Writes all the indexes of the dirty syncvars. + if (syncedVarFields[i].Dirty == true) { - //Writes all the indexes of the dirty syncvars. - if (syncedVarFields[i].Dirty == true) + writer.WriteByte(i); //FieldIndex + switch (syncedVarFields[i].FieldType) { - writer.Write(i); //FieldIndex - switch (syncedVarFields[i].FieldType) - { - case FieldType.Bool: - writer.Write((bool)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Byte: - writer.Write((byte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Char: - writer.Write((char)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Double: - writer.Write((double)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Single: - writer.Write((float)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Int: - writer.Write((int)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Long: - writer.Write((long)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByte: - writer.Write((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Short: - writer.Write((short)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UInt: - writer.Write((uint)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULong: - writer.Write((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShort: - writer.Write((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.String: - writer.Write((string)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Vector3: - Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); - writer.Write(vector3.x); - writer.Write(vector3.y); - writer.Write(vector3.z); - break; - case FieldType.Vector2: - Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); - writer.Write(vector2.x); - writer.Write(vector2.y); - break; - case FieldType.Quaternion: - Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; - writer.Write(euler.x); - writer.Write(euler.y); - writer.Write(euler.z); - break; - case FieldType.ByteArray: - writer.Write((ushort)((byte[])syncedVarFields[i].FieldInfo.GetValue(this)).Length); - writer.Write((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - - } + case FieldType.Bool: + writer.WriteBool((bool)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Byte: + writer.WriteByte((byte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Double: + writer.WriteDouble((double)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Single: + writer.WriteFloat((float)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Int: + writer.WriteInt((int)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Long: + writer.WriteLong((long)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByte: + writer.WriteSByte((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Short: + writer.WriteShort((short)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UInt: + writer.WriteUInt((uint)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULong: + writer.WriteULong((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShort: + writer.WriteUShort((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.String: + writer.WriteString((string)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Vector3: + Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteFloat(vector3.x); + writer.WriteFloat(vector3.y); + writer.WriteFloat(vector3.z); + break; + case FieldType.Vector2: + Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteFloat(vector2.x); + writer.WriteFloat(vector2.y); + break; + case FieldType.Quaternion: + Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; + writer.WriteFloat(euler.x); + writer.WriteFloat(euler.y); + writer.WriteFloat(euler.z); + break; + case FieldType.ByteArray: + writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; } } } - InternalMessageHandler.Send(ownerClientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray()); //Send only to target + InternalMessageHandler.Send(ownerClientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", writer.Finalize()); //Send only to target } if (nonTargetDirtyCount == 0) @@ -756,81 +721,75 @@ namespace MLAPI.MonoBehaviours.Core } //It's sync time. This is the NON target receivers packet. - using (MemoryStream stream = new MemoryStream()) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { //Write all indexes - writer.Write(nonTargetDirtyCount); - writer.Write(networkId); //NetId - writer.Write(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex + writer.WriteByte(nonTargetDirtyCount); + writer.WriteUInt(networkId); //NetId + writer.WriteUShort(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex for (byte i = 0; i < syncedVarFields.Count; i++) { //Writes all the indexes of the dirty syncvars. if (syncedVarFields[i].Dirty == true && !syncedVarFields[i].Target) { - writer.Write(i); //FieldIndex + writer.WriteByte(i); //FieldIndex switch (syncedVarFields[i].FieldType) { case FieldType.Bool: - writer.Write((bool)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteBool((bool)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Byte: - writer.Write((byte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Char: - writer.Write((char)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteByte((byte)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Double: - writer.Write((double)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteDouble((double)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Single: - writer.Write((float)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteFloat((float)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Int: - writer.Write((int)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteInt((int)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Long: - writer.Write((long)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteLong((long)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.SByte: - writer.Write((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteSByte((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Short: - writer.Write((short)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteShort((short)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.UInt: - writer.Write((uint)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteUInt((uint)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.ULong: - writer.Write((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteULong((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.UShort: - writer.Write((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteUShort((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.String: - writer.Write((string)syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteString((string)syncedVarFields[i].FieldInfo.GetValue(this)); break; case FieldType.Vector3: Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); - writer.Write(vector3.x); - writer.Write(vector3.y); - writer.Write(vector3.z); + writer.WriteFloat(vector3.x); + writer.WriteFloat(vector3.y); + writer.WriteFloat(vector3.z); break; case FieldType.Vector2: Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); - writer.Write(vector2.x); - writer.Write(vector2.y); + writer.WriteFloat(vector2.x); + writer.WriteFloat(vector2.y); break; case FieldType.Quaternion: Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; - writer.Write(euler.x); - writer.Write(euler.y); - writer.Write(euler.z); + writer.WriteFloat(euler.x); + writer.WriteFloat(euler.y); + writer.WriteFloat(euler.z); break; case FieldType.ByteArray: - writer.Write((ushort)((byte[])syncedVarFields[i].FieldInfo.GetValue(this)).Length); - writer.Write((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); + writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); break; } @@ -838,8 +797,8 @@ namespace MLAPI.MonoBehaviours.Core syncedVarFields[i].Dirty = false; } } - } - InternalMessageHandler.Send("MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", stream.ToArray(), ownerClientId); // Send to everyone except target. + + InternalMessageHandler.Send("MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", writer.Finalize(), ownerClientId); // Send to everyone except target. } } lastSyncTime = NetworkingManager.singleton.NetworkTime; @@ -866,12 +825,6 @@ namespace MLAPI.MonoBehaviours.Core else syncedVarFields[i].Dirty = false; //Up to date break; - case FieldType.Char: - if ((char)syncedVarFields[i].FieldInfo.GetValue(this) != (char)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; case FieldType.Double: if ((double)syncedVarFields[i].FieldInfo.GetValue(this) != (double)syncedVarFields[i].FieldValue) syncedVarFields[i].Dirty = true; //This fields value is out of sync! diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index d38d828..123a84a 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -2,7 +2,6 @@ using System; using System.Collections; using System.Collections.Generic; -using System.IO; using UnityEngine; using UnityEngine.Networking; using System.Linq; @@ -745,29 +744,17 @@ namespace MLAPI.MonoBehaviours.Core diffiePublic = clientDiffieHellman.GetPublicKey(); } - int sizeOfStream = 32; - if (NetworkConfig.ConnectionApproval) - sizeOfStream += 2 + NetworkConfig.ConnectionData.Length; - if (NetworkConfig.EnableEncryption) - sizeOfStream += 2 + diffiePublic.Length; - - using (MemoryStream writeStream = new MemoryStream(sizeOfStream)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(writeStream)) - { - writer.Write(NetworkConfig.GetConfig()); - if (NetworkConfig.EnableEncryption) - { - writer.Write((ushort)diffiePublic.Length); - writer.Write(diffiePublic); - } - if (NetworkConfig.ConnectionApproval) - { - writer.Write((ushort)NetworkConfig.ConnectionData.Length); - writer.Write(NetworkConfig.ConnectionData); - } - } - InternalMessageHandler.Send(netId.GetClientId(), "MLAPI_CONNECTION_REQUEST", "MLAPI_INTERNAL", writeStream.GetBuffer(), null, null, true); + writer.WriteByteArray(NetworkConfig.GetConfig(), true); + + if (NetworkConfig.EnableEncryption) + writer.WriteByteArray(diffiePublic); + + if (NetworkConfig.ConnectionApproval) + writer.WriteByteArray(NetworkConfig.ConnectionData); + + InternalMessageHandler.Send(netId.GetClientId(), "MLAPI_CONNECTION_REQUEST", "MLAPI_INTERNAL", writer.Finalize(), null, null, true); } } break; @@ -1061,32 +1048,25 @@ namespace MLAPI.MonoBehaviours.Core if (isServer) { - using (MemoryStream stream = new MemoryStream(4)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(clientId); - } - InternalMessageHandler.Send("MLAPI_CLIENT_DISCONNECT", "MLAPI_INTERNAL", stream.GetBuffer(), clientId); - } + writer.WriteUInt(clientId); + InternalMessageHandler.Send("MLAPI_CLIENT_DISCONNECT", "MLAPI_INTERNAL", writer.Finalize(), clientId); + } } } private void SyncTime() { - using (MemoryStream stream = new MemoryStream(8)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(NetworkTime); - int timestamp = NetworkTransport.GetNetworkTimestamp(); - writer.Write(timestamp); - } + writer.WriteFloat(NetworkTime); + int timestamp = NetworkTransport.GetNetworkTimestamp(); + writer.WriteInt(timestamp); + byte[] buffer = writer.Finalize(); foreach (KeyValuePair pair in connectedClients) - { - InternalMessageHandler.Send("MLAPI_TIME_SYNC", "MLAPI_TIME_SYNC", stream.GetBuffer()); - } + InternalMessageHandler.Send("MLAPI_TIME_SYNC", "MLAPI_TIME_SYNC", buffer); } } @@ -1134,86 +1114,57 @@ namespace MLAPI.MonoBehaviours.Core GameObject go = SpawnManager.SpawnPlayerObject(clientId, networkId, position, rotation); connectedClients[clientId].PlayerObject = go; } - int sizeOfStream = 17 + ((connectedClients.Count - 1) * 4); int amountOfObjectsToSend = SpawnManager.spawnedObjects.Values.Count(); - if (NetworkConfig.HandleObjectSpawning) + using (BitWriter writer = new BitWriter()) { - sizeOfStream += 4; - sizeOfStream += 38 * amountOfObjectsToSend; - } + writer.WriteUInt(clientId); + if (NetworkConfig.EnableSceneSwitching) + writer.WriteUInt(NetworkSceneManager.CurrentSceneIndex); - if (NetworkConfig.EnableEncryption) - { - sizeOfStream += 2 + publicKey.Length; - if (NetworkConfig.SignKeyExchange) + if (NetworkConfig.EnableEncryption) { - sizeOfStream += 2 + publicKeySignature.Length; + writer.WriteByteArray(publicKey); + if (NetworkConfig.SignKeyExchange) + writer.WriteByteArray(publicKeySignature); } - } - if (NetworkConfig.EnableSceneSwitching) - { - sizeOfStream += 4; - } + writer.WriteFloat(NetworkTime); + writer.WriteInt(NetworkTransport.GetNetworkTimestamp()); - using (MemoryStream writeStream = new MemoryStream(sizeOfStream)) - { - using (BinaryWriter writer = new BinaryWriter(writeStream)) + writer.WriteInt(connectedClients.Count - 1); + foreach (KeyValuePair item in connectedClients) { - writer.Write(clientId); - if(NetworkConfig.EnableSceneSwitching) + //Our own ID. Already added as the first one above + if (item.Key == clientId) + continue; + writer.WriteUInt(item.Key); //ClientId + } + if (NetworkConfig.HandleObjectSpawning) + { + writer.WriteInt(amountOfObjectsToSend); + + foreach (KeyValuePair pair in SpawnManager.spawnedObjects) { - writer.Write(NetworkSceneManager.CurrentSceneIndex); - } + writer.WriteBool(pair.Value.isPlayerObject); + writer.WriteUInt(pair.Value.NetworkId); + writer.WriteUInt(pair.Value.OwnerClientId); + writer.WriteInt(NetworkConfig.NetworkPrefabIds[pair.Value.NetworkedPrefabName]); + writer.WriteBool(pair.Value.gameObject.activeInHierarchy); + writer.WriteBool(pair.Value.sceneObject == null ? true : pair.Value.sceneObject.Value); - if (NetworkConfig.EnableEncryption) - { - writer.Write((ushort)publicKey.Length); - writer.Write(publicKey); - if (NetworkConfig.SignKeyExchange) - { - writer.Write((ushort)publicKeySignature.Length); - writer.Write(publicKeySignature); - } - } + writer.WriteFloat(pair.Value.transform.position.x); + writer.WriteFloat(pair.Value.transform.position.y); + writer.WriteFloat(pair.Value.transform.position.z); - writer.Write(NetworkTime); - writer.Write(NetworkTransport.GetNetworkTimestamp()); - - writer.Write(connectedClients.Count - 1); - foreach (KeyValuePair item in connectedClients) - { - //Our own ID. Already added as the first one above - if (item.Key == clientId) - continue; - writer.Write(item.Key); //ClientId - } - if (NetworkConfig.HandleObjectSpawning) - { - writer.Write(amountOfObjectsToSend); - - foreach (KeyValuePair pair in SpawnManager.spawnedObjects) - { - writer.Write(pair.Value.isPlayerObject); - writer.Write(pair.Value.NetworkId); - writer.Write(pair.Value.OwnerClientId); - writer.Write(NetworkConfig.NetworkPrefabIds[pair.Value.NetworkedPrefabName]); - writer.Write(pair.Value.gameObject.activeInHierarchy); - writer.Write(pair.Value.sceneObject == null ? true : pair.Value.sceneObject.Value); - - writer.Write(pair.Value.transform.position.x); - writer.Write(pair.Value.transform.position.y); - writer.Write(pair.Value.transform.position.z); - - writer.Write(pair.Value.transform.rotation.eulerAngles.x); - writer.Write(pair.Value.transform.rotation.eulerAngles.y); - writer.Write(pair.Value.transform.rotation.eulerAngles.z); - } + writer.WriteFloat(pair.Value.transform.rotation.eulerAngles.x); + writer.WriteFloat(pair.Value.transform.rotation.eulerAngles.y); + writer.WriteFloat(pair.Value.transform.rotation.eulerAngles.z); } } - InternalMessageHandler.Send(clientId, "MLAPI_CONNECTION_APPROVED", "MLAPI_INTERNAL", writeStream.GetBuffer(), null, null, true); + + InternalMessageHandler.Send(clientId, "MLAPI_CONNECTION_APPROVED", "MLAPI_INTERNAL", writer.Finalize(), null, null, true); if (OnClientConnectedCallback != null) OnClientConnectedCallback.Invoke(clientId); @@ -1221,37 +1172,30 @@ namespace MLAPI.MonoBehaviours.Core //Inform old clients of the new player - if(NetworkConfig.HandleObjectSpawning) - sizeOfStream = 38; - else - sizeOfStream = 4; - - using (MemoryStream stream = new MemoryStream(sizeOfStream)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) + if (NetworkConfig.HandleObjectSpawning) { - if (NetworkConfig.HandleObjectSpawning) - { - writer.Write(true); - writer.Write(connectedClients[clientId].PlayerObject.GetComponent().NetworkId); - writer.Write(clientId); - writer.Write(-1); - writer.Write(false); + writer.WriteBool(true); + writer.WriteUInt(connectedClients[clientId].PlayerObject.GetComponent().NetworkId); + writer.WriteUInt(clientId); + writer.WriteInt(-1); + writer.WriteBool(false); - writer.Write(connectedClients[clientId].PlayerObject.transform.position.x); - writer.Write(connectedClients[clientId].PlayerObject.transform.position.y); - writer.Write(connectedClients[clientId].PlayerObject.transform.position.z); + writer.WriteFloat(connectedClients[clientId].PlayerObject.transform.position.x); + writer.WriteFloat(connectedClients[clientId].PlayerObject.transform.position.y); + writer.WriteFloat(connectedClients[clientId].PlayerObject.transform.position.z); - writer.Write(connectedClients[clientId].PlayerObject.transform.rotation.eulerAngles.x); - writer.Write(connectedClients[clientId].PlayerObject.transform.rotation.eulerAngles.y); - writer.Write(connectedClients[clientId].PlayerObject.transform.rotation.eulerAngles.z); - } - else - { - writer.Write(clientId); - } + writer.WriteFloat(connectedClients[clientId].PlayerObject.transform.rotation.eulerAngles.x); + writer.WriteFloat(connectedClients[clientId].PlayerObject.transform.rotation.eulerAngles.y); + writer.WriteFloat(connectedClients[clientId].PlayerObject.transform.rotation.eulerAngles.z); } - InternalMessageHandler.Send("MLAPI_ADD_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer(), clientId); + else + { + writer.WriteUInt(clientId); + } + + InternalMessageHandler.Send("MLAPI_ADD_OBJECT", "MLAPI_INTERNAL", writer.Finalize(), clientId); } //Flush syncvars: foreach (KeyValuePair networkedObject in SpawnManager.spawnedObjects) diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs index f9b6e06..1c3aecd 100644 --- a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs @@ -1,8 +1,7 @@ -using System; -using System.IO; -using System.Security.Cryptography; +using System.Security.Cryptography; using MLAPI.Data; using MLAPI.MonoBehaviours.Core; +using MLAPI.NetworkingManagerComponents.Binary; using UnityEngine; using UnityEngine.Networking; @@ -12,133 +11,121 @@ namespace MLAPI.NetworkingManagerComponents.Core { internal static void HandleConnectionRequest(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - byte[] configHash = messageReader.ReadBytes(32); - if (!netManager.NetworkConfig.CompareConfig(configHash)) - { - Debug.LogWarning("MLAPI: NetworkConfiguration missmatch. The configuration between the server and client does not match."); - netManager.DisconnectClient(clientId); - return; - } - byte[] aesKey = new byte[0]; - if (netManager.NetworkConfig.EnableEncryption) - { - ushort diffiePublicSize = messageReader.ReadUInt16(); - byte[] diffiePublic = messageReader.ReadBytes(diffiePublicSize); - netManager.diffieHellmanPublicKeys.Add(clientId, diffiePublic); + BitReader reader = new BitReader(incommingData); - } - if (netManager.NetworkConfig.ConnectionApproval) - { - ushort bufferSize = messageReader.ReadUInt16(); - byte[] connectionBuffer = messageReader.ReadBytes(bufferSize); - netManager.ConnectionApprovalCallback(connectionBuffer, clientId, netManager.HandleApproval); - } - else - { - netManager.HandleApproval(clientId, true, Vector3.zero, Quaternion.identity); - } - } + byte[] configHash = reader.ReadByteArray(32); + if (!netManager.NetworkConfig.CompareConfig(configHash)) + { + Debug.LogWarning("MLAPI: NetworkConfiguration missmatch. The configuration between the server and client does not match."); + netManager.DisconnectClient(clientId); + return; + } + + if (netManager.NetworkConfig.EnableEncryption) + { + byte[] diffiePublic = reader.ReadByteArray(); + netManager.diffieHellmanPublicKeys.Add(clientId, diffiePublic); + + } + if (netManager.NetworkConfig.ConnectionApproval) + { + byte[] connectionBuffer = reader.ReadByteArray(); + netManager.ConnectionApprovalCallback(connectionBuffer, clientId, netManager.HandleApproval); + } + else + { + netManager.HandleApproval(clientId, true, Vector3.zero, Quaternion.identity); } } internal static void HandleConnectionApproved(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + BitReader reader = new BitReader(incommingData); + + netManager.myClientId = reader.ReadUInt(); + uint sceneIndex = 0; + if (netManager.NetworkConfig.EnableSceneSwitching) + sceneIndex = reader.ReadUInt(); + + if (netManager.NetworkConfig.EnableEncryption) { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + byte[] serverPublicKey = reader.ReadByteArray(); + netManager.clientAesKey = netManager.clientDiffieHellman.GetSharedSecret(serverPublicKey); + if (netManager.NetworkConfig.SignKeyExchange) { - netManager.myClientId = messageReader.ReadUInt32(); - uint sceneIndex = 0; - if (netManager.NetworkConfig.EnableSceneSwitching) + byte[] publicKeySignature = reader.ReadByteArray(); + using (RSACryptoServiceProvider rsa = new RSACryptoServiceProvider()) { - sceneIndex = messageReader.ReadUInt32(); - } - - if (netManager.NetworkConfig.EnableEncryption) - { - ushort keyLength = messageReader.ReadUInt16(); - byte[] serverPublicKey = messageReader.ReadBytes(keyLength); - netManager.clientAesKey = netManager.clientDiffieHellman.GetSharedSecret(serverPublicKey); - if (netManager.NetworkConfig.SignKeyExchange) + rsa.PersistKeyInCsp = false; + rsa.FromXmlString(netManager.NetworkConfig.RSAPublicKey); + if (!rsa.VerifyData(serverPublicKey, new SHA512CryptoServiceProvider(), publicKeySignature)) { - ushort signatureLength = messageReader.ReadUInt16(); - byte[] publicKeySignature = messageReader.ReadBytes(signatureLength); - using (RSACryptoServiceProvider rsa = new RSACryptoServiceProvider()) - { - rsa.PersistKeyInCsp = false; - rsa.FromXmlString(netManager.NetworkConfig.RSAPublicKey); - if (!rsa.VerifyData(serverPublicKey, new SHA512CryptoServiceProvider(), publicKeySignature)) - { - //Man in the middle. - Debug.LogWarning("MLAPI: Signature doesnt match for the key exchange public part. Disconnecting"); - netManager.StopClient(); - return; - } - } + //Man in the middle. + Debug.LogWarning("MLAPI: Signature doesnt match for the key exchange public part. Disconnecting"); + netManager.StopClient(); + return; } } - - float netTime = messageReader.ReadSingle(); - int remoteStamp = messageReader.ReadInt32(); - byte error; - NetId netId = new NetId(clientId); - int msDelay = NetworkTransport.GetRemoteDelayTimeMS(netId.HostId, netId.ConnectionId, remoteStamp, out error); - if ((NetworkError)error != NetworkError.Ok) - msDelay = 0; - netManager.networkTime = netTime + (msDelay / 1000f); - - netManager.connectedClients.Add(clientId, new NetworkedClient() { ClientId = clientId }); - int clientCount = messageReader.ReadInt32(); - for (int i = 0; i < clientCount; i++) - { - uint _clientId = messageReader.ReadUInt32(); - netManager.connectedClients.Add(_clientId, new NetworkedClient() { ClientId = _clientId }); - } - if (netManager.NetworkConfig.HandleObjectSpawning) - { - SpawnManager.DestroySceneObjects(); - int objectCount = messageReader.ReadInt32(); - for (int i = 0; i < objectCount; i++) - { - bool isPlayerObject = messageReader.ReadBoolean(); - uint networkId = messageReader.ReadUInt32(); - uint ownerId = messageReader.ReadUInt32(); - int prefabId = messageReader.ReadInt32(); - bool isActive = messageReader.ReadBoolean(); - bool sceneObject = messageReader.ReadBoolean(); - - float xPos = messageReader.ReadSingle(); - float yPos = messageReader.ReadSingle(); - float zPos = messageReader.ReadSingle(); - - float xRot = messageReader.ReadSingle(); - float yRot = messageReader.ReadSingle(); - float zRot = messageReader.ReadSingle(); - - if (isPlayerObject) - { - SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - } - else - { - GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, - new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - - go.GetComponent().sceneObject = sceneObject; - go.SetActive(isActive); - } - } - } - if (netManager.NetworkConfig.EnableSceneSwitching) - { - NetworkSceneManager.OnSceneSwitch(sceneIndex); - } } } + + float netTime = reader.ReadFloat(); + int remoteStamp = reader.ReadInt(); + byte error; + NetId netId = new NetId(clientId); + int msDelay = NetworkTransport.GetRemoteDelayTimeMS(netId.HostId, netId.ConnectionId, remoteStamp, out error); + if ((NetworkError)error != NetworkError.Ok) + msDelay = 0; + netManager.networkTime = netTime + (msDelay / 1000f); + + netManager.connectedClients.Add(clientId, new NetworkedClient() { ClientId = clientId }); + int clientCount = reader.ReadInt(); + for (int i = 0; i < clientCount; i++) + { + uint _clientId = reader.ReadUInt(); + netManager.connectedClients.Add(_clientId, new NetworkedClient() { ClientId = _clientId }); + } + if (netManager.NetworkConfig.HandleObjectSpawning) + { + SpawnManager.DestroySceneObjects(); + int objectCount = reader.ReadInt(); + for (int i = 0; i < objectCount; i++) + { + bool isPlayerObject = reader.ReadBool(); + uint networkId = reader.ReadUInt(); + uint ownerId = reader.ReadUInt(); + int prefabId = reader.ReadInt(); + bool isActive = reader.ReadBool(); + bool sceneObject = reader.ReadBool(); + + float xPos = reader.ReadFloat(); + float yPos = reader.ReadFloat(); + float zPos = reader.ReadFloat(); + + float xRot = reader.ReadFloat(); + float yRot = reader.ReadFloat(); + float zRot = reader.ReadFloat(); + + if (isPlayerObject) + { + SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + } + else + { + GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, + new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + + go.GetComponent().sceneObject = sceneObject; + go.SetActive(isActive); + } + } + } + + if (netManager.NetworkConfig.EnableSceneSwitching) + { + NetworkSceneManager.OnSceneSwitch(sceneIndex); + } + netManager._isClientConnected = true; if (netManager.OnClientConnectedCallback != null) netManager.OnClientConnectedCallback.Invoke(clientId); @@ -146,236 +133,201 @@ namespace MLAPI.NetworkingManagerComponents.Core internal static void HandleAddObject(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + BitReader reader = new BitReader(incommingData); + + if (netManager.NetworkConfig.HandleObjectSpawning) { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + bool isPlayerObject = reader.ReadBool(); + uint networkId = reader.ReadUInt(); + uint ownerId = reader.ReadUInt(); + int prefabId = reader.ReadInt(); + bool sceneObject = reader.ReadBool(); + + float xPos = reader.ReadFloat(); + float yPos = reader.ReadFloat(); + float zPos = reader.ReadFloat(); + + float xRot = reader.ReadFloat(); + float yRot = reader.ReadFloat(); + float zRot = reader.ReadFloat(); + + if (isPlayerObject) { - if (netManager.NetworkConfig.HandleObjectSpawning) - { - bool isPlayerObject = messageReader.ReadBoolean(); - uint networkId = messageReader.ReadUInt32(); - uint ownerId = messageReader.ReadUInt32(); - int prefabId = messageReader.ReadInt32(); - bool sceneObject = messageReader.ReadBoolean(); - - float xPos = messageReader.ReadSingle(); - float yPos = messageReader.ReadSingle(); - float zPos = messageReader.ReadSingle(); - - float xRot = messageReader.ReadSingle(); - float yRot = messageReader.ReadSingle(); - float zRot = messageReader.ReadSingle(); - - if (isPlayerObject) - { - netManager.connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); - SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - } - else - { - GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, - new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - go.GetComponent().sceneObject = sceneObject; - } - } - else - { - uint ownerId = messageReader.ReadUInt32(); - netManager.connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); - } + netManager.connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); + SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); } + else + { + GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, + new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + go.GetComponent().sceneObject = sceneObject; + } + } + else + { + uint ownerId = reader.ReadUInt(); + netManager.connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); } } internal static void HandleClientDisconnect(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - uint disconnectedClientId = messageReader.ReadUInt32(); - netManager.OnClientDisconnect(disconnectedClientId); - } - } + BitReader reader = new BitReader(incommingData); + + uint disconnectedClientId = reader.ReadUInt(); + netManager.OnClientDisconnect(disconnectedClientId); } internal static void HandleDestroyObject(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - uint netId = messageReader.ReadUInt32(); - SpawnManager.OnDestroyObject(netId, true); - } - } + BitReader reader = new BitReader(incommingData); + + uint netId = reader.ReadUInt(); + SpawnManager.OnDestroyObject(netId, true); } internal static void HandleSwitchScene(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - NetworkSceneManager.OnSceneSwitch(messageReader.ReadUInt32()); - } - } + BitReader reader = new BitReader(incommingData); + + NetworkSceneManager.OnSceneSwitch(reader.ReadUInt()); } internal static void HandleSpawnPoolObject(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - uint netId = messageReader.ReadUInt32(); + BitReader reader = new BitReader(incommingData); - float xPos = messageReader.ReadSingle(); - float yPos = messageReader.ReadSingle(); - float zPos = messageReader.ReadSingle(); + uint netId = reader.ReadUInt(); - float xRot = messageReader.ReadSingle(); - float yRot = messageReader.ReadSingle(); - float zRot = messageReader.ReadSingle(); + float xPos = reader.ReadFloat(); + float yPos = reader.ReadFloat(); + float zPos = reader.ReadFloat(); - SpawnManager.spawnedObjects[netId].transform.position = new Vector3(xPos, yPos, zPos); - SpawnManager.spawnedObjects[netId].transform.rotation = Quaternion.Euler(xRot, yRot, zRot); - SpawnManager.spawnedObjects[netId].gameObject.SetActive(true); - } - } + float xRot = reader.ReadFloat(); + float yRot = reader.ReadFloat(); + float zRot = reader.ReadFloat(); + + SpawnManager.spawnedObjects[netId].transform.position = new Vector3(xPos, yPos, zPos); + SpawnManager.spawnedObjects[netId].transform.rotation = Quaternion.Euler(xRot, yRot, zRot); + SpawnManager.spawnedObjects[netId].gameObject.SetActive(true); } internal static void HandleDestroyPoolObject(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - uint netId = messageReader.ReadUInt32(); - SpawnManager.spawnedObjects[netId].gameObject.SetActive(false); - } - } + BitReader reader = new BitReader(incommingData); + + uint netId = reader.ReadUInt(); + SpawnManager.spawnedObjects[netId].gameObject.SetActive(false); } internal static void HandleChangeOwner(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + BitReader reader = new BitReader(incommingData); + + uint netId = reader.ReadUInt(); + uint ownerClientId = reader.ReadUInt(); + if (SpawnManager.spawnedObjects[netId].OwnerClientId == netManager.MyClientId) { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - uint netId = messageReader.ReadUInt32(); - uint ownerClientId = messageReader.ReadUInt32(); - if (SpawnManager.spawnedObjects[netId].OwnerClientId == netManager.MyClientId) - { - //We are current owner. - SpawnManager.spawnedObjects[netId].InvokeBehaviourOnLostOwnership(); - } - if (ownerClientId == netManager.MyClientId) - { - //We are new owner. - SpawnManager.spawnedObjects[netId].InvokeBehaviourOnGainedOwnership(); - } - SpawnManager.spawnedObjects[netId].ownerClientId = ownerClientId; - } + //We are current owner. + SpawnManager.spawnedObjects[netId].InvokeBehaviourOnLostOwnership(); } + if (ownerClientId == netManager.MyClientId) + { + //We are new owner. + SpawnManager.spawnedObjects[netId].InvokeBehaviourOnGainedOwnership(); + } + SpawnManager.spawnedObjects[netId].ownerClientId = ownerClientId; } internal static void HandleSyncVarUpdate(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + BitReader reader = new BitReader(incommingData); + + byte dirtyCount = reader.ReadByte(); + uint netId = reader.ReadUInt(); + ushort orderIndex = reader.ReadUShort(); + if (dirtyCount > 0) { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + for (int i = 0; i < dirtyCount; i++) { - byte dirtyCount = messageReader.ReadByte(); - uint netId = messageReader.ReadUInt32(); - ushort orderIndex = messageReader.ReadUInt16(); - if (dirtyCount > 0) + byte fieldIndex = reader.ReadByte(); + if (!SpawnManager.spawnedObjects.ContainsKey(netId)) { - for (int i = 0; i < dirtyCount; i++) - { - byte fieldIndex = messageReader.ReadByte(); - if (!SpawnManager.spawnedObjects.ContainsKey(netId)) - { - Debug.LogWarning("MLAPI: Sync message recieved for a non existant object with id: " + netId); - return; + Debug.LogWarning("MLAPI: Sync message recieved for a non existant object with id: " + netId); + return; + } + else if (SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex) == null) + { + Debug.LogWarning("MLAPI: Sync message recieved for a non existant behaviour"); + return; + } + else if (fieldIndex > (SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedVarFields.Count - 1)) + { + Debug.LogWarning("MLAPI: Sync message recieved for field out of bounds"); + return; + } + FieldType type = SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedVarFields[fieldIndex].FieldType; + switch (type) + { + case FieldType.Bool: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadBool(), fieldIndex); + break; + case FieldType.Byte: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadByte(), fieldIndex); + break; + case FieldType.Double: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadDouble(), fieldIndex); + break; + case FieldType.Single: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadFloat(), fieldIndex); + break; + case FieldType.Int: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadInt(), fieldIndex); + break; + case FieldType.Long: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadLong(), fieldIndex); + break; + case FieldType.SByte: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadSByte(), fieldIndex); + break; + case FieldType.Short: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadShort(), fieldIndex); + break; + case FieldType.UInt: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadUInt(), fieldIndex); + break; + case FieldType.ULong: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadULong(), fieldIndex); + break; + case FieldType.UShort: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadUShort(), fieldIndex); + break; + case FieldType.String: + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(reader.ReadString(), fieldIndex); + break; + case FieldType.Vector3: + { //Cases aren't their own scope. Therefor we create a scope for them as they share the X,Y,Z local variables otherwise. + float x = reader.ReadFloat(); + float y = reader.ReadFloat(); + float z = reader.ReadFloat(); + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(new Vector3(x, y, z), fieldIndex); } - else if (SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex) == null) + break; + case FieldType.Vector2: { - Debug.LogWarning("MLAPI: Sync message recieved for a non existant behaviour"); - return; + float x = reader.ReadFloat(); + float y = reader.ReadFloat(); + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(new Vector2(x, y), fieldIndex); } - else if (fieldIndex > (SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedVarFields.Count - 1)) + break; + case FieldType.Quaternion: { - Debug.LogWarning("MLAPI: Sync message recieved for field out of bounds"); - return; + float x = reader.ReadFloat(); + float y = reader.ReadFloat(); + float z = reader.ReadFloat(); + SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(Quaternion.Euler(x, y, z), fieldIndex); } - FieldType type = SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).syncedVarFields[fieldIndex].FieldType; - switch (type) - { - case FieldType.Bool: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadBoolean(), fieldIndex); - break; - case FieldType.Byte: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadByte(), fieldIndex); - break; - case FieldType.Char: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadChar(), fieldIndex); - break; - case FieldType.Double: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadDouble(), fieldIndex); - break; - case FieldType.Single: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadSingle(), fieldIndex); - break; - case FieldType.Int: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadInt32(), fieldIndex); - break; - case FieldType.Long: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadInt64(), fieldIndex); - break; - case FieldType.SByte: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadSByte(), fieldIndex); - break; - case FieldType.Short: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadInt16(), fieldIndex); - break; - case FieldType.UInt: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadUInt32(), fieldIndex); - break; - case FieldType.ULong: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadUInt64(), fieldIndex); - break; - case FieldType.UShort: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadUInt16(), fieldIndex); - break; - case FieldType.String: - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(messageReader.ReadString(), fieldIndex); - break; - case FieldType.Vector3: - { //Cases aren't their own scope. Therefor we create a scope for them as they share the X,Y,Z local variables otherwise. - float x = messageReader.ReadSingle(); - float y = messageReader.ReadSingle(); - float z = messageReader.ReadSingle(); - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(new Vector3(x, y, z), fieldIndex); - } - break; - case FieldType.Vector2: - { - float x = messageReader.ReadSingle(); - float y = messageReader.ReadSingle(); - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(new Vector2(x, y), fieldIndex); - } - break; - case FieldType.Quaternion: - { - float x = messageReader.ReadSingle(); - float y = messageReader.ReadSingle(); - float z = messageReader.ReadSingle(); - SpawnManager.spawnedObjects[netId].GetBehaviourAtOrderIndex(orderIndex).OnSyncVarUpdate(Quaternion.Euler(x, y, z), fieldIndex); - } - break; - } - } + break; } } } @@ -383,41 +335,37 @@ namespace MLAPI.NetworkingManagerComponents.Core internal static void HandleAddObjects(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) + BitReader reader = new BitReader(incommingData); + + if (netManager.NetworkConfig.HandleObjectSpawning) { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) + ushort objectCount = reader.ReadUShort(); + for (int i = 0; i < objectCount; i++) { - if (netManager.NetworkConfig.HandleObjectSpawning) + bool isPlayerObject = reader.ReadBool(); + uint networkId = reader.ReadUInt(); + uint ownerId = reader.ReadUInt(); + int prefabId = reader.ReadInt(); + bool sceneObject = reader.ReadBool(); + + float xPos = reader.ReadFloat(); + float yPos = reader.ReadFloat(); + float zPos = reader.ReadFloat(); + + float xRot = reader.ReadFloat(); + float yRot = reader.ReadFloat(); + float zRot = reader.ReadFloat(); + + if (isPlayerObject) { - ushort objectCount = messageReader.ReadUInt16(); - for (int i = 0; i < objectCount; i++) - { - bool isPlayerObject = messageReader.ReadBoolean(); - uint networkId = messageReader.ReadUInt32(); - uint ownerId = messageReader.ReadUInt32(); - int prefabId = messageReader.ReadInt32(); - bool sceneObject = messageReader.ReadBoolean(); - - float xPos = messageReader.ReadSingle(); - float yPos = messageReader.ReadSingle(); - float zPos = messageReader.ReadSingle(); - - float xRot = messageReader.ReadSingle(); - float yRot = messageReader.ReadSingle(); - float zRot = messageReader.ReadSingle(); - - if (isPlayerObject) - { - netManager.connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); - SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - } - else - { - GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, - new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); - go.GetComponent().sceneObject = sceneObject; - } - } + netManager.connectedClients.Add(ownerId, new NetworkedClient() { ClientId = ownerId }); + SpawnManager.SpawnPlayerObject(ownerId, networkId, new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + } + else + { + GameObject go = SpawnManager.SpawnPrefabIndexClient(prefabId, networkId, ownerId, + new Vector3(xPos, yPos, zPos), Quaternion.Euler(xRot, yRot, zRot)); + go.GetComponent().sceneObject = sceneObject; } } } @@ -425,21 +373,17 @@ namespace MLAPI.NetworkingManagerComponents.Core internal static void HandleTimeSync(uint clientId, byte[] incommingData, int channelId) { - using (MemoryStream messageReadStream = new MemoryStream(incommingData)) - { - using (BinaryReader messageReader = new BinaryReader(messageReadStream)) - { - float netTime = messageReader.ReadSingle(); - int timestamp = messageReader.ReadInt32(); + BitReader reader = new BitReader(incommingData); - NetId netId = new NetId(clientId); - byte error; - int msDelay = NetworkTransport.GetRemoteDelayTimeMS(netId.HostId, netId.ConnectionId, timestamp, out error); - if ((NetworkError)error != NetworkError.Ok) - msDelay = 0; - netManager.networkTime = netTime + (msDelay / 1000f); - } - } - } + float netTime = reader.ReadFloat(); + int timestamp = reader.ReadInt(); + + NetId netId = new NetId(clientId); + byte error; + int msDelay = NetworkTransport.GetRemoteDelayTimeMS(netId.HostId, netId.ConnectionId, timestamp, out error); + if ((NetworkError)error != NetworkError.Ok) + msDelay = 0; + netManager.networkTime = netTime + (msDelay / 1000f); + } } } diff --git a/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs b/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs index a4df814..4015b41 100644 --- a/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs @@ -1,5 +1,6 @@ using MLAPI.Data; using MLAPI.MonoBehaviours.Core; +using MLAPI.NetworkingManagerComponents.Binary; using System.Collections.Generic; using System.IO; using UnityEngine; @@ -66,19 +67,19 @@ namespace MLAPI.NetworkingManagerComponents.Core return null; } GameObject go = Pools[PoolNamesToIndexes[poolName]].SpawnObject(position, rotation); - using (MemoryStream stream = new MemoryStream(28)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(go.GetComponent().NetworkId); - writer.Write(position.x); - writer.Write(position.y); - writer.Write(position.z); - writer.Write(rotation.eulerAngles.x); - writer.Write(rotation.eulerAngles.y); - writer.Write(rotation.eulerAngles.z); - } - InternalMessageHandler.Send("MLAPI_SPAWN_POOL_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); + writer.WriteUInt(go.GetComponent().NetworkId); + + writer.WriteFloat(position.x); + writer.WriteFloat(position.y); + writer.WriteFloat(position.z); + + writer.WriteFloat(rotation.eulerAngles.x); + writer.WriteFloat(rotation.eulerAngles.y); + writer.WriteFloat(rotation.eulerAngles.z); + + InternalMessageHandler.Send("MLAPI_SPAWN_POOL_OBJECT", "MLAPI_INTERNAL", writer.Finalize()); } return go; } @@ -95,13 +96,11 @@ namespace MLAPI.NetworkingManagerComponents.Core return; } netObject.gameObject.SetActive(false); - using (MemoryStream stream = new MemoryStream(4)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(netObject.NetworkId); - } - InternalMessageHandler.Send("MLAPI_DESTROY_POOL_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); + writer.WriteUInt(netObject.NetworkId); + + InternalMessageHandler.Send("MLAPI_DESTROY_POOL_OBJECT", "MLAPI_INTERNAL", writer.Finalize()); } } } diff --git a/MLAPI/NetworkingManagerComponents/Core/NetworkSceneManager.cs b/MLAPI/NetworkingManagerComponents/Core/NetworkSceneManager.cs index ea80aeb..75692f9 100644 --- a/MLAPI/NetworkingManagerComponents/Core/NetworkSceneManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/NetworkSceneManager.cs @@ -1,6 +1,6 @@ using MLAPI.MonoBehaviours.Core; +using MLAPI.NetworkingManagerComponents.Binary; using System.Collections.Generic; -using System.IO; using System.Linq; using UnityEngine; using UnityEngine.SceneManagement; @@ -58,13 +58,11 @@ namespace MLAPI.NetworkingManagerComponents.Core AsyncOperation sceneLoad = SceneManager.LoadSceneAsync(sceneName, LoadSceneMode.Additive); sceneLoad.completed += OnSceneLoaded; - using(MemoryStream stream = new MemoryStream(4)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(sceneNameToIndex[sceneName]); - } - InternalMessageHandler.Send("MLAPI_SWITCH_SCENE", "MLAPI_INTERNAL", stream.GetBuffer()); + writer.WriteUInt(sceneNameToIndex[sceneName]); + + InternalMessageHandler.Send("MLAPI_SWITCH_SCENE", "MLAPI_INTERNAL", writer.Finalize()); } } diff --git a/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs b/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs index 114d75b..f13dee4 100644 --- a/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs @@ -1,5 +1,6 @@ using MLAPI.Data; using MLAPI.MonoBehaviours.Core; +using MLAPI.NetworkingManagerComponents.Binary; using System; using System.Collections.Generic; using System.IO; @@ -38,14 +39,13 @@ namespace MLAPI.NetworkingManagerComponents.Core NetworkedObject netObject = SpawnManager.spawnedObjects[netId]; NetworkingManager.singleton.connectedClients[netObject.OwnerClientId].OwnedObjects.RemoveAll(x => x.NetworkId == netId); netObject.ownerClientId = new NetId(0, 0, false, true).GetClientId(); - using (MemoryStream stream = new MemoryStream(8)) + + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(netId); - writer.Write(netObject.ownerClientId); - } - InternalMessageHandler.Send("MLAPI_CHANGE_OWNER", "MLAPI_INTERNAL", stream.GetBuffer()); + writer.WriteUInt(netId); + writer.WriteUInt(netObject.ownerClientId); + + InternalMessageHandler.Send("MLAPI_CHANGE_OWNER", "MLAPI_INTERNAL", writer.Finalize()); } } @@ -55,14 +55,13 @@ namespace MLAPI.NetworkingManagerComponents.Core NetworkingManager.singleton.connectedClients[netObject.OwnerClientId].OwnedObjects.RemoveAll(x => x.NetworkId == netId); NetworkingManager.singleton.connectedClients[clientId].OwnedObjects.Add(netObject); netObject.ownerClientId = clientId; - using (MemoryStream stream = new MemoryStream(8)) + + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(netId); - writer.Write(clientId); - } - InternalMessageHandler.Send("MLAPI_CHANGE_OWNER", "MLAPI_INTERNAL", stream.GetBuffer()); + writer.WriteUInt(netId); + writer.WriteUInt(clientId); + + InternalMessageHandler.Send("MLAPI_CHANGE_OWNER", "MLAPI_INTERNAL", writer.Finalize()); } } @@ -109,29 +108,28 @@ namespace MLAPI.NetworkingManagerComponents.Core if (pair.Value.sceneObject == null || pair.Value.sceneObject == true) sceneObjectsToSync.Add(pair.Value); } - int sizeOfStream = 2 + (38 * sceneObjectsToSync.Count); //The two is the base size, it's a ushort containing the amount of objects. Each object takes 38 bytes - using (MemoryStream stream = new MemoryStream(sizeOfStream)) + + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) + writer.WriteUShort((ushort)sceneObjectsToSync.Count); + for (int i = 0; i < sceneObjectsToSync.Count; i++) { - writer.Write((ushort)sceneObjectsToSync.Count); - for (int i = 0; i < sceneObjectsToSync.Count; i++) - { - writer.Write(false); //isLocalPlayer - writer.Write(sceneObjectsToSync[i].NetworkId); - writer.Write(sceneObjectsToSync[i].OwnerClientId); - writer.Write(NetworkingManager.singleton.NetworkConfig.NetworkPrefabIds[sceneObjectsToSync[i].NetworkedPrefabName]); + writer.WriteBool(false); //isLocalPlayer + writer.WriteUInt(sceneObjectsToSync[i].NetworkId); + writer.WriteUInt(sceneObjectsToSync[i].OwnerClientId); + writer.WriteInt(NetworkingManager.singleton.NetworkConfig.NetworkPrefabIds[sceneObjectsToSync[i].NetworkedPrefabName]); + writer.WriteBool(sceneObjectsToSync[i].sceneObject == null ? true : sceneObjectsToSync[i].sceneObject.Value); - writer.Write(sceneObjectsToSync[i].transform.position.x); - writer.Write(sceneObjectsToSync[i].transform.position.y); - writer.Write(sceneObjectsToSync[i].transform.position.z); + writer.WriteFloat(sceneObjectsToSync[i].transform.position.x); + writer.WriteFloat(sceneObjectsToSync[i].transform.position.y); + writer.WriteFloat(sceneObjectsToSync[i].transform.position.z); - writer.Write(sceneObjectsToSync[i].transform.rotation.eulerAngles.x); - writer.Write(sceneObjectsToSync[i].transform.rotation.eulerAngles.y); - writer.Write(sceneObjectsToSync[i].transform.rotation.eulerAngles.z); - } + writer.WriteFloat(sceneObjectsToSync[i].transform.rotation.eulerAngles.x); + writer.WriteFloat(sceneObjectsToSync[i].transform.rotation.eulerAngles.y); + writer.WriteFloat(sceneObjectsToSync[i].transform.rotation.eulerAngles.z); } - InternalMessageHandler.Send("MLAPI_ADD_OBJECTS", "MLAPI_INTERNAL", stream.GetBuffer()); + + InternalMessageHandler.Send("MLAPI_ADD_OBJECTS", "MLAPI_INTERNAL", writer.Finalize()); } } @@ -195,25 +193,24 @@ namespace MLAPI.NetworkingManagerComponents.Core netObject.ownerClientId = clientOwnerId.Value; NetworkingManager.singleton.connectedClients[clientOwnerId.Value].OwnedObjects.Add(netObject); } - using (MemoryStream stream = new MemoryStream(37)) - { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(false); - writer.Write(netObject.NetworkId); - writer.Write(netObject.OwnerClientId); - writer.Write(netManager.NetworkConfig.NetworkPrefabIds[netObject.NetworkedPrefabName]); + using (BitWriter writer = new BitWriter()) + { + writer.WriteBool(false); + writer.WriteUInt(netObject.NetworkId); + writer.WriteUInt(netObject.OwnerClientId); + writer.WriteInt(netManager.NetworkConfig.NetworkPrefabIds[netObject.NetworkedPrefabName]); + writer.WriteBool(netObject.sceneObject == null ? true : netObject.sceneObject.Value); - writer.Write(netObject.transform.position.x); - writer.Write(netObject.transform.position.y); - writer.Write(netObject.transform.position.z); + writer.WriteFloat(netObject.transform.position.x); + writer.WriteFloat(netObject.transform.position.y); + writer.WriteFloat(netObject.transform.position.z); - writer.Write(netObject.transform.rotation.eulerAngles.x); - writer.Write(netObject.transform.rotation.eulerAngles.y); - writer.Write(netObject.transform.rotation.eulerAngles.z); - } + writer.WriteFloat(netObject.transform.rotation.eulerAngles.x); + writer.WriteFloat(netObject.transform.rotation.eulerAngles.y); + writer.WriteFloat(netObject.transform.rotation.eulerAngles.z); - InternalMessageHandler.Send("MLAPI_ADD_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); + + InternalMessageHandler.Send("MLAPI_ADD_OBJECT", "MLAPI_INTERNAL", writer.Finalize()); } } @@ -263,13 +260,11 @@ namespace MLAPI.NetworkingManagerComponents.Core releasedNetworkObjectIds.Push(networkId); if (spawnedObjects[networkId] != null) { - using (MemoryStream stream = new MemoryStream(4)) + using (BitWriter writer = new BitWriter()) { - using (BinaryWriter writer = new BinaryWriter(stream)) - { - writer.Write(networkId); - } - InternalMessageHandler.Send("MLAPI_DESTROY_OBJECT", "MLAPI_INTERNAL", stream.GetBuffer()); + writer.WriteUInt(networkId); + + InternalMessageHandler.Send("MLAPI_DESTROY_OBJECT", "MLAPI_INTERNAL", writer.Finalize()); } } } From cfd2ab51a49c762d1218faa3230b1f9ea8d1e87e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Tue, 17 Apr 2018 23:41:21 +0200 Subject: [PATCH 26/47] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 0c25283..e1450ad 100644 --- a/README.md +++ b/README.md @@ -32,12 +32,11 @@ There is also a autogenerated Sandcastle [API reference](https://twotenpvp.githu * Synced Vars \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/SyncedVars)\] * Targeted Synced Vars \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/SyncedVars#target)\] * Encryption \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/Message-Encryption)\] +* Super efficient BitWriter & BitReader \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/BitWriter-&-BitReader)\] ## Planned features * Area of interest -* BinaryWriter & BinaryReader replacement -* Message compression ## Example [Example project](https://github.com/TwoTenPvP/MLAPI-Examples) From ae14871518dcdcebf33b2b575317cc895f71ae4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Wed, 18 Apr 2018 11:42:03 +0200 Subject: [PATCH 27/47] Namespace & comment cleanup --- MLAPI/Data/Channel.cs | 3 --- MLAPI/Data/NetworkConfig.cs | 7 +------ MLAPI/Data/SyncedVarField.cs | 6 +----- MLAPI/GlobalSuppressions.cs | 9 +++++++++ .../Binary/BinaryHelpers.cs | 7 +------ .../Binary/BitReader.cs | 2 -- .../Binary/BitWriter.cs | 14 +------------- .../Core/InternalMessageHandler.cs | 3 +-- .../Core/NetworkPoolManager.cs | 1 - .../Core/SpawnManager.cs | 2 -- 10 files changed, 14 insertions(+), 40 deletions(-) diff --git a/MLAPI/Data/Channel.cs b/MLAPI/Data/Channel.cs index 18997fb..dcc92cd 100644 --- a/MLAPI/Data/Channel.cs +++ b/MLAPI/Data/Channel.cs @@ -1,7 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; using UnityEngine.Networking; namespace MLAPI.Data diff --git a/MLAPI/Data/NetworkConfig.cs b/MLAPI/Data/NetworkConfig.cs index 5f8c9f1..dd4d22c 100644 --- a/MLAPI/Data/NetworkConfig.cs +++ b/MLAPI/Data/NetworkConfig.cs @@ -1,13 +1,8 @@ -using MLAPI.MonoBehaviours.Core; -using MLAPI.NetworkingManagerComponents.Binary; +using MLAPI.NetworkingManagerComponents.Binary; using System; using System.Collections.Generic; -using System.IO; -using System.Linq; using System.Security.Cryptography; -using System.Text; using UnityEngine; -using UnityEngine.Networking; namespace MLAPI.Data { diff --git a/MLAPI/Data/SyncedVarField.cs b/MLAPI/Data/SyncedVarField.cs index 1d662a1..d2c132e 100644 --- a/MLAPI/Data/SyncedVarField.cs +++ b/MLAPI/Data/SyncedVarField.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Reflection; -using System.Text; +using System.Reflection; namespace MLAPI.Data { diff --git a/MLAPI/GlobalSuppressions.cs b/MLAPI/GlobalSuppressions.cs index 2b128de..71ac213 100644 --- a/MLAPI/GlobalSuppressions.cs +++ b/MLAPI/GlobalSuppressions.cs @@ -18,3 +18,12 @@ [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.MonoBehaviours.Core.NetworkingManager.Send(System.String,System.String,System.Byte[],System.UInt32,System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.MonoBehaviours.Core.NetworkingManager.Send(System.String,System.String,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.MonoBehaviours.Core.NetworkingManager.Send(System.UInt32[],System.String,System.String,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] + +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.MonoBehaviours.Core.NetworkingManager.HandleApproval(System.UInt32,System.Boolean,UnityEngine.Vector3,UnityEngine.Quaternion)")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.HandleConnectionApproved(System.UInt32,System.Byte[],System.Int32)")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.HandleTimeSync(System.UInt32,System.Byte[],System.Int32)")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.PassthroughSend(System.UInt32,System.UInt32,System.UInt16,System.Int32,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.Send(System.Collections.Generic.List{System.UInt32},System.String,System.String,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.Send(System.String,System.String,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.Send(System.String,System.String,System.Byte[],System.UInt32,System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] +[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0018:Inline variable declaration", Justification = "Not supported in Unity Mono version", Scope = "member", Target = "~M:MLAPI.NetworkingManagerComponents.Core.InternalMessageHandler.Send(System.UInt32[],System.String,System.String,System.Byte[],System.Nullable{System.UInt32},System.Nullable{System.UInt16})")] diff --git a/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs b/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs index f9de861..eda5881 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace MLAPI.NetworkingManagerComponents.Binary +namespace MLAPI.NetworkingManagerComponents.Binary { public static class BinaryHelpers { diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs index f76dedb..1cc3fea 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs @@ -97,8 +97,6 @@ namespace MLAPI.NetworkingManagerComponents.Binary lock(result_holder) lock (type_holder) { - //for (int i = 0; i < size; ++i) - // holder.SetValue(ReadByte(), i); if (size == 4) result_holder.SetValue(BinaryHelpers.SwapEndian(ReadUInt()), 0); else result_holder.SetValue(BinaryHelpers.SwapEndian(ReadULong()), 0); Buffer.BlockCopy(result_holder, 0, type_holder, 0, size); diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index 48dc23a..77bba00 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -218,17 +218,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary } else { - //bool signed = IsSigned(t.GetType()); ulong value; - /*if (signed) - { - Type t1 = t.GetType(); - if (t1 == typeof(sbyte)) value = (byte)ZigZagEncode(t as sbyte? ?? 0, 1); - else if (t1 == typeof(short)) value = (ushort)ZigZagEncode(t as short? ?? 0, 2); - else if (t1 == typeof(int)) value = (uint)ZigZagEncode(t as int? ?? 0, 4); - else /*if (t1 == typeof(long)) value = (ulong)ZigZagEncode(t as long? ?? 0, 8); - } - else*/ if (t is byte) { WriteByte(writeTo, t as byte? ?? 0, bitOffset, isAligned); @@ -237,7 +227,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary } else if (t is ushort) value = t as ushort? ?? 0; else if (t is uint) value = t as uint? ?? 0; - else /*if (t is ulong)*/ value = t as ulong? ?? 0; + else value = t as ulong? ?? 0; if (value <= 240) WriteByte(writeTo, (byte)value, bitOffset, isAligned); else if (value <= 2287) @@ -324,8 +314,6 @@ namespace MLAPI.NetworkingManagerComponents.Binary else if (t is bool || t is decimal) count += ba; else count += BytesToRead(t) * 8; } - //else - // Debug.LogWarning("MLAPI: The type \"" + b.GetType() + "\" is not supported by the Binary Serializer. It will be ignored"); return count; } diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs index adff8dc..a7de38b 100644 --- a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.cs @@ -1,5 +1,4 @@ -using System; -using MLAPI.MonoBehaviours.Core; +using MLAPI.MonoBehaviours.Core; namespace MLAPI.NetworkingManagerComponents.Core { diff --git a/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs b/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs index 4015b41..4e830f7 100644 --- a/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/NetworkPoolManager.cs @@ -2,7 +2,6 @@ using MLAPI.MonoBehaviours.Core; using MLAPI.NetworkingManagerComponents.Binary; using System.Collections.Generic; -using System.IO; using UnityEngine; namespace MLAPI.NetworkingManagerComponents.Core diff --git a/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs b/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs index f13dee4..1f182fb 100644 --- a/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs +++ b/MLAPI/NetworkingManagerComponents/Core/SpawnManager.cs @@ -1,9 +1,7 @@ using MLAPI.Data; using MLAPI.MonoBehaviours.Core; using MLAPI.NetworkingManagerComponents.Binary; -using System; using System.Collections.Generic; -using System.IO; using UnityEngine; namespace MLAPI.NetworkingManagerComponents.Core From e342afe3ffbe3134c4eb66b881779d5aa21243f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Wed, 18 Apr 2018 11:43:33 +0200 Subject: [PATCH 28/47] Made PushArray private in BitWriter --- MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index 77bba00..081fd41 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -105,7 +105,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary public void WriteIntArray(int[] i, bool known = false) => PushArray(i, known); public void WriteLongArray(long[] l, bool known = false) => PushArray(l, known); - public void PushArray(T[] t, bool knownSize = false) + private void PushArray(T[] t, bool knownSize = false) { if (!knownSize) Push((uint)t.Length); bool signed = IsSigned(t.GetType().GetElementType()); From c13f3cd64d07b1319006d8766a92306646d26034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Wed, 18 Apr 2018 11:49:08 +0200 Subject: [PATCH 29/47] Supressed XML comments for Writer & Readere --- .../Binary/BinaryHelpers.cs | 4 +++- .../Binary/BitReader.cs | 4 +++- .../Binary/BitWriter.cs | 17 ++++++++++++++++- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs b/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs index eda5881..aba27d3 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BinaryHelpers.cs @@ -1,4 +1,5 @@ -namespace MLAPI.NetworkingManagerComponents.Binary +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member +namespace MLAPI.NetworkingManagerComponents.Binary { public static class BinaryHelpers { @@ -15,3 +16,4 @@ ((value << 8) & (0xFFUL << 32)) ; } } +#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs index 1cc3fea..02beb75 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs @@ -1,4 +1,5 @@ -using System; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member +using System; using System.Runtime.InteropServices; using System.Text; @@ -107,3 +108,4 @@ namespace MLAPI.NetworkingManagerComponents.Binary private static long ZigZagDecode(ulong d, int bytes) => (long)(((d << (bytes * 8 - 1)) & 1) | (d >> 1)); } } +#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index 081fd41..a0167c4 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -1,4 +1,5 @@ -using System; +#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member +using System; using System.Collections.Generic; using System.Reflection; using System.Runtime.InteropServices; @@ -113,6 +114,10 @@ namespace MLAPI.NetworkingManagerComponents.Binary foreach (T t1 in t) Push(signed ? (object)ZigZagEncode(t1 as long? ?? t1 as int? ?? t1 as short? ?? t1 as sbyte? ?? 0, size) : (object)t1); } + /// + /// Serializes data, allocates an array and returns it + /// + /// Allocated array with written data public byte[] Finalize() { long bitCount = 0; @@ -133,6 +138,11 @@ namespace MLAPI.NetworkingManagerComponents.Binary } //The ref is not needed. It's purley there to indicate that it's treated as a reference inside the method. + /// + /// Writes data to the given buffer + /// + /// + /// The amount of bytes written public long Finalize(ref byte[] buffer) { if(buffer == null) @@ -161,6 +171,10 @@ namespace MLAPI.NetworkingManagerComponents.Binary return (bitCount / 8) + (bitCount % 8 == 0 ? 0 : 1); } + /// + /// Gets the size in bytes if you were to serialize now + /// + /// The size in bytes public long GetFinalizeSize() { long bitCount = 0; @@ -391,3 +405,4 @@ namespace MLAPI.NetworkingManagerComponents.Binary } } } +#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member From 76e720d7e9c067fd55c8ffda4ea3b88fc2e9eea0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Wed, 18 Apr 2018 11:51:58 +0200 Subject: [PATCH 30/47] Updated API reference to v1.0.1 --- docs/WebKI.xml | 125 +++++++++- docs/WebTOC.xml | 227 ++++++++++++------ docs/fti/FTI_100.json | 2 +- docs/fti/FTI_101.json | 2 +- docs/fti/FTI_102.json | 2 +- docs/fti/FTI_103.json | 2 +- docs/fti/FTI_104.json | 2 +- docs/fti/FTI_105.json | 2 +- docs/fti/FTI_107.json | 2 +- docs/fti/FTI_108.json | 2 +- docs/fti/FTI_109.json | 2 +- docs/fti/FTI_110.json | 2 +- docs/fti/FTI_111.json | 2 +- docs/fti/FTI_112.json | 2 +- docs/fti/FTI_113.json | 2 +- docs/fti/FTI_114.json | 2 +- docs/fti/FTI_115.json | 2 +- docs/fti/FTI_116.json | 2 +- docs/fti/FTI_117.json | 2 +- docs/fti/FTI_118.json | 2 +- docs/fti/FTI_119.json | 2 +- docs/fti/FTI_120.json | 2 +- docs/fti/FTI_97.json | 2 +- docs/fti/FTI_98.json | 2 +- docs/fti/FTI_99.json | 2 +- docs/fti/FTI_Files.json | 2 +- .../F_MLAPI_Attributes_SyncedVar_hook.htm | 2 +- .../F_MLAPI_Attributes_SyncedVar_target.htm | 21 ++ .../Fields_T_MLAPI_Attributes_SyncedVar.htm | 4 +- ...MLAPI_Data_NetworkConfig_CompareConfig.htm | 2 +- .../M_MLAPI_Data_NetworkConfig_GetConfig.htm | 2 +- .../html/M_MLAPI_Data_NetworkConfig__ctor.htm | 2 +- ...rkedBehaviour_DeregisterMessageHandler.htm | 2 +- ..._NetworkedBehaviour_GetNetworkedObject.htm | 2 +- ...s_Core_NetworkedBehaviour_NetworkStart.htm | 2 +- ...e_NetworkedBehaviour_OnGainedOwnership.htm | 2 +- ...ore_NetworkedBehaviour_OnLostOwnership.htm | 2 +- ...workedBehaviour_RegisterMessageHandler.htm | 2 +- ...s_Core_NetworkedBehaviour_SendToClient.htm | 2 +- ..._NetworkedBehaviour_SendToClientTarget.htm | 2 +- ...tworkedBehaviour_SendToClientTarget__1.htm | 2 +- ...ore_NetworkedBehaviour_SendToClient__1.htm | 2 +- ..._Core_NetworkedBehaviour_SendToClients.htm | 2 +- ...NetworkedBehaviour_SendToClientsTarget.htm | 2 +- ...tworkedBehaviour_SendToClientsTarget_1.htm | 2 +- ...tworkedBehaviour_SendToClientsTarget_2.htm | 2 +- ...workedBehaviour_SendToClientsTarget__1.htm | 2 +- ...rkedBehaviour_SendToClientsTarget__1_1.htm | 2 +- ...rkedBehaviour_SendToClientsTarget__1_2.htm | 2 +- ...ore_NetworkedBehaviour_SendToClients_1.htm | 2 +- ...ore_NetworkedBehaviour_SendToClients_2.htm | 2 +- ...re_NetworkedBehaviour_SendToClients__1.htm | 2 +- ..._NetworkedBehaviour_SendToClients__1_1.htm | 2 +- ..._NetworkedBehaviour_SendToClients__1_2.htm | 2 +- ...e_NetworkedBehaviour_SendToLocalClient.htm | 2 +- ...orkedBehaviour_SendToLocalClientTarget.htm | 2 +- ...edBehaviour_SendToLocalClientTarget__1.htm | 2 +- ...etworkedBehaviour_SendToLocalClient__1.htm | 2 +- ...tworkedBehaviour_SendToNonLocalClients.htm | 2 +- ...dBehaviour_SendToNonLocalClientsTarget.htm | 2 +- ...haviour_SendToNonLocalClientsTarget__1.htm | 2 +- ...rkedBehaviour_SendToNonLocalClients__1.htm | 2 +- ...s_Core_NetworkedBehaviour_SendToServer.htm | 2 +- ..._NetworkedBehaviour_SendToServerTarget.htm | 2 +- ...tworkedBehaviour_SendToServerTarget__1.htm | 2 +- ...ore_NetworkedBehaviour_SendToServer__1.htm | 2 +- ...haviours_Core_NetworkedBehaviour__ctor.htm | 2 +- ...urs_Core_NetworkingManager_StartClient.htm | 2 +- ...NetworkingManager_StartClientWebsocket.htm | 2 +- ...iours_Core_NetworkingManager_StartHost.htm | 2 +- ...urs_Core_NetworkingManager_StartServer.htm | 2 +- ...ours_Core_NetworkingManager_StopClient.htm | 2 +- ...viours_Core_NetworkingManager_StopHost.htm | 2 +- ...ours_Core_NetworkingManager_StopServer.htm | 2 +- ...onents_Binary_BinaryHelpers_SwapEndian.htm | 21 ++ ...ents_Binary_BinaryHelpers_SwapEndian_1.htm | 21 ++ ...erComponents_Binary_BitReader_ReadBool.htm | 19 ++ ...erComponents_Binary_BitReader_ReadByte.htm | 19 ++ ...ponents_Binary_BitReader_ReadByteArray.htm | 21 ++ ...Components_Binary_BitReader_ReadDouble.htm | 19 ++ ...nents_Binary_BitReader_ReadDoubleArray.htm | 21 ++ ...rComponents_Binary_BitReader_ReadFloat.htm | 19 ++ ...onents_Binary_BitReader_ReadFloatArray.htm | 21 ++ ...gerComponents_Binary_BitReader_ReadInt.htm | 19 ++ ...mponents_Binary_BitReader_ReadIntArray.htm | 21 ++ ...erComponents_Binary_BitReader_ReadLong.htm | 19 ++ ...ponents_Binary_BitReader_ReadLongArray.htm | 21 ++ ...rComponents_Binary_BitReader_ReadSByte.htm | 19 ++ ...onents_Binary_BitReader_ReadSByteArray.htm | 21 ++ ...rComponents_Binary_BitReader_ReadShort.htm | 19 ++ ...onents_Binary_BitReader_ReadShortArray.htm | 21 ++ ...Components_Binary_BitReader_ReadString.htm | 19 ++ ...erComponents_Binary_BitReader_ReadUInt.htm | 19 ++ ...ponents_Binary_BitReader_ReadUIntArray.htm | 21 ++ ...rComponents_Binary_BitReader_ReadULong.htm | 19 ++ ...onents_Binary_BitReader_ReadULongArray.htm | 21 ++ ...Components_Binary_BitReader_ReadUShort.htm | 19 ++ ...nents_Binary_BitReader_ReadUShortArray.htm | 21 ++ ...Components_Binary_BitReader_SkipPadded.htm | 19 ++ ...nagerComponents_Binary_BitReader__ctor.htm | 21 ++ ...gerComponents_Binary_BitWriter_Dispose.htm | 19 ++ ...erComponents_Binary_BitWriter_Finalize.htm | 21 ++ ...Components_Binary_BitWriter_Finalize_1.htm | 23 ++ ...nents_Binary_BitWriter_GetFinalizeSize.htm | 21 ++ ...onents_Binary_BitWriter_WriteAlignBits.htm | 19 ++ ...rComponents_Binary_BitWriter_WriteBool.htm | 21 ++ ...rComponents_Binary_BitWriter_WriteByte.htm | 21 ++ ...onents_Binary_BitWriter_WriteByteArray.htm | 22 ++ ...omponents_Binary_BitWriter_WriteDouble.htm | 21 ++ ...ents_Binary_BitWriter_WriteDoubleArray.htm | 22 ++ ...Components_Binary_BitWriter_WriteFloat.htm | 21 ++ ...nents_Binary_BitWriter_WriteFloatArray.htm | 22 ++ ...erComponents_Binary_BitWriter_WriteInt.htm | 21 ++ ...ponents_Binary_BitWriter_WriteIntArray.htm | 22 ++ ...rComponents_Binary_BitWriter_WriteLong.htm | 21 ++ ...onents_Binary_BitWriter_WriteLongArray.htm | 22 ++ ...Components_Binary_BitWriter_WriteSByte.htm | 21 ++ ...nents_Binary_BitWriter_WriteSByteArray.htm | 22 ++ ...Components_Binary_BitWriter_WriteShort.htm | 21 ++ ...nents_Binary_BitWriter_WriteShortArray.htm | 22 ++ ...omponents_Binary_BitWriter_WriteString.htm | 21 ++ ...rComponents_Binary_BitWriter_WriteUInt.htm | 21 ++ ...onents_Binary_BitWriter_WriteUIntArray.htm | 22 ++ ...Components_Binary_BitWriter_WriteULong.htm | 21 ++ ...nents_Binary_BitWriter_WriteULongArray.htm | 22 ++ ...omponents_Binary_BitWriter_WriteUShort.htm | 21 ++ ...ents_Binary_BitWriter_WriteUShortArray.htm | 22 ++ ...nagerComponents_Binary_BitWriter__ctor.htm | 21 ++ ...ManagerComponents_Binary_BinaryHelpers.htm | 3 + ...kingManagerComponents_Binary_BitReader.htm | 3 + ...kingManagerComponents_Binary_BitWriter.htm | 9 + ...API_NetworkingManagerComponents_Binary.htm | 6 +- ...onents_Binary_BinaryHelpers_SwapEndian.htm | 3 + ...erComponents_Binary_BitWriter_Finalize.htm | 7 + ...iours_Core_NetworkedBehaviour_isClient.htm | 2 +- ...aviours_Core_NetworkedBehaviour_isHost.htm | 2 +- ..._Core_NetworkedBehaviour_isLocalPlayer.htm | 2 +- ...viours_Core_NetworkedBehaviour_isOwner.htm | 2 +- ...iours_Core_NetworkedBehaviour_isServer.htm | 2 +- ...ours_Core_NetworkedBehaviour_networkId.htm | 2 +- ...ore_NetworkedBehaviour_networkedObject.htm | 2 +- ..._Core_NetworkedBehaviour_ownerClientId.htm | 2 +- docs/html/T_MLAPI_Attributes_SyncedVar.htm | 2 + ...ManagerComponents_Binary_BinaryHelpers.htm | 21 ++ ...kingManagerComponents_Binary_BitReader.htm | 23 ++ ...kingManagerComponents_Binary_BitWriter.htm | 31 +++ .../Fields_T_MLAPI_Attributes_SyncedVar.xml | 2 +- ...ManagerComponents_Binary_BinaryHelpers.xml | 1 + ...kingManagerComponents_Binary_BitReader.xml | 1 + ...kingManagerComponents_Binary_BitWriter.xml | 1 + ...API_NetworkingManagerComponents_Binary.xml | 2 +- ...onents_Binary_BinaryHelpers_SwapEndian.xml | 1 + ...erComponents_Binary_BitWriter_Finalize.xml | 1 + ...ManagerComponents_Binary_BinaryHelpers.xml | 1 + ...kingManagerComponents_Binary_BitReader.xml | 1 + ...kingManagerComponents_Binary_BitWriter.xml | 1 + 156 files changed, 1605 insertions(+), 164 deletions(-) create mode 100644 docs/html/F_MLAPI_Attributes_SyncedVar_target.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian_1.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadBool.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByte.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByteArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDouble.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDoubleArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloat.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloatArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadInt.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadIntArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLong.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLongArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByte.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByteArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShort.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShortArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadString.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUInt.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUIntArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULong.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULongArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShort.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShortArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_SkipPadded.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader__ctor.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Dispose.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize_1.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_GetFinalizeSize.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteAlignBits.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteBool.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByte.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByteArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDouble.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDoubleArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloat.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloatArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteInt.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteIntArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLong.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLongArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByte.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByteArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShort.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShortArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteString.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUInt.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUIntArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULong.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULongArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShort.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShortArray.htm create mode 100644 docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter__ctor.htm create mode 100644 docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm create mode 100644 docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm create mode 100644 docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm create mode 100644 docs/html/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm create mode 100644 docs/html/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm create mode 100644 docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm create mode 100644 docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm create mode 100644 docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm create mode 100644 docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.xml create mode 100644 docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.xml create mode 100644 docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.xml create mode 100644 docs/toc/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.xml create mode 100644 docs/toc/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.xml create mode 100644 docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.xml create mode 100644 docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.xml create mode 100644 docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.xml diff --git a/docs/WebKI.xml b/docs/WebKI.xml index cd90b2e..951fbb6 100644 --- a/docs/WebKI.xml +++ b/docs/WebKI.xml @@ -5,6 +5,11 @@ + + + + + @@ -21,6 +26,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -58,6 +124,7 @@ + @@ -73,9 +140,11 @@ + + @@ -170,7 +239,10 @@ + + + @@ -371,8 +443,8 @@ - + @@ -430,8 +502,8 @@ - + @@ -450,6 +522,28 @@ + + + + + + + + + + + + + + + + + + + + + + @@ -482,6 +576,7 @@ + @@ -493,6 +588,7 @@ + @@ -503,7 +599,9 @@ + + @@ -527,4 +625,27 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/WebTOC.xml b/docs/WebTOC.xml index 70e2935..41b8588 100644 --- a/docs/WebTOC.xml +++ b/docs/WebTOC.xml @@ -1,71 +1,72 @@  - - + + - + - + + - - + + - + - + - + - - + + - + - + - + - + - + - + - + @@ -94,38 +95,38 @@ - + - + - + - + - + - + - - + + - + @@ -135,18 +136,18 @@ - + - + - + @@ -154,7 +155,7 @@ - + @@ -162,42 +163,42 @@ - + - + - + - + - + - + - + - + - + - + @@ -207,19 +208,19 @@ - + - + - + - + @@ -229,7 +230,7 @@ - + @@ -238,7 +239,7 @@ - + @@ -249,32 +250,32 @@ - + - + - - + + - + - + - + - + @@ -285,13 +286,13 @@ - + - + - + @@ -299,13 +300,13 @@ - + - + - + @@ -318,16 +319,86 @@ - - - + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -337,35 +408,35 @@ - - - + + + - - + + - - + + - - + + - - - + + + diff --git a/docs/fti/FTI_100.json b/docs/fti/FTI_100.json index f070af4..575612a 100644 --- a/docs/fti/FTI_100.json +++ b/docs/fti/FTI_100.json @@ -1 +1 @@ -{"dictionary":[14417921,17563651,17760257],"duplicate":[16121857],"determines":[5963777,7340033,7405569,8388609,12910594,16777219],"decide":[262145,2621441,17235969],"data":[196609,262146,327681,393218,458753,524289,589825,983042,1114114,1179650,1245186,1310722,1376258,1441794,1507331,1572866,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621443,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3604482,3670018,3735554,3801090,3866626,3997698,5505025,5963777,6094849,6356993,6553602,6684673,6881282,7012353,7208963,7340034,7405572,7471105,7602180,7667714,7733250,7798786,7864322,7995394,8060930,8192002,8257538,8388612,8519683,8650756,8781826,8978435,9043971,9306115,9502723,9633795,9764867,10158083,10289155,11075587,11206659,11468802,11665411,11927553,12845059,12910593,13041665,13697025,15007746,15466499,16449539,16777219,17235972,17629187,18022403,18284547,18481156],"default":[1],"destroypoolobject":[6946817,16318466,17104897],"disconnects":[786433,5373953,17760257],"degrees":[1048577,5701633,19136513],"driftcorrectionpercentage":[1638401,4915202,19070977],"defined":[8519682,8847362,8978434,9043970,9175042,9306114,9437186,9502722,9633794,9699330,9764866,9830402,9895938,10027010,10092546,10158082,10289154,10354690,10485762,10813442,10878978,11075586,11206658,11665410,12845058,13762562,14614530,15466498],"documentation":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194306,4259841,4325378,4390913,4456449,4521985,4587522,4653057,4718593,4784129,4849666,4915201,4980738,5046273,5111809,5177345,5242881,5308418,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602179,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585219,8650755,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961475,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272195,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648451,12713985,12779521,12845057,12910593,12976129,13041665,13172738,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828098,13893633,13959170,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204354,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711682,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"destroypool":[6946817,15859714,17104897],"decrypt":[7143425,11599874,18087937],"destination":[1638401,5177345,19070977],"deregister":[8323074,8716289],"different":[262145,3211265,17235969],"delay":[655361,720897,1048577,1638402,4063233,6815745,18808833,18874369,19070978,19136513],"distance":[1048578,5636097,6225921,19136514],"deregistermessagehandler":[8323074,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"description":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1048577,1638401,5242881,5505025,5898241,5963777,6094849,6356993,6422529,6488065,6619137,6684673,6750209,6946817,7012353,7077889,7143425,7274497,7471105,9109505,11141121,11468802,11862017,11993089,12124161,12386305,12517377,12910593,12976129,13041665,13238273,13434881,13500417,13565953,13631489,13697025,14024705,14090241,14221313,14286849,14352385,14417921,14548993,14680065,14745601,14811137,15335425,15597569,16449539,16777221,17104897,17235971,17367041,17629187,17694721,17760260,17825793,17891331,18022403,18087937,18219009,18284547,18350084,18415617,18481155,18546689,18612227,18677761,18743297,18808836,18874372,18939905,19005444,19070980,19136516,19202049,19267585,19333122],"decrypts":[7143425,11599873,18087937],"duplicates":[6488065,16121857,19267585],"deserialize":[6422529,14155779,19202049],"destroy":[6946817,16318466,17104897],"dll":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"destroys":[6946818,15859713,16318465,17104898],"deregisters":[8323073,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"dontdestroyonload":[786433,3932161,17760257],"deserializes":[6422529,14155777,19202049],"dontdestroy":[786433,3932162,17760257],"diffie":[262145,3342337,17235969],"decrypted":[11599873]} \ No newline at end of file +{"dictionary":[18939907,20840449,22675457],"duplicate":[20971521],"determines":[5767169,7864321,8257537,8585217,16973826,19660803],"decide":[720897,2031617,20643841],"data":[131073,196609,262145,458753,589826,655361,720898,983042,1114114,1179650,1245186,1310722,1441794,1507330,1572866,1703938,1769474,1835010,1900546,1966082,2031619,2097154,2162691,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3735554,3801090,3932162,3997698,4128770,5636097,5767169,5963777,6094849,6160385,6225921,6291457,6750210,7143426,7208962,7340035,7405570,7471108,7667714,7798786,7864322,7929858,7995396,8060930,8126466,8257540,8388611,8454146,8519683,8585220,8781826,8912899,9043970,9175043,9371651,9437187,9633795,9699331,9830403,10027011,11206659,11468803,12320771,12451843,15663106,16515073,16973825,17170433,17432577,17694722,17956866,18350084,19005443,19070978,19660803,19988481,20643844,21233667,21626883,22020099,22151170],"default":[1],"destroypoolobject":[6553601,18743298,22740993],"disconnects":[1376257,6881281,22675457],"degrees":[1638401,5570561,23330817],"driftcorrectionpercentage":[851969,5046274,23265281],"defined":[8388610,8519682,8912898,9109506,9175042,9306114,9371650,9437186,9502722,9633794,9699330,9830402,9895938,9961474,10027010,10158082,10289154,10551298,10616834,10682370,11206658,11468802,12320770,12451842,13107202,13172738,13565954,13697026],"documentation":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194306,4259842,4325377,4390913,4456449,4521986,4587521,4653058,4718593,4784129,4849665,4915202,4980737,5046273,5111809,5177345,5242882,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471107,7536641,7667713,7733249,7798785,7864321,7929857,7995395,8060929,8126465,8192001,8257537,8323075,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878979,10944514,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927555,11993089,12058625,12124163,12189699,12255233,12320769,12386305,12451841,12517380,12582916,12648452,12713988,12779523,12845059,12910596,12976131,13041667,13107201,13172737,13238273,13303810,13369348,13434884,13500420,13565953,13631491,13697025,13762564,13828099,13893635,13959169,14024707,14090242,14155780,14221316,14286851,14352388,14417924,14483457,14548994,14614531,14680067,14745604,14811139,14876675,14942209,15007745,15073283,15138817,15204355,15269891,15335428,15400963,15466500,15532033,15597571,15663105,15728644,15794179,15859716,15925252,15990785,16056323,16121857,16187395,16252929,16318465,16384001,16449537,16515074,16580609,16646145,16711684,16777217,16842756,16908289,16973825,17039363,17104897,17170433,17235971,17301506,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825796,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808834,18874370,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119554,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430274,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151170,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396354,23461889],"destroypool":[6553601,18415618,22740993],"decrypt":[6684673,16449538,23003137],"double":[13041666,13434882,15204356,15728645],"destination":[851969,5177345,23265281],"deregister":[8192002,9240577],"different":[720897,2949121,20643841],"delay":[393217,786433,851970,1638401,3670017,4784129,23134209,23199745,23265282,23330817],"distance":[1638402,6356993,7536641,23330818],"deregistermessagehandler":[8192002,8847361,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"description":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851969,1376257,1638401,5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6553601,6619137,6684673,6750209,7077889,7274497,7733249,8847361,9568257,9764865,10223617,10747905,14942209,15138817,15532033,15990785,16252929,16384001,16580609,16777217,16973825,17170433,17498113,17563649,17629185,17694722,17891329,18022401,18087937,18350083,18481153,19005443,19070977,19267585,19464193,19595265,19660805,19726337,19988481,20054017,20381697,20447233,20643843,20774913,20840449,21037057,21233667,21299201,21364737,21430274,21561345,21626883,21692417,21757956,21889025,22020099,22151170,22216705,22347777,22478849,22544386,22675460,22740993,22806531,22872065,22937604,23003137,23068675,23134212,23199748,23265284,23330820,23396353,23461889],"dispose":[6750209,15007747,22151169],"decrypts":[6684673,16449537,23003137],"duplicates":[7077889,20971521,22347777],"deserialize":[13959171,15532033,23461889],"destroy":[6553601,18743298,22740993],"dll":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"destroys":[6553602,18415617,18743297,22740994],"deregisters":[8192001,8847361,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"dontdestroyonload":[1376257,4063233,22675457],"deserializes":[13959169,15532033,23461889],"dontdestroy":[1376257,4063234,22675457],"diffie":[720897,3801089,20643841],"decrypted":[16449537]} \ No newline at end of file diff --git a/docs/fti/FTI_101.json b/docs/fti/FTI_101.json index 83c31c3..53ddcab 100644 --- a/docs/fti/FTI_101.json +++ b/docs/fti/FTI_101.json @@ -1 +1 @@ -{"exposes":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1048577,1638401,5242881,5505025,5898241,5963777,6094849,6356993,6422529,6488065,6684673,6750209,6946817,7012353,7077889,7143425,7274497,7471105,9109505,11141121,12910593,13238273,13434881,13500417,13697025,14024705,14090241,14221313,14286849,14417921,14548993,14745601,14811137,16449537,16777217,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"entered":[13107201],"estimated":[6619137,14483457,15335425,19333121],"encryptedbuffer":[11599874],"exchange":[262147,2818049,3342337,3407873,17235971],"examples":[262145,2359297,17235969],"encrypted":[196610,1245187,7143425,12713987,18087937,18481154],"events":[262145,2359297,17235969],"expected":[12189697,16121857],"enabled":[720897,1048577,1638401,4784129,5439489,5767169,14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874370,19005441,19070978,19136514],"executing":[14024707,14090243,14286851,14548995,15269889,15400961,15663105,18808835,18874371,19070979,19136515],"equals":[5242881,5505025,5898241,5963778,6094849,6356993,6684673,7012353,7077889,7274497,7340034,7471105,9109505,11141121,13500417,16449537,16777218,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"equal":[5963777,7340034,7405570,8388610,12910594,16777219],"error":[6291458],"enableproximity":[720897,1048577,1638401,4784130,5439490,5767170,18874369,19070977,19136513],"enable":[262147,1048577,1900545,2555905,3342337,4718593,17235971,19136513],"equality":[8388609,12910593,16777217],"enablesceneswitching":[262145,2555906,17235969],"enabletimeresync":[262145,1703938,17235969],"emptied":[262145,2424833,17235969],"example":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"encrypts":[7143425,12713985,18087937],"eventtickrate":[262145,2359298,17235969],"expectedchunkscount":[12189698,16121858],"editor":[786433,5046273,17760257],"encryption":[262145,458753,1900545,3276801,12517377,17235969,17629185,18087937],"enableencryption":[262145,1900546,17235969],"encoded":[7143426,11599873,12713986,18087938],"encrypt":[7143425,12713986,18087937]} \ No newline at end of file +{"exposes":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851969,1376257,1638401,5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6553601,6619137,6684673,6750209,7077889,7733249,8847361,9568257,9764865,10223617,10747905,14942209,15532033,16973825,17498113,18350081,19005441,19595265,19660801,19726337,19988481,20381697,20447233,20643841,20840449,21037057,21233665,21299201,21430273,21561345,21626881,21692417,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23461889],"entered":[19398657],"estimated":[7274497,17104897,19267585,22544385],"encryptedbuffer":[16449538],"exchange":[720899,2621441,3080193,3801089,20643843],"examples":[720897,1966081,20643841],"encrypted":[131074,1245187,6684673,17367043,18350082,23003137],"events":[720897,1966081,20643841],"expected":[20971521,21954561],"enabled":[786433,851969,1638401,5373953,5439489,6488065,20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199746,23265282,23330818],"executing":[18284545,19136513,20381699,20709377,21299203,21561347,21692419,23134211,23199747,23265283,23330819],"equals":[5636097,5701633,5767170,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6750209,7733249,7864322,8847361,9568257,9764865,10223617,10747905,14942209,18350081,19005441,19660802,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"equal":[5767169,7864322,8257538,8585218,16973826,19660803],"error":[7602178],"enableproximity":[786433,851969,1638401,5373954,5439490,6488066,23199745,23265281,23330817],"enable":[720899,1638401,2097153,2686977,3801089,4980737,20643843,23330817],"equality":[8257537,16973825,19660801],"enablesceneswitching":[720897,2097154,20643841],"enabletimeresync":[720897,2752514,20643841],"emptied":[720897,2555905,20643841],"example":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"encrypts":[6684673,17367041,23003137],"eventtickrate":[720897,1966082,20643841],"expectedchunkscount":[20971522,21954562],"editor":[1376257,4456449,22675457],"encryption":[655361,720897,2686977,3342337,16777217,20643841,21233665,23003137],"enableencryption":[720897,2686978,20643841],"encoded":[6684674,16449537,17367042,23003138],"encrypt":[6684673,17367042,23003137]} \ No newline at end of file diff --git a/docs/fti/FTI_102.json b/docs/fti/FTI_102.json index ad11d08..f51d933 100644 --- a/docs/fti/FTI_102.json +++ b/docs/fti/FTI_102.json @@ -1 +1 @@ -{"false":[7340033,7405569,7667713,8060929,8388609],"following":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1048577,1638401,5242881,5505025,5898241,5963777,6094849,6356993,6422529,6488065,6684673,6750209,6946817,7012353,7077889,7143425,7274497,7471105,9109505,11141121,12910593,13238273,13434881,13500417,13697025,14024705,14090241,14221313,14286849,14417921,14548993,14745601,14811137,16449537,16777217,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"frame":[262145,2359297,17235969],"function":[5963777,7208961,16777217],"flooding":[262145,2228225,17235969],"follow":[1],"fields":[65538,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,1048578,1638402,16449537,16777217,17235969,17629185,17760257,18022401,18284545,18350081,18481153,18808833,18874369,19005441,19070977,19136513],"field":[917506,983042,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5308418,5373954,5439490,5570562,5636098,5701634,5767170,5832706,6029314,6160386,6225922,6815746],"first":[7143426,7405569,8388609,11599873,12713985,18087938],"finalize":[5242881,5505025,5898241,6094849,6356993,6684673,7012353,7077889,7471105,9109505,11141121,13500417,16449537,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19070977,19136513],"float":[2883585,4063233,4653057,4915201,5636097,5701633,5832705,6029313,6160385,6225921,6815745,13893633,16187393,17170433]} \ No newline at end of file +{"false":[7864321,7929857,8060929,8257537,8585217,14155777,14221313,14745601,15335425,15466497,15728641,15925249,16711681,16842753,17825793],"following":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1376257,1638401,5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6553601,6619137,6684673,6750209,7077889,7733249,8847361,9568257,9764865,10223617,10747905,14942209,15532033,16973825,17498113,18350081,19005441,19595265,19660801,19726337,19988481,20381697,20447233,20643841,20840449,21037057,21233665,21299201,21430273,21561345,21626881,21692417,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23461889],"frame":[720897,1966081,20643841],"function":[5767169,7340033,19660801],"flooding":[720897,2818049,20643841],"follow":[1],"fields":[131074,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,1376258,1638402,18350081,19005441,19660801,20643841,21233665,21626881,21757953,22020097,22675457,22937601,23134209,23199745,23265281,23330817],"field":[917506,983042,1048578,1114114,1179650,1245186,1310722,1441794,1507330,1572866,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5832706,6029314,6356994,6488066,6881282,7012354,7536642],"first":[6684674,8257537,8585217,16449537,17367041,23003138],"finalize":[5636097,5701633,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6750210,7733249,8847361,9764865,10223617,10747905,14942209,15663107,16515076,18350081,19005441,19070979,20643841,21233665,21430273,21626881,22020097,22151170,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"float":[3014657,3670017,4390913,4587521,4784129,5046273,5570561,6029313,6356993,7012353,7536641,13828097,14417921,16187393,16646145,16842753,21495809,22085633]} \ No newline at end of file diff --git a/docs/fti/FTI_103.json b/docs/fti/FTI_103.json index 2706555..5d7747d 100644 --- a/docs/fti/FTI_103.json +++ b/docs/fti/FTI_103.json @@ -1 +1 @@ -{"getcomponent":[7077891,7274499,9109507,11141123,13500419,17760259,18612227,18743299,18808835,18874371,18939907,19005443,19070979,19136515],"getmessageunordered":[6488065,15204355,19267585],"getmessageordered":[6488065,13959171,19267585],"getcomponentsinparent":[7077893,7274501,9109509,11141125,13500421,17760261,18612229,18743301,18808837,18874373,18939909,19005445,19070981,19136517],"getcomponentinchildren":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516],"gethashcode":[5242881,5505025,5898241,5963778,6094849,6356993,6684673,7012353,7077889,7208962,7274497,7471105,9109505,11141121,13500417,16449537,16777218,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"general":[6291457],"generic":[8519681,8847361,9437185,9633793,12189697,13303809,13959170,15204354,16121857],"getcomponentinparent":[7077890,7274498,9109506,11141122,13500418,17760258,18612226,18743298,18808834,18874370,18939906,19005442,19070978,19136514],"getinstanceid":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"gains":[8126465,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"getclientid":[5963777,7733250,16777217],"gameobject":[524289,3735554,3801091,7274497,11862017,12320769,14024705,14090241,14221313,14286849,14417921,14548993,14745601,16711682,17760257,18022401,18612225,18808833,18874369,19005443,19070977,19136513],"getparameterautosend":[11272196,13500417,18874369],"getcomponentsinchildren":[7077894,7274502,9109510,11141126,13500422,17760262,18612230,18743302,18808838,18874374,18939910,19005446,19070982,19136518],"guitext":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"given":[6619138,6750209,6946817,7143426,7274497,8323073,8585217,8978433,9502721,10092545,10813441,11141126,11534337,11599873,12582913,12713985,13500422,13565954,13893633,14483457,15335426,16711681,17104897,17694721,17825794,18087938,18743302,18808838,18874374,18939910,19005441,19070982,19136518,19333122],"getconfig":[6356993,7602180,17235969],"guielement":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"games":[262145,2949121,17235969],"guitexture":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"gettype":[5242881,5505025,5898241,5963777,6094849,6356993,6684673,7012353,7077889,7274497,7471105,9109505,11141121,13500417,16449537,16777217,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"getnetworkedobject":[8585220,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"getchunkedmessage":[6488065,11927554,19267585],"gets":[786434,3932161,4521985,5963777,6356993,7143425,7602177,7733249,8126465,8454145,8585217,8847361,8912897,9175041,9502721,9633793,10092545,11141130,11206657,12713985,13500425,14024712,14090249,14221320,14286856,14417925,14549000,14745602,14942209,15073281,15269889,15400961,15532033,15663105,15728641,15925249,15990785,16056321,16187393,16252929,16384001,16515073,16580609,16646145,16777217,16908289,16973825,17039361,17235969,17301505,17367044,17498113,17563649,17760263,17825794,17956865,18087937,18153473,18612226,18743305,18808850,18874386,18939913,19005448,19070993,19136529],"getcomponents":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516]} \ No newline at end of file +{"getcomponent":[7733251,8847363,9568259,9764867,10223619,10747907,14942211,21757955,22675459,23068675,23134211,23199747,23265283,23330819],"getmessageunordered":[7077889,20119555,22347777],"getmessageordered":[7077889,18808835,22347777],"getcomponentsinparent":[7733253,8847365,9568261,9764869,10223621,10747909,14942213,21757957,22675461,23068677,23134213,23199749,23265285,23330821],"getcomponentinchildren":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820],"gethashcode":[5636097,5701633,5767170,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6750209,7340034,7733249,8847361,9568257,9764865,10223617,10747905,14942209,18350081,19005441,19660802,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"general":[7602177],"getfinalizesize":[6750209,16908290,22151169],"generic":[9109505,9175041,9633793,9895937,16121857,18808834,20119554,20971521,21954561],"getcomponentinparent":[7733250,8847362,9568258,9764866,10223618,10747906,14942210,21757954,22675458,23068674,23134210,23199746,23265282,23330818],"getinstanceid":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"gains":[8716289,8847361,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"getclientid":[5767169,7143426,19660801],"gameobject":[262145,3735554,3932163,9568257,11730945,15990785,18874370,20381697,20447233,20840449,21037057,21299201,21561345,21626881,21692417,21757955,22675457,23068673,23134209,23199745,23265281,23330817],"getparameterautosend":[10223617,11927556,23199745],"getcomponentsinchildren":[7733254,8847366,9568262,9764870,10223622,10747910,14942214,21757958,22675462,23068678,23134214,23199750,23265286,23330822],"guitext":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"given":[6553601,6619137,6684674,6750209,7274498,8192001,8323073,8388609,8847366,9568257,9699329,9764870,10158081,10223622,10354689,10616833,14942214,16449537,16515073,16646145,17104897,17367041,17891330,18874369,19070977,19267586,19529729,20054018,21757953,22151169,22544386,22740993,22872065,23003138,23134214,23199750,23265286,23330822],"getconfig":[5963777,7995396,20643841],"guielement":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"games":[720897,3276801,20643841],"guitexture":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"gettype":[5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6750209,7733249,8847361,9568257,9764865,10223617,10747905,14942209,18350081,19005441,19660801,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"getnetworkedobject":[8323076,8847361,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"getchunkedmessage":[7077889,17432578,22347777],"gets":[1376258,4063233,4849665,5767169,5963777,6684673,6750209,7143425,7995393,8323073,8519681,8650753,8716289,8847370,8978433,9109505,9502721,9633793,9699329,9764873,10158081,10223625,14942217,16908289,17367041,18153473,18219009,18284545,18546689,18612225,18677761,18939905,19136513,19202049,19333121,19464196,19660801,19791873,19857409,19922945,20054018,20185089,20250625,20316161,20381704,20447240,20512769,20578305,20643841,20709377,20840453,20905985,21037058,21102593,21299209,21561352,21692424,21757960,22085633,22151169,22282241,22413313,22675463,23003137,23068674,23134226,23199762,23265297,23330833],"getcomponents":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820]} \ No newline at end of file diff --git a/docs/fti/FTI_104.json b/docs/fti/FTI_104.json index 607cbcc..fe7018d 100644 --- a/docs/fti/FTI_104.json +++ b/docs/fti/FTI_104.json @@ -1 +1 @@ -{"hingejoint":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"header":[11927553],"history":[262145,2883585,17235969],"handleobjectspawning":[262145,2031618,17235969],"hosts":[262145,2752513,11468801,17235970],"handlerid":[8716289],"hierarchy":[16449537,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"hostid":[393218,1441795,7798786,16777218],"hideflags":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"hellman":[262145,3342337,17235969],"handshake":[262145,1572865,17235969],"handler":[8323073,8716289,11141122,13500418,18743298,18808834,18874370,18939906,19070978,19136514],"hasmissingparts":[6488065,12189698,19267585],"hasduplicates":[6488065,16121858,19267585],"handle":[262145,2031617,17235969],"hook":[65537,917506,18350081],"hashing":[7208961],"hte":[393217,1507329,16777217],"hash":[5963777,6356995,7208963,7602177,8650757,13172739,16777217,17235971],"handlers":[8847361,8912897,9175041,9306113,9502721,9633793,9699329,9764865,9830401,10027009,10092545,10289153,11141135,11206657,11403265,11730945,12451841,12845057,13500431,13762561,14352386,17367046,17825794,18415618,18677762,18743311,18808847,18874383,18939919,19070991,19136527],"helper":[12124162,12517377,18087937,19202049,19267585],"host":[589826,3473409,3997697,7667713,7798786,9109506,9961473,10682369,11468801,14024705,14090241,14286849,14417921,14548993,15663105,15728641,17760259,18284547,18808833,18874369,19070977,19136513]} \ No newline at end of file +{"hingejoint":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"header":[17432577],"history":[720897,3014657,20643841],"handleobjectspawning":[720897,2424834,20643841],"hosts":[720897,3211265,17694721,20643842],"handlerid":[9240577],"hierarchy":[18350081,19005441,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"hostid":[589826,1310723,8781826,19660802],"hideflags":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"hellman":[720897,3801089,20643841],"handshake":[720897,1572865,20643841],"handler":[8192001,8847362,9240577,9764866,10223618,14942210,23134210,23199746,23265282,23330818],"hasmissingparts":[7077889,21954562,22347777],"hasduplicates":[7077889,20971522,22347777],"handle":[720897,2424833,20643841],"hook":[327681,1048578,22937601],"hashing":[7340033],"hte":[589825,2162689,19660801],"hash":[5767169,5963779,7340035,7471109,7995393,13303811,19660801,20643843],"handlers":[8519681,8650753,8847375,9109505,9502721,9633793,9699329,9764879,9830401,9961473,10027009,10158081,10223631,10289153,11534337,11993089,12058625,12320769,12451841,13107201,13172737,14942223,18022402,19464198,20054018,21364738,22216706,23134223,23199759,23265295,23330831],"helper":[16384002,16777217,22347777,23003137,23461889],"host":[458754,3604481,4128769,7929857,8781826,10747906,10878977,11862017,17694721,19136513,20316161,20381697,20840449,21299201,21561345,21692417,22020099,22675459,23134209,23199745,23265281,23330817]} \ No newline at end of file diff --git a/docs/fti/FTI_105.json b/docs/fti/FTI_105.json index 943604e..c1656d9 100644 --- a/docs/fti/FTI_105.json +++ b/docs/fti/FTI_105.json @@ -1 +1 @@ -{"inheritance":[16449537,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"include":[262145,2359297,17235969],"isactiveandenabled":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"index":[11272195,12648451,15138817],"invalid":[5963777,7798785,8060930,16777217],"isinvalid":[5963777,7798786,8060930,16777217],"ienumerator":[7077890,7274498,9109506,11141122,13500418,17760258,18612226,18743298,18808834,18874370,18939906,19005442,19070978,19136514],"isdefaultattribute":[5242881,5898241,17891329,18350081],"isclient":[14024705,14090241,14286849,14417921,14548993,15269890,17760257,17956866,18808833,18874369,19070977,19136513],"isowner":[14024705,14090241,14221313,14286849,14548993,14942210,17301506,18808833,18874369,19005441,19070977,19136513],"invokes":[6619138,13893633,14483457,15335426,19333122],"invoked":[8716289,8847361,9175041,9306113,9502721,9633793,9699329,9764865,9830401,10027009,10092545,10289153,11141134,11206657,12845057,13500430,13762561,14352386,17367046,17825794,18415618,18677762,18743310,18808846,18874382,18939918,19070990,19136526],"isserver":[14024705,14090241,14286849,14417921,14548993,15400962,16384002,17760257,18808833,18874369,19070977,19136513],"identify":[11862017,19005441],"inside":[262145,2424833,6488065,16121857,17235969,19267585],"inequality":[7405569,12910593,16777217],"interpolateserver":[1048577,5111810,19136513],"isplayerobject":[14221313,17498114,19005441],"instance":[6356993,6422529,6553601,6881281,7208961,7405569,7536641,7602177,7798785,7864321,7929857,7995393,8192001,8257537,8388609,8585217,8781825,8847363,9175043,9240577,9437187,9699331,9830403,9895939,10027011,10092547,10354691,10420225,10485763,10616833,10747905,10813443,10878979,11010049,11141121,12058625,12779521,12910594,13041666,13500417,13762563,14024706,14090242,14155777,14286850,14417921,14548994,14614531,14876677,15794177,15925249,16252929,16318465,16449537,16777220,17235970,17629185,17760258,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808836,18874372,18939905,19005441,19070980,19136516,19202049],"initializes":[6553601,6881281,7536641,7798785,7864321,7929857,7995393,8192001,8257537,8781825,9240577,10420225,10616833,10747905,11010049,12058625,12779521,13041666,16449537,16777218,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513],"isspawned":[14221313,15532034,19005441],"int":[1572865,1835009,2228225,2293761,2359297,2424833,2490369,3604481,3997697,7208961,8323073,8716289,9175041,9437185,9895937,10092545,10813441,11272193,11927553,12648449,13172737,13959169,15138817,15204353,16515073],"int32":[1572865,1835009,2228225,2293761,2359297,2424833,2490369,3604481,3997697,7208961,8323073,8716289,9175042,9437186,9895938,10092546,10813442,11141125,11272195,11927553,12648451,13172739,13500422,13565953,13959170,14680065,15138817,15204354,15597570,16515073,17367041,17825793,18743301,18808837,18874374,18939909,19070981,19136517],"invokerepeating":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"interpolate":[1048577,5111809,19136513],"isinvoking":[7077890,7274498,9109506,11141122,13500418,17760258,18612226,18743298,18808834,18874370,18939906,19005442,19070978,19136514],"internal":[262145,2359297,17235969],"invoke":[65537,786436,917505,4259841,4390913,4456449,5373953,7077889,7274497,9109505,11141121,13500417,13893633,14483457,17760261,18350081,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"isordered":[6488065,13303810,19267585],"interpolation":[1048577,4718593,19136513],"interpolateposition":[1048577,4718594,19136513],"islocalplayer":[14024705,14090241,14221313,14286849,14548993,16056322,16908290,18808833,18874369,19005441,19070977,19136513],"inspector":[786433,5046273,17760257],"isclientconnected":[14417921,17760257,18153474],"instances":[1048577,5570561,6356993,8650753,17235969,19136513],"inherits":[11862017,18808833],"inherited":[720897,1048577,1638401,5242888,5505030,5898248,5963778,6094854,6356998,6684678,7012358,7077946,7274552,7471110,9109562,11141178,13238273,13434881,13500507,14024730,14090274,14221338,14286882,14417946,14549026,14745626,16449542,16777218,17235974,17629190,17760340,17891337,18022406,18284550,18350089,18481158,18612308,18743387,18808916,18874494,18939995,19005522,19071102,19136638],"ispooledobject":[14221313,15073282,19005441],"ishost":[5963777,7667714,7798786,14024705,14090241,14286849,14417921,14548993,15663106,15728642,16777217,17760257,18808833,18874369,19070977,19136513],"identifier":[7733249,7798786,8192001,15007745],"instead":[6946817,16318465,17104897]} \ No newline at end of file +{"inheritance":[18350081,19005441,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"include":[720897,1966081,20643841],"isactiveandenabled":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"index":[11927555,12845059,17760257],"invalid":[5767169,8060930,8781825,19660801],"isinvalid":[5767169,8060930,8781826,19660801],"ienumerator":[7733250,8847362,9568258,9764866,10223618,10747906,14942210,21757954,22675458,23068674,23134210,23199746,23265282,23330818],"isdefaultattribute":[5701633,5898241,22806529,22937601],"isclient":[18284546,19333122,20381697,20840449,21299201,21561345,21692417,22675457,23134209,23199745,23265281,23330817],"isowner":[19202050,20250626,20381697,20447233,21299201,21561345,21692417,21757953,23134209,23199745,23265281,23330817],"invokes":[7274498,16646145,17104897,19267586,22544386],"invoked":[8519681,8847374,9109505,9240577,9502721,9633793,9699329,9764878,9830401,9961473,10027009,10158081,10223630,10289153,12320769,12451841,13107201,13172737,14942222,18022402,19464198,20054018,21364738,22216706,23134222,23199758,23265294,23330830],"isserver":[20381697,20578306,20709378,20840449,21299201,21561345,21692417,22675457,23134209,23199745,23265281,23330817],"identify":[15990785,21757953],"idisposable":[15007745,22151169],"int16":[13893633,14352385,14614531,15335428],"inside":[720897,2555905,7077889,20643841,20971521,22347777],"inequality":[8585217,16973825,19660801],"interpolateserver":[1638401,5111810,23330817],"isplayerobject":[19857410,20447233,21757953],"instance":[5963777,6815745,6946817,7208961,7340033,7405569,7667713,7798785,7995393,8126465,8257537,8323073,8454145,8585217,8781825,8847361,9043969,9109507,9306115,9502723,9764865,9895939,9961475,10092545,10158083,10223617,10289155,10485761,10551299,10616835,10682371,11141121,11337729,11599873,11796481,12255233,13107203,13172739,13565955,13697027,13959169,14483461,14548993,14942209,15532033,16973826,17170434,18153473,18350081,18743297,19005441,19660804,20381698,20643842,20840449,21102593,21233665,21299202,21430273,21561346,21626881,21692418,21757953,21823489,22020097,22675458,22806529,22937601,23068673,23134212,23199748,23265284,23330820,23461889],"initializes":[6815745,6946817,7208961,7405569,7667713,7798785,8126465,8454145,8781825,9043969,10092545,10485761,11141121,11337729,11599873,11796481,12255233,14548993,17170434,18350081,19005441,19660802,20643841,21233665,21430273,21626881,21757953,22020097,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"isspawned":[20447233,20512770,21757953],"int":[1572865,1966081,2228225,2293761,2359297,2555905,2818049,3538945,4128769,7340033,8192001,9240577,9502721,9895937,10158081,10616833,10682369,11927553,12517377,12648449,12713985,12845057,13303809,13369345,13434881,13500417,13762561,14155777,14352385,14417921,15073281,15859714,17235969,17432577,17760257,18808833,20119553,22282241],"int32":[1572865,1966081,2228225,2293761,2359297,2555905,2818049,3538945,4128769,7340033,8192001,8847365,9240577,9502722,9764869,9895938,10158082,10223622,10616834,10682370,11927555,12517380,12648452,12713988,12845059,13303811,13369348,13434884,13500420,13762564,14155780,14352388,14417924,14942213,15073281,15859717,17235971,17432577,17629186,17760257,17891329,18087937,18808834,19464193,20054017,20119554,22282241,23134213,23199750,23265285,23330821],"invokerepeating":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"interpolate":[1638401,5111809,23330817],"isinvoking":[7733250,8847362,9568258,9764866,10223618,10747906,14942210,21757954,22675458,23068674,23134210,23199746,23265282,23330818],"int64":[12124161,12648449,14811139,15466500,16515073,16908289],"internal":[720897,1966081,20643841],"implements":[15007745],"invoke":[327681,1048577,1376260,4325377,5505025,5832705,6881281,7733249,8847361,9568257,9764865,10223617,10747905,14942209,16646145,17104897,21757953,22675461,22937601,23068673,23134209,23199745,23265281,23330817],"isordered":[7077889,16121858,22347777],"interpolation":[1638401,4980737,23330817],"interpolateposition":[1638401,4980738,23330817],"islocalplayer":[18677762,19791874,20381697,20447233,21299201,21561345,21692417,21757953,23134209,23199745,23265281,23330817],"inspector":[1376257,4456449,22675457],"isclientconnected":[19922946,20840449,22675457],"instances":[1638401,5308417,5963777,7471105,20643841,23330817],"inherits":[15990785,23134209],"inherited":[786433,851969,1638401,5636102,5701640,5767170,5898248,5963782,6094854,6160390,6225926,6291462,6422534,6750212,7733306,8847418,9568312,9764955,10223707,10747962,14942299,18350086,19005446,19595265,19660802,19726337,20381722,20447258,20643846,20840474,21037082,21233670,21299234,21430278,21561378,21626886,21692450,21758034,22020102,22151172,22675540,22806537,22937609,23068756,23134292,23199870,23265406,23330942],"ispooledobject":[20185090,20447233,21757953],"ishost":[5767169,7929858,8781826,19136514,19660801,20316162,20381697,20840449,21299201,21561345,21692417,22675457,23134209,23199745,23265281,23330817],"identifier":[7143425,8781826,9043969,17956865],"instead":[6553601,18743297,22740993]} \ No newline at end of file diff --git a/docs/fti/FTI_107.json b/docs/fti/FTI_107.json index f161773..1df37c2 100644 --- a/docs/fti/FTI_107.json +++ b/docs/fti/FTI_107.json @@ -1 +1 @@ -{"keys":[786433,5046273,17760257],"key":[262149,458753,2818050,3276801,3342337,3407874,7143426,11599876,12713988,17235973,17629185,18087938]} \ No newline at end of file +{"keys":[1376257,4456449,22675457],"key":[655361,720901,2621442,3080194,3342337,3801089,6684674,16449540,17367044,20643845,21233665,23003138],"known":[12517379,12648451,12713987,13369347,13434883,13500419,13762563,14155779,14221315,14352387,14417923,14745603,15335427,15466499,15728643,15859715,15925251,16711683,16842755,17825795]} \ No newline at end of file diff --git a/docs/fti/FTI_108.json b/docs/fti/FTI_108.json index 88fa4f2..05a6934 100644 --- a/docs/fti/FTI_108.json +++ b/docs/fti/FTI_108.json @@ -1 +1 @@ -{"large":[6488065,11927554,19267585],"local":[8126465,8585217,11141122,13500418,14024705,14090241,14221313,14286849,14417921,14548993,14942209,16842753,17301505,17760257,18743298,18808835,18874371,18939906,19005441,19070979,19136515],"logic":[262145,1703937,17235969],"loose":[8454145,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"library":[262145,2031617,11862017,17235969,17760257],"list":[262146,2162690,2686979,2752514,2949123,3014658,3080194,6488071,7077893,7274501,8519683,8847363,9109509,9437187,9633795,11141129,11927555,12189701,13041665,13303812,13500425,13565953,13631489,13959174,14352385,14680065,15204358,15335425,15597571,16121861,17235970,17367043,17432578,17760261,17825793,18219009,18415617,18546689,18612229,18677761,18743305,18808841,18874377,18939913,19005445,19070985,19136521,19267591],"longer":[13107201],"listen":[589826,3670017,3997697,18284546],"locate":[13107201],"looking":[13107201],"link":[1],"lerp":[1638401,4915201,19070977],"lag":[262145,2883585,11862017,12386305,17235969,18612225,19333121],"light":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"load":[6291457],"lagcompensationmanager":[6619138,12386305,13893634,14483458,14811139,15335426,17432578,19333124]} \ No newline at end of file +{"large":[7077889,17432578,22347777],"local":[8323073,8716289,8847362,9764866,10223618,14942210,19202049,20250625,20381697,20447233,20840449,21168129,21299201,21561345,21692417,21757953,22675457,23134211,23199747,23265283,23330819],"logic":[720897,2752513,20643841],"loose":[8847361,8978433,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"library":[720897,2424833,15990785,20643841,22675457],"list":[720898,1835010,2490371,2883586,3145730,3211266,3276803,7077895,7733253,8847369,9109507,9175043,9568261,9633795,9764873,9895939,10223625,10747909,14942217,16121860,17170433,17432579,17629187,17891329,18022401,18087937,18481153,18808838,19070977,19267585,19464195,20054017,20119558,20643842,20774913,20971525,21364737,21757957,21889025,21954565,22216705,22347783,22478849,22609922,22675461,23068677,23134217,23199753,23265289,23330825],"longer":[19398657],"long":[12124161,12648449,14811137,15466497,16515073,16908289],"listen":[458754,3473409,4128769,22020098],"locate":[19398657],"looking":[19398657],"link":[1],"lerp":[851969,5046273,23265281],"lag":[720897,3014657,15990785,16580609,20643841,22544385,23068673],"light":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"load":[7602177],"lagcompensationmanager":[7274498,16580609,16646146,17104898,17498115,19267586,22544388,22609922]} \ No newline at end of file diff --git a/docs/fti/FTI_109.json b/docs/fti/FTI_109.json index de044a1..2f5b930 100644 --- a/docs/fti/FTI_109.json +++ b/docs/fti/FTI_109.json @@ -1 +1 @@ -{"marked":[786433,3932161,17760257],"meta":[393218,1507331,16777218],"messagetype":[327684,1179650,1310723,3014658,6684675,6881284,8323073,8519683,8716289,8847363,8978435,9043971,9175043,9306115,9437187,9502723,9633795,9699331,9764867,9830403,9895939,10027011,10092547,10158083,10289155,10354691,10485763,10813443,10878979,11075587,11206659,11468801,11665411,12845059,13762563,14614531,15466499,16449543],"myclientid":[14417921,16842754,17760257],"miliseconds":[14745601,16187393,18612225],"mlapi":[65538,131073,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917509,983045,1048578,1114117,1179653,1245189,1310725,1376261,1441797,1507333,1572869,1638402,1703941,1769477,1835013,1900549,1966085,2031621,2097157,2162693,2228229,2293765,2359301,2424837,2490373,2555909,2621445,2686981,2752517,2818053,2883589,2949125,3014661,3080197,3145733,3211269,3276805,3342341,3407877,3473413,3538949,3604485,3670021,3735557,3801093,3866629,3932165,3997701,4063237,4128773,4194310,4259845,4325382,4390917,4456453,4521989,4587526,4653061,4718597,4784133,4849670,4915205,4980742,5046277,5111813,5177349,5242882,5308422,5373957,5439493,5505026,5570565,5636101,5701637,5767173,5832709,5898242,5963778,6029317,6094850,6160389,6225925,6291457,6356994,6422530,6488066,6553605,6619138,6684674,6750210,6815749,6881285,6946818,7012354,7077890,7143426,7208965,7274498,7340037,7405575,7471106,7536645,7602183,7667717,7733253,7798789,7864325,7929861,7995397,8060933,8126469,8192005,8257541,8323077,8388615,8454149,8519685,8585223,8650759,8716293,8781829,8847365,8912901,8978437,9043973,9109506,9175045,9240581,9306117,9371653,9437189,9502725,9568261,9633797,9699333,9764869,9830405,9895941,9961479,10027013,10092549,10158085,10223621,10289157,10354693,10420229,10485765,10551301,10616837,10682373,10747909,10813445,10878981,10944517,11010053,11075589,11141122,11206661,11272199,11337733,11403269,11468803,11534341,11599877,11665413,11730949,11796485,11862018,11927557,11993090,12058629,12124162,12189701,12255237,12320773,12386306,12451845,12517378,12582917,12648455,12713989,12779525,12845061,12910594,12976130,13041666,13107201,13172742,13238274,13303813,13369349,13434882,13500418,13565954,13631490,13697026,13762565,13828102,13893637,13959174,14024706,14090242,14155781,14221314,14286850,14352386,14417922,14483461,14548994,14614533,14680066,14745602,14811138,14876677,14942213,15007749,15073285,15138821,15204358,15269893,15335426,15400965,15466501,15532037,15597570,15663109,15728645,15794181,15859717,15925253,15990789,16056325,16121861,16187397,16252933,16318470,16384005,16449543,16515077,16580613,16646149,16711686,16777221,16842757,16908293,16973829,17039365,17104902,17170437,17235974,17301509,17367042,17432581,17498117,17563653,17629190,17694726,17760262,17825794,17891334,17956869,18022406,18087942,18153477,18219010,18284550,18350086,18415618,18481158,18546690,18612230,18677762,18743298,18808841,18874375,18939906,19005446,19070983,19136519,19202054,19267590,19333126],"messagetypes":[262146,3014659,17235970],"monobehaviours":[655361,720897,786433,851969,1048577,1638401,3538946,3932162,4063234,4128770,4194307,4259842,4325379,4390914,4456450,4521986,4587523,4653058,4718594,4784130,4849667,4915202,4980739,5046274,5111810,5177346,5308419,5373954,5439490,5570562,5636098,5701634,5767170,5832706,6029314,6160386,6225922,6815746,7077889,7274497,8126466,8323074,8454146,8519682,8585220,8716290,8847362,8912898,8978434,9043970,9109505,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961476,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141121,11206658,11272196,11337730,11403266,11665410,11730946,11796482,11862017,11993089,12058626,12255234,12320770,12451842,12582914,12648452,12779522,12845058,13172739,13500417,13565953,13631489,13762562,13828099,14024705,14090241,14221313,14286849,14352385,14417921,14548993,14614530,14680065,14745601,14942210,15073282,15269890,15400962,15466498,15532034,15597569,15663106,15728642,15794178,15925250,15990786,16056322,16187394,16252930,16318465,16384002,16515074,16580610,16646146,16842754,16908290,16973826,17039362,17170434,17301506,17367041,17498114,17563650,17760259,17825793,17956866,18153474,18219009,18415617,18546689,18612227,18677761,18743297,18808838,18874372,18939905,19005443,19070980,19136516],"maxreceiveeventspertickrate":[262145,2228226,17235969],"messagechunker":[6488067,11927554,12124161,12189698,13303810,13959171,15204355,16121858,19267588],"main":[11862017,12386307,17104897,17694721,17760257,19333121],"mindegrees":[1048577,5701634,19136513],"multiple":[8519681,8847361,9043969,9175041,9437185,9633793,9895937,11141128,11206657,13500424,15597572,17367044,18743304,18808840,18874376,18939912,19070984,19136520],"messagebuffersize":[262145,2293762,17235969],"maximize":[262145,1703937,17235969],"messages":[262147,2097153,2228225,2424833,12124161,17235971,19267585],"meters":[1048577,6160385,19136513],"message":[262147,2293762,3604481,7143426,8323073,8716290,8912897,8978433,9502721,10092545,10813441,11141123,11403265,11468801,11599873,11730945,11927554,12451841,12713985,13500419,16449537,17235971,18087938,18743299,18808835,18874371,18939907,19070979,19136515],"managing":[12386306,17104897,17694721],"method":[65537,917505,6946817,7208961,7340033,7602177,7667713,7733249,8060929,8126465,8323073,8454145,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9175041,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10551297,10682369,10813441,10878977,10944513,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12845057,13172737,13303809,13369345,13565953,13631489,13762561,13828097,13893633,13959169,14155777,14352385,14483457,14614529,14680065,14876673,15138817,15204353,15335425,15466497,15597569,15859713,16121857,16318466,16711681,17104897,17367041,17825793,18219009,18350081,18415617,18546689,18677761],"missing":[4194305,4325377,4587521,4849665,4980737,5308417,6488065,7602178,8585218,8650754,9961474,11272194,12189698,12648450,13172737,13828097,13959169,15204353,16711681,19267585],"methods":[5242882,5505026,5898242,5963778,6094850,6356994,6422530,6488066,6619138,6684674,6750210,6946818,7012354,7077890,7143426,7274498,7471106,9109506,11141122,13500418,16449537,16777217,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18743298,18808833,18874369,18939906,19005441,19070977,19136513,19202049,19267585,19333121],"minimum":[655361,720897,1048577,1638401,4063233,18808833,18874369,19070977,19136513],"messagehandler":[8716290],"make":[262145,2031617,17235969],"messagehandlerid":[8323073],"match":[5242881,5898241,17891329,18350081],"max":[262147,2228225,2293761,2490369,17235971],"min":[1048578,5701633,6160385,19136514],"monobehaviour":[6946817,7077902,7274510,9109518,11141134,11862017,13500430,14024706,14090242,14221314,14286850,14417922,14548994,14745602,16318465,17104897,17760274,18612242,18743310,18808851,18874385,18939918,19005458,19070993,19136529],"memberwiseclone":[5242881,5505025,5898241,6094849,6356993,6684673,7012353,7077889,7471105,9109505,11141121,13500417,16449537,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19070977,19136513],"minmeters":[1048577,6160386,19136513],"maxconnections":[262145,2490370,17235969],"misspelled":[13107201],"members":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1048577,1638401,5242881,5505025,5898241,5963777,6094849,6356993,6422529,6488065,6684673,6750209,6946817,7012353,7077889,7143425,7274497,7471105,9109505,11141121,12910593,13238273,13434881,13500417,13697025,14024705,14090241,14221313,14286849,14417921,14548993,14745601,14811137,16449537,16777217,17104897,17235969,17629185,17694721,17760257,17891329,18022401,18087937,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121]} \ No newline at end of file +{"marked":[1376257,4063233,22675457],"meta":[589826,2162691,19660802],"messagetype":[196612,1114115,1703938,2883586,6291459,7667716,8192001,8388611,8519683,8912899,9109507,9175043,9240577,9306115,9371651,9437187,9502723,9633795,9699331,9830403,9895939,9961475,10027011,10158083,10289155,10551299,10616835,10682371,11206659,11468803,12320771,12451843,13107203,13172739,13565955,13697027,17694721,19005447],"myclientid":[20840449,21168130,22675457],"miliseconds":[21037057,22085633,23068673],"mlapi":[65537,131074,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917509,983045,1048581,1114117,1179653,1245189,1310725,1376258,1441797,1507333,1572869,1638402,1703941,1769477,1835013,1900549,1966085,2031621,2097157,2162693,2228229,2293765,2359301,2424837,2490373,2555909,2621445,2686981,2752517,2818053,2883589,2949125,3014661,3080197,3145733,3211269,3276805,3342341,3407877,3473413,3538949,3604485,3670021,3735557,3801093,3866629,3932165,3997701,4063237,4128773,4194310,4259846,4325381,4390917,4456453,4521990,4587525,4653062,4718597,4784133,4849669,4915206,4980741,5046277,5111813,5177349,5242886,5308421,5373957,5439493,5505029,5570565,5636098,5701634,5767170,5832709,5898242,5963778,6029317,6094850,6160386,6225922,6291458,6356997,6422530,6488069,6553602,6619138,6684674,6750210,6815749,6881285,6946821,7012357,7077890,7143429,7208965,7274498,7340037,7405573,7471111,7536645,7602177,7667717,7733250,7798789,7864325,7929861,7995399,8060933,8126469,8192005,8257543,8323079,8388613,8454149,8519685,8585223,8650757,8716293,8781829,8847362,8912901,8978437,9043973,9109509,9175045,9240581,9306117,9371653,9437189,9502725,9568258,9633797,9699333,9764866,9830405,9895941,9961477,10027013,10092549,10158085,10223618,10289157,10354693,10420229,10485765,10551301,10616837,10682373,10747906,10813445,10878983,10944518,11010053,11075589,11141125,11206661,11272197,11337733,11403269,11468805,11534341,11599877,11665413,11730949,11796485,11862021,11927559,11993093,12058629,12124167,12189703,12255237,12320773,12386309,12451845,12517384,12582920,12648456,12713992,12779527,12845063,12910600,12976135,13041671,13107205,13172741,13238277,13303814,13369352,13434888,13500424,13565957,13631495,13697029,13762568,13828103,13893639,13959173,14024711,14090246,14155784,14221320,14286855,14352392,14417928,14483461,14548998,14614535,14680071,14745608,14811143,14876679,14942210,15007749,15073287,15138818,15204359,15269895,15335432,15400967,15466504,15532034,15597575,15663109,15728648,15794183,15859720,15925256,15990786,16056327,16121861,16187399,16252930,16318469,16384002,16449541,16515078,16580610,16646149,16711688,16777218,16842760,16908293,16973826,17039367,17104901,17170434,17235975,17301510,17367045,17432581,17498114,17563650,17629186,17694723,17760261,17825800,17891330,17956869,18022402,18087938,18153477,18219013,18284549,18350086,18415621,18481154,18546693,18612229,18677765,18743302,18808838,18874374,18939909,19005447,19070978,19136517,19202053,19267586,19333125,19398657,19464194,19529733,19595266,19660805,19726338,19791877,19857413,19922949,19988482,20054018,20119558,20185093,20250629,20316165,20381698,20447234,20512773,20578309,20643846,20709381,20774914,20840450,20905989,20971525,21037058,21102597,21168133,21233670,21299202,21364738,21430279,21495813,21561346,21626886,21692418,21757958,21823493,21889026,21954565,22020102,22085637,22151175,22216706,22282245,22347782,22413317,22478850,22544390,22609925,22675462,22740998,22806534,22872070,22937606,23003142,23068678,23134217,23199751,23265287,23330823,23396359,23461894],"messagetypes":[720898,2883587,20643842],"monobehaviours":[393217,524289,786433,851969,1376257,1638401,3670018,3866626,4063234,4194307,4259843,4325378,4390914,4456450,4521987,4587522,4653059,4718594,4784130,4849666,4915203,4980738,5046274,5111810,5177346,5242883,5308418,5373954,5439490,5505026,5570562,5832706,6029314,6356994,6488066,6881282,7012354,7536642,7733249,8192002,8323076,8388610,8519682,8650754,8716290,8847361,8912898,8978434,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568257,9633794,9699330,9764865,9830402,9895938,9961474,10027010,10092546,10158082,10223617,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747905,10813442,10878980,10944515,11010050,11075586,11141122,11206658,11272194,11403266,11337730,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927556,11993090,12058626,12255234,12320770,12386306,12451842,12845060,13107202,13172738,13303811,13565954,13697026,14942209,15990785,16252929,17629185,17891329,18022401,18087937,18153474,18219010,18284546,18546690,18612226,18677762,18743297,18939906,19136514,19202050,19333122,19464193,19791874,19857410,19922946,20054017,20185090,20250626,20316162,20381697,20447233,20512770,20578306,20709378,20774913,20840449,20905986,21037057,21102594,21168130,21299201,21364737,21495810,21561345,21692417,21757955,21823490,21889025,22085634,22216705,22282242,22413314,22478849,22675459,23068675,23134214,23199748,23265284,23330820],"maxreceiveeventspertickrate":[720897,2818050,20643841],"messagechunker":[7077891,16121858,16384001,17432578,18808835,20119555,20971522,21954562,22347780],"main":[15990785,16580611,22544385,22675457,22740993,22872065],"mindegrees":[1638401,5570562,23330817],"multiple":[8519681,8847368,9109505,9175041,9371649,9502721,9633793,9764872,9895937,10223624,10682369,14942216,17629188,19464196,23134216,23199752,23265288,23330824],"messagebuffersize":[720897,2359298,20643841],"maximize":[720897,2752513,20643841],"messages":[720899,1441793,2555905,2818049,16384001,20643843,22347777],"meters":[1638401,6029313,23330817],"message":[720899,2359298,3538945,6684674,8192001,8388609,8650753,8847363,9240578,9699329,9764867,10158081,10223619,10616833,11534337,11993089,12058625,14942211,16449537,17367041,17432578,17694721,19005441,20643843,23003138,23134211,23199747,23265283,23330819],"managing":[16580610,22740993,22872065],"method":[327681,1048577,6553601,7143425,7340033,7471105,7864321,7929857,7995393,8060929,8192001,8323073,8388609,8519681,8650753,8716289,8912897,8978433,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10158081,10289153,10354689,10420225,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11403265,11468801,11534337,11665409,11730945,11862017,11927553,11993089,12058625,12124161,12189697,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17629185,17760257,17825793,17891329,18022401,18087937,18415617,18481153,18743298,18808833,18874369,19070977,19267585,19464193,19529729,20054017,20119553,20774913,20971521,21364737,21889025,21954561,22216705,22478849,22740993,22937601],"missing":[4194305,4259841,4521985,4653057,4915201,5242881,7077889,7471106,7995394,8323074,10878978,10944513,11927554,12124162,12189698,12517379,12582915,12648451,12713987,12779522,12845058,12910595,12976130,13041666,13303809,13369347,13434883,13500419,13631490,13762563,13828098,13893634,14024706,14090241,14155779,14221315,14286850,14352387,14417923,14548993,14614530,14680066,14745603,14811138,14876674,15073282,15204354,15269890,15335427,15400962,15466499,15597570,15728643,15794178,15859715,15925251,16056322,16187394,16515073,16711683,16842755,17039362,17235970,17301505,17825795,18808833,18874369,20119553,21430273,21954562,22151169,22347777,23396353],"methods":[5636098,5701634,5767170,5898242,5963778,6094850,6160386,6225922,6291458,6422530,6553602,6619138,6684674,6750210,7077890,7274498,7733250,8847362,9568258,9764866,10223618,10747906,14942210,15138818,15532034,18350081,19005441,19660801,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"minimum":[393217,786433,851969,1638401,3670017,23134209,23199745,23265281,23330817],"messagehandler":[9240578],"make":[720897,2424833,20643841],"messagehandlerid":[8192001],"match":[5701633,5898241,22806529,22937601],"max":[720899,2228225,2359297,2818049,20643843],"min":[1638402,5570561,6029313,23330818],"monobehaviour":[6553601,7733262,8847374,9568270,9764878,10223630,10747918,14942222,15990785,18743297,20381698,20447234,20840450,21037058,21299202,21561346,21692418,21757970,22675474,22740993,23068690,23134227,23199761,23265297,23330833],"memberwiseclone":[5636097,5701633,5898241,5963777,6094849,6160385,6225921,6291457,6422529,7733249,8847361,9764865,10223617,10747905,14942209,18350081,19005441,20643841,21233665,21430273,21626881,22020097,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"minmeters":[1638401,6029314,23330817],"maxconnections":[720897,2228226,20643841],"misspelled":[19398657],"members":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851969,1376257,1638401,5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6553601,6619137,6684673,6750209,7077889,7733249,8847361,9568257,9764865,10223617,10747905,14942209,15532033,16973825,17498113,18350081,19005441,19595265,19660801,19726337,19988481,20381697,20447233,20643841,20840449,21037057,21233665,21299201,21430273,21561345,21626881,21692417,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23461889]} \ No newline at end of file diff --git a/docs/fti/FTI_110.json b/docs/fti/FTI_110.json index c8991de..8976510 100644 --- a/docs/fti/FTI_110.json +++ b/docs/fti/FTI_110.json @@ -1 +1 @@ -{"networkscenemanager":[6750211,11534338,12386305,17694724],"netwokrtime":[262145,1703937,17235969],"networkedprefab":[524291,851969,2686978,3145730,3538945,3801090,7471107,8781828,11468802,18022407,19005441],"networkstart":[8912898,11141121,11403266,11730946,12451842,13500418,18743298,18808833,18874370,18939906,19070978,19136514],"networkedtransform":[1048579,4718594,5111810,5570562,5636098,5701634,5767170,5832706,6160386,6225922,11993089,12451842,12779524,14548995,18808833,18939907,19136518],"networkingmanager":[786436,3932163,4128770,4259842,4390914,4456450,4521986,5046274,5373954,9109507,9371650,9568258,9961476,10223618,10420228,10551298,10682370,10944514,11862017,14417924,15728642,15794181,16384002,16842754,17170434,17563650,17760264,17956866,18153474],"nullable":[9961480],"networkid":[8585220,11141121,13500417,14024706,14090242,14221313,14286850,14548994,15990786,16252931,18743297,18808835,18874371,18939905,19005441,19070979,19136515],"networkedbehaviour":[655363,720897,1048577,1638401,4063234,8126466,8323074,8454146,8519682,8585220,8716290,8847363,8912898,8978434,9043970,9175043,9306115,9437186,9502723,9633795,9699331,9764867,9830403,9895938,10027011,10092547,10158082,10289155,10354690,10485762,10616836,10813442,10878978,11075586,11141137,11206659,11665410,11862017,12845059,13500464,13565954,13631490,13762563,14024709,14090250,14286858,14352388,14549002,14614530,14942210,15269890,15400962,15466498,15597570,15663106,15925251,16056322,16252931,16646146,17367048,17825796,18219010,18415620,18546690,18677764,18743344,18808854,18874429,18939952,19071037,19136573],"networkedobjec":[458753,3080193,17629185],"namespace":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917506,983042,1048577,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638401,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242881,5308418,5373954,5439490,5505025,5570562,5636098,5701634,5767170,5832706,5898241,5963777,6029314,6094849,6160386,6225922,6356993,6422529,6488065,6553602,6619137,6684673,6750209,6815746,6881282,6946817,7012353,7077889,7143425,7208962,7274497,7340034,7405570,7471105,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109505,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141121,11206658,11272194,11337730,11403266,11468801,11534338,11599874,11665410,11730946,11796482,11862017,11927554,11993089,12058626,12124161,12189698,12255234,12320770,12386305,12451842,12517377,12582914,12648450,12713986,12779522,12845058,12910593,12976129,13041665,13172738,13238273,13303810,13369346,13434881,13500417,13565953,13631489,13697025,13762562,13828098,13893634,13959170,14024705,14090241,14155778,14221313,14286849,14352385,14417921,14483458,14548993,14614530,14680065,14745601,14811137,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335425,15400962,15466498,15532034,15597569,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367041,17432578,17498114,17563650,17629186,17694722,17760258,17825793,17891330,17956866,18022402,18087938,18153474,18219009,18284546,18350082,18415617,18481154,18546689,18612226,18677761,18743297,18808834,18874370,18939905,19005442,19070978,19136514,19202050,19267586,19333122],"networkingmanagercomponents":[6422529,6488065,6619137,6750209,6946817,7143425,11534338,11599874,11927554,12124161,12189698,12386305,12517377,12713986,13303810,13369346,13893634,13959171,14155778,14483458,14811137,14876674,15138818,15204355,15335425,15859714,16121858,16318466,16711683,17104899,17432578,17694723,18087939,19202051,19267587,19333123],"networkpoolmanager":[6946819,12386305,15138818,15859714,16318466,16711683,17104900],"new":[6553601,6881281,7536641,7798785,7864321,7929857,7995393,8192001,8257537,8781825,9240577,10420225,10616833,10747905,11010049,11337729,12058625,12779521,13041666,14155777,16449537,16777218,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513],"net":[15007745],"networkedclient":[458756,3080194,3276802,3735554,3866627,7012355,8257540,11468802,17563650,17629192],"networktransport":[262145,1835009,11468801,17235969,18481153],"needed":[262145,1703937,17235969],"networkedprefabs":[262145,2686978,17235969],"networkednavmeshagent":[1638403,4653058,4915202,5177346,5439490,6815746,11403266,11993089,12058628,14286851,18743299,18808833,19070982],"networkconfig":[262147,786433,1572866,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3211266,3342338,3407874,3604482,4128772,6356995,7602180,7995396,8650756,11468801,17235974,17760257],"networktime":[14417921,17170434,17760257],"newownerclientid":[11337730],"networkedprefabname":[851969,3538946,19005441],"networkedanimator":[720899,4194307,4325379,4587523,4784130,4849667,4980739,5308419,6029314,11010052,11272196,11730946,11993089,12255234,12648452,13172739,13500419,13828099,14090243,14680066,16973826,18808833,18874374],"networking":[8912897,11141121,18808833],"null":[9961474],"networked":[262145,2949121,6946817,11862018,15138817,17104897,17235969,18808833,19005441],"networkedobject":[851971,3080194,3538946,6946817,7274499,8585218,9240580,11337730,11796482,11862017,12320770,12582914,14024708,14090244,14221316,14286852,14548996,15073282,15532034,15925253,15990786,16252929,16318468,16580611,16646145,16908290,17039362,17104897,17301506,17498114,18808836,18874372,19005447,19070980,19136516],"networkedtransport":[262145,2162689,17235969],"netobject":[16318466],"networkview":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"navmeshagents":[11993089,19070977],"networkingconfiguration":[786433,4128769,6356994,7602177,8650753,17235970,17760257],"network":[7274498,12320769,12386306,12582913,14221314,15532033,15990785,17104897,17694721,19005444],"netid":[393219,1376258,1441794,1507330,5963781,7208963,7340037,7405578,7667714,7733250,7798789,8060930,8192005,8388618,11468801,12910599,13041670,13697027,15007748,16777229]} \ No newline at end of file +{"networkscenemanager":[6619139,16580609,19529730,22872068],"netwokrtime":[720897,2752513,20643841],"networkedprefab":[262147,524289,2490370,3407874,3866625,3932162,6225923,7405572,17694722,21626887,21757953],"networkstart":[8650754,8847361,9764866,10223618,11534338,11993090,12058626,14942210,23134209,23199746,23265282,23330818],"networkedtransform":[1638403,4980738,5111810,5308418,5570562,6029314,6356994,6488066,7012354,7536642,11993090,12255236,14942211,16252929,21692419,23134209,23330822],"networkingmanager":[1376260,4063235,4325378,4456450,4718594,4849666,5505026,5832706,6881282,10747907,10813442,10878980,11010050,11272194,11337732,11403266,11665410,11862018,15990785,18939906,19333122,19922946,20316162,20578306,20840452,21168130,21495810,21823493,22675464],"nullable":[10878984],"networkid":[8323076,8847361,9764865,10223617,14942209,18153475,20381698,20447233,20905986,21299202,21561346,21692418,21757953,23134211,23199747,23265283,23330819],"networkedbehaviour":[393219,786433,851969,1638401,3670018,8192002,8323076,8388610,8519683,8650754,8716290,8847377,8912898,8978434,9109507,9175042,9240578,9306114,9371650,9437186,9502723,9633795,9699331,9764912,9830403,9895938,9961475,10027011,10092548,10158083,10223664,10289155,10551298,10616834,10682370,11206658,11468802,12320771,12451843,13107203,13172739,13565954,13697026,14942256,15990785,17629186,17891330,18022404,18153475,18284546,18546690,19136514,19464200,19791874,20054020,20250626,20381701,20709378,20774914,21102595,21299210,21364740,21561354,21692426,21889026,22216708,22478850,23134230,23199805,23265341,23330877],"networkedobjec":[655361,3145729,21233665],"namespace":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917506,983042,1048578,1114114,1179650,1245186,1310722,1376257,1441794,1507330,1572866,1638401,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636097,5701633,5767169,5832706,5898241,5963777,6029314,6094849,6160385,6225921,6291457,6356994,6422529,6488066,6553601,6619137,6684673,6750209,6815746,6881282,6946818,7012354,7077889,7143426,7208962,7274497,7340034,7405570,7471106,7536642,7667714,7733249,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847361,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568257,9633794,9699330,9764865,9830402,9895938,9961474,10027010,10092546,10158082,10223617,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747905,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11403266,11337730,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942209,15007746,15073282,15138817,15204354,15269890,15335426,15400962,15466498,15532033,15597570,15663106,15728642,15794178,15859714,15925250,15990785,16056322,16121858,16187394,16252929,16318466,16384001,16449538,16515074,16580609,16646146,16711682,16777217,16842754,16908290,16973825,17039362,17104898,17170433,17235970,17301506,17367042,17432578,17498113,17563649,17629185,17694721,17760258,17825794,17891329,17956866,18022401,18087937,18153474,18219010,18284546,18350082,18415618,18481153,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070977,19136514,19202050,19267585,19333122,19464193,19529730,19595265,19660802,19726337,19791874,19857410,19922946,19988481,20054017,20119554,20185090,20250626,20316162,20381697,20447233,20512770,20578306,20643842,20709378,20774913,20840449,20905986,20971522,21037057,21102594,21168130,21233666,21299201,21364737,21430274,21495810,21561345,21626882,21692417,21757954,21823490,21889025,21954562,22020098,22085634,22151170,22216705,22282242,22347778,22413314,22478849,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890],"networkingmanagercomponents":[6422529,6553601,6619137,6684673,6750209,7077889,7274497,12124164,12189700,12517381,12582917,12648453,12713989,12779524,12910597,12976132,13041668,13238274,13369349,13434885,13500421,13631492,13762565,13828100,13893636,13959170,14024708,14090243,14155781,14221317,14286852,14352389,14417925,14483458,14548995,14614532,14680068,14745605,14811140,14876676,15007746,15073284,15138817,15204356,15269892,15335429,15400964,15466501,15532033,15597572,15663106,15728645,15794180,15859717,15925253,16056324,16121858,16187396,16318466,16384001,16449538,16515075,16580609,16646146,16711685,16777217,16842757,16908290,17039364,17104898,17235972,17301507,17367042,17432578,17498113,17760258,17825797,18415618,18481153,18743298,18808835,18874371,19070977,19267585,19529730,20119555,20971522,21430276,21954562,22151172,22347779,22544387,22609922,22740995,22872067,23003139,23396356,23461891],"networkpoolmanager":[6553603,16580609,17760258,18415618,18743298,18874371,22740996],"new":[6815745,6946817,7208961,7405569,7667713,7798785,8126465,8454145,8781825,9043969,10092545,10420225,10485761,11141121,11337729,11599873,11796481,12255233,13959169,14548993,16318465,17170434,18350081,19005441,19660802,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"net":[17956865],"networkedclient":[655364,3145730,3342338,3735554,3997699,6094851,8454148,17694722,18939906,21233672],"networktransport":[720897,2293761,17694721,18350081,20643841],"needed":[720897,2752513,20643841],"networkedprefabs":[720897,2490370,20643841],"networkednavmeshagent":[851971,4587522,4784130,5046274,5177346,5439490,9764867,11534338,11796484,16252929,21561347,23134209,23265286],"networkconfig":[720899,1376257,1441794,1572866,1769474,1835010,1900546,1966082,2031618,2097154,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3211266,3276802,3538946,3801090,4718596,5963779,7471108,7995396,8126468,17694721,20643846,22675457],"networktime":[20840449,21495810,22675457],"newownerclientid":[10420226],"networkedprefabname":[524289,3866626,21757953],"networkedanimator":[786435,4194307,4259843,4390914,4521987,4653059,4915203,5242883,5373954,10223619,10944515,11141124,11927556,12058626,12386306,12845060,13303811,16252929,18087938,21299203,22413314,23134209,23199750],"networking":[8650753,8847361,23134209],"null":[10878978],"networked":[720897,3276801,6553601,15990786,17760257,20643841,21757953,22740993,23134209],"networkedobject":[524291,3145730,3866626,6553601,8323074,9568259,10354690,10420226,10485764,11075586,11730946,15990785,18153473,18219011,18546689,18612226,18677762,18743300,19202050,19857410,20185090,20381700,20447236,20512770,20905986,21102597,21299204,21561348,21692420,21757959,22740993,23134212,23199748,23265284,23330820],"networkedtransport":[720897,1835009,20643841],"netobject":[18743298],"networkview":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"navmeshagents":[16252929,23265281],"networkingconfiguration":[1376257,4718593,5963778,7471105,7995393,20643842,22675457],"network":[9568258,10354689,11730945,16580610,20447234,20512769,20905985,21757956,22740993,22872065],"netid":[589827,1310722,1507330,2162690,5767173,7143426,7340035,7864325,7929858,8060930,8257546,8585226,8781829,9043973,16973831,17170438,17694721,17956868,19660813,19988483]} \ No newline at end of file diff --git a/docs/fti/FTI_111.json b/docs/fti/FTI_111.json index 0cc7cd0..6c76c5a 100644 --- a/docs/fti/FTI_111.json +++ b/docs/fti/FTI_111.json @@ -1 +1 @@ -{"ownerclientid":[14024705,14090241,14221313,14286849,14548993,16580610,16646146,18808833,18874369,19005441,19070977,19136513],"obj":[7340034],"ongainedownership":[8126466,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"outside":[786433,5046273,17760257],"optional":[7602177,9961474,13959170,15138817,15204354],"ownedobjects":[458753,3080194,17629185],"onserverstarted":[786433,4259842,17760257],"objects":[6946817,14811137,15138817,15859713,17104897,17432577,19333121],"onlostownership":[8454146,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"ownership":[7274497,8126465,8454145,11141122,11796481,13500418,18743298,18808834,18874370,18939906,19005441,19070978,19136514],"onclientdisconnectcallback":[786433,5373954,17760257],"operators":[12910594,16777217],"overrides":[5963778,13500417,16777218,18743297,18874369,18939905,19070977,19136513],"owns":[11141122,12845057,13500418,13762561,14024707,14090243,14286851,14548995,15925249,16252929,16646145,18415618,18743298,18808837,18874373,18939906,19070981,19136517],"override":[7208961,7340033,11403265,11730945,11862017,12451841,18808833],"object":[262145,2031617,5242884,5505030,5898244,5963780,6094854,6356998,6684678,6946819,7012358,7077902,7208961,7274511,7340037,7471110,8126465,8454145,8585217,9109518,9764865,10027009,10485761,11141143,11337729,11468802,11796481,11862017,12582914,12845057,13500439,13762561,14024709,14090245,14221323,14286853,14417922,14548997,14745602,14942209,15073281,15138817,15466497,15532033,15859713,15990785,16056322,16449543,16711683,16777220,16908290,17039361,17104900,17235977,17301505,17498114,17629191,17694721,17760274,17891333,18022407,18087937,18284551,18350085,18415618,18481160,18546690,18612243,18677762,18743319,18808862,18874398,18939927,19005468,19071006,19136542,19202049,19267585,19333121],"operator":[7405570,8388610],"order":[6488067,13303810,13959169,15204353,19267587],"original":[6422529,6488066,13959169,14155777,15204353,19202049,19267586],"obsolete":[7077889,7274497,9109505,11141121,13500417,14024721,14090257,14221329,14286865,14417937,14549009,14745617,17760274,18612242,18743297,18808850,18874386,18939905,19005458,19070994,19136530],"owned":[458753,3080193,14024705,14090241,14221313,14286849,14548993,14942209,17301505,17629185,18808833,18874369,19005441,19070977,19136513],"owner":[7274498,9764865,10027009,10485761,11141124,11337730,12582913,13500420,14221313,15466497,16580609,18546690,18677762,18743300,18808836,18874372,18939908,19005443,19070980,19136516],"overload":[7798785,8192001,8519681,8847361,8978433,9043969,9175041,9306113,9437185,9502721,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,10289153,10354689,10485761,10813441,10878977,11075585,11206657,11665409,12845057,13041665,13172737,13565953,13631489,13762561,13828097,13893633,14352385,14483457,14614529,14680065,15335425,15466497,15597569,17367041,17825793,18219009,18415617,18546689,18677761],"onclientconnectedcallback":[786433,4390914,17760257],"occur":[262145,2359297,17235969],"occurred":[6291457]} \ No newline at end of file +{"ownerclientid":[18219010,18546690,20381697,20447233,21299201,21561345,21692417,21757953,23134209,23199745,23265281,23330817],"obj":[7864322],"ongainedownership":[8716290,8847361,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"outside":[1376257,4456449,22675457],"optional":[7995393,10878978,12517377,12648449,12713985,13369345,13434881,13500417,13762561,14155777,14221313,14352385,14417921,14745601,15335425,15466497,15728641,15859713,15925249,16711681,16842753,17760257,17825793,18808834,20119554],"ownedobjects":[655361,3145730,21233665],"onserverstarted":[1376257,4325378,22675457],"objects":[6553601,17498113,17760257,18415617,22544385,22609921,22740993],"onlostownership":[8847361,8978434,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"ownership":[8716289,8847362,8978433,9568257,9764866,10223618,11075585,14942210,21757953,23134210,23199746,23265282,23330818],"onclientdisconnectcallback":[1376257,6881282,22675457],"operators":[16973826,19660801],"overrides":[5767170,9764865,10223617,14942209,19660802,23199745,23265281,23330817],"owns":[8847362,9764866,10223618,12320769,13172737,14942210,18153473,18546689,20381699,21102593,21299203,21364738,21561347,21692419,23134213,23199749,23265285,23330821],"override":[7340033,7864321,11534337,11993089,12058625,15990785,23134209],"object":[720897,2424833,5636102,5701636,5767172,5898244,5963782,6094854,6160390,6225926,6291462,6422534,6553603,6750212,7340033,7733262,7864325,8323073,8716289,8847383,8978433,9437185,9568271,9764887,9830401,10223639,10289153,10354690,10420225,10551297,10747918,11075585,12320769,13172737,14942231,15990785,17694722,17760257,18350088,18415617,18612225,18677762,18874371,19005447,19202049,19660804,19791874,19857410,20185089,20250625,20381701,20447243,20512769,20643849,20840450,20905985,21037058,21233671,21299205,21364738,21430279,21561349,21626887,21692421,21757980,21889026,22020103,22151173,22216706,22347777,22544385,22675474,22740996,22806533,22872065,22937605,23003137,23068691,23134238,23199774,23265310,23330846,23396353,23461889],"operator":[8257538,8585218],"order":[7077891,16121858,18808833,20119553,22347779],"original":[7077890,13959169,15532033,18808833,20119553,22347778,23461889],"obsolete":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,20381713,20447249,20840465,21037073,21299217,21561361,21692433,21757970,22675474,23068690,23134226,23199762,23265298,23330834],"owned":[655361,3145729,19202049,20250625,20381697,20447233,21233665,21299201,21561345,21692417,21757953,23134209,23199745,23265281,23330817],"owner":[327681,917505,8847364,9437185,9568258,9764868,9830401,10223620,10289153,10354689,10420226,10551297,14942212,18219009,20447233,21757955,21889026,22216706,22937601,23134212,23199748,23265284,23330820],"overload":[8388609,8519681,8781825,8912897,9043969,9109505,9175041,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10158081,10289153,10551297,10616833,10682369,10944513,11206657,11468801,12320769,12451841,12582913,12910593,13107201,13172737,13303809,13565953,13697025,15663105,16515073,16646145,17104897,17170433,17629185,17891329,18022401,18087937,18481153,19070977,19267585,19464193,20054017,20774913,21364737,21889025,22216705,22478849],"onclientconnectedcallback":[1376257,5832706,22675457],"occur":[720897,1966081,20643841],"occurred":[7602177]} \ No newline at end of file diff --git a/docs/fti/FTI_112.json b/docs/fti/FTI_112.json index 7b97104..fab3355 100644 --- a/docs/fti/FTI_112.json +++ b/docs/fti/FTI_112.json @@ -1 +1 @@ -{"port":[262145,589826,1835009,3997699,17235969,18284546],"prevent":[262145,2228225,17235969],"parameters":[7340033,7405569,7602177,7798785,8192001,8323073,8388609,8519681,8585217,8650753,8716289,8847362,8978433,9043969,9175042,9306113,9437186,9502721,9633793,9699330,9764865,9830402,9895938,9961473,10027010,10092546,10158081,10289153,10354690,10485762,10813442,10878978,11075585,11206657,11272193,11337729,11534337,11599873,11665409,11927553,12189697,12582913,12648449,12713985,12845057,13172737,13303809,13762562,13828097,13893633,13959169,14155778,14483457,14614530,14876674,15138817,15204353,15466497,15859713,16121857,16318465,16711681],"prototyping":[720897,1048577,1638401,4194307,4325379,4587523,4653058,4718594,4784130,4849667,4915202,4980739,5111810,5177346,5308419,5439490,5570562,5636098,5701634,5767170,5832706,6029314,6160386,6225922,6815746,11010050,11272196,11403266,11730946,11993089,12058626,12255234,12451842,12648452,12779522,13172739,13500417,13828099,14090241,14286849,14548993,14680065,16973826,18743297,18808835,18874371,18939905,19070979,19136515],"percentage":[1638401,4915201,19070977],"param4":[720897,4194307,18874369],"points":[14745602,16187393,16515073,18612226],"public":[262145,917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407874,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8388609,8454145,8650753,8781825,8912897,9240577,9371649,9568257,9961473,10223617,10420225,10551297,10682369,10747905,10944513,11010049,11272193,11337729,11403265,11534337,11599873,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,13172737,13303809,13369345,13828097,13893633,13959169,14155777,14483457,14876673,14942209,15007745,15073281,15138817,15204353,15532033,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235970,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"param3":[720897,4849667,18874369],"prefab":[524290,3801091,15138817,18022402],"pos":[9961475],"proximityrange":[720897,1048577,1638401,4653058,5636098,6029314,18874369,19070977,19136513],"poolid":[14221314,17039363,19005442],"pending":[262145,3604481,17235969],"persists":[6291457],"private":[262145,2818049,17235969],"particlesystem":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"param":[7602177,8585217,8650753,9961474,11272193,12648450,13172737,13828097],"purposes":[12517377,18087937],"param1":[720897,4980739,18874369],"playerprefab":[524290,3145731,18022402],"probably":[262145,1703937,17235969],"protocolversion":[262145,3211266,17235969],"part":[6946817,14221314,15073281,16318465,17039361,17104897,19005442],"personal":[14024705,14090241,14221313,14286849,14548993,16056321,16908289,18808833,18874369,19005441,19070977,19136513],"poolname":[15138818,15859714,16711682],"prototype":[11993091,18874369,19070977,19136513],"position":[262145,1048577,2883585,6225921,6946817,16711684,17104897,17235969,19136513],"parts":[6356993,6488065,7602177,12189698,17235969,19267585],"param2":[720897,4325379,18874369],"player":[14024706,14090242,14221315,14286850,14548994,14942209,16056321,16908289,17301505,17498113,18808834,18874370,19005443,19070978,19136514],"properties":[13238274,13434882,13697026,14024706,14090242,14221314,14286850,14417922,14548994,14745602,14811138,16777217,17760257,17891329,18350081,18612225,18808833,18874369,19005441,19070977,19136513,19333121],"param0":[720897,4587523,18874369],"proximity":[720898,1048578,1638402,4653057,4784129,5439489,5636097,5767169,6029313,18874370,19070978,19136514],"protected":[8323073,8519681,8585217,8716289,8847361,8978433,9043969,9175041,9306113,9437185,9502721,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,10289153,10354689,10485761,10616833,10813441,10878977,11075585,11206657,11665409,12845057,13762561,14614529,15269889,15400961,15466497,15663105],"pool":[6946820,14221313,15073281,15138819,15859714,16318465,16711682,17104900,19005441],"protocol":[262145,3211265,17235969],"particleemitter":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"page":[6291457,13107204],"process":[262145,2228225,17235969],"param5":[720897,5308419,18874369],"prefabs":[262145,2686977,17235969],"property":[14942210,15007746,15073282,15269890,15400962,15532034,15663106,15728642,15794178,15925250,15990786,16056322,16187394,16252930,16384002,16515074,16580610,16646146,16842754,16908290,16973826,17039362,17170434,17301506,17432578,17498114,17563650,17956866,18153474],"properly":[6488066,13959169,15204353,19267586],"processed":[262145,2424833,17235969],"playerobject":[458754,3735555,17629186],"pools":[12386305,17104897],"preliminary":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"passthrough":[262145,327682,1179651,2097153,16449538,17235969]} \ No newline at end of file +{"port":[458754,720897,2293761,4128771,20643841,22020098],"prevent":[720897,2818049,20643841],"parameters":[7471105,7864321,7995393,8192001,8257537,8323073,8388609,8519681,8585217,8781825,8912897,9043969,9109506,9175041,9240577,9306114,9371649,9437185,9502722,9633793,9699329,9830401,9895938,9961474,10027009,10158082,10289154,10354689,10420225,10551298,10616834,10682370,10878977,10944513,11206657,11468801,11927553,12320769,12451841,12517377,12582913,12648449,12713985,12845057,12910593,13107202,13172738,13303809,13369345,13434881,13500417,13565954,13697026,13762561,13959170,14024705,14155777,14221313,14286849,14352385,14417921,14483458,14548993,14614529,14745601,14811137,15204353,15335425,15400961,15466497,15597569,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16449537,16515073,16646145,16711681,16842753,17039361,17104897,17235969,17367041,17432577,17760257,17825793,18415617,18743297,18808833,18874369,19529729,20119553,20971521,21954561],"prototyping":[786433,851969,1638401,4194307,4259843,4390914,4521987,4587522,4653059,4784130,4915203,4980738,5046274,5111810,5177346,5242883,5308418,5373954,5439490,5570562,6029314,6356994,6488066,7012354,7536642,9764865,10223617,10944515,11141122,11534338,11796482,11927556,11993090,12058626,12255234,12386306,12845060,13303811,14942209,16252929,18087937,21299201,21561345,21692417,22413314,23134211,23199747,23265283,23330819],"percentage":[851969,5046273,23265281],"param4":[786433,4194307,23199745],"points":[21037058,22085633,22282241,23068674],"public":[720897,917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080194,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8454145,8585217,8650753,8716289,8781825,8978433,9043969,10354689,10420225,10485761,10813441,10878977,10944513,11010049,11075585,11141121,11272193,11403265,11337729,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13238273,13303809,13369345,13434881,13500417,13631489,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643842,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"param3":[786433,5242883,23199745],"prefab":[262146,3932163,17760257,21626882],"pos":[10878979],"proximityrange":[786433,851969,1638401,4390914,4587522,6356994,23199745,23265281,23330817],"poolid":[18612227,20447234,21757954],"pending":[720897,3538945,20643841],"persists":[7602177],"private":[720897,2621441,20643841],"particlesystem":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"param":[7471105,7995393,8323073,10878978,10944513,11927553,12517377,12582913,12648449,12713985,12845058,12910593,13303809,13369345,13434881,13500417,13762561,14024705,14155778,14221314,14286849,14352385,14417921,14548993,14614529,14745602,14811137,15204353,15335426,15400961,15466498,15597569,15728642,15794177,15859713,15925250,16056321,16187393,16515073,16711682,16842754,17039361,17235969,17825794],"purposes":[16777217,23003137],"param1":[786433,4653059,23199745],"playerprefab":[262146,3407875,21626882],"probably":[720897,2752513,20643841],"protocolversion":[720897,2949122,20643841],"part":[6553601,18612225,18743297,20185089,20447234,21757954,22740993],"personal":[18677761,19791873,20381697,20447233,21299201,21561345,21692417,21757953,23134209,23199745,23265281,23330817],"poolname":[17760258,18415618,18874370],"prototype":[16252931,23199745,23265281,23330817],"position":[720897,1638401,3014657,6553601,7536641,18874372,20643841,22740993,23330817],"parts":[5963777,7077889,7995393,20643841,21954562,22347777],"param2":[786433,4915203,23199745],"player":[18677761,19202049,19791873,19857409,20250625,20381698,20447235,21299202,21561346,21692418,21757955,23134210,23199746,23265282,23330818],"properties":[17498114,19595266,19660801,19726338,19988482,20381698,20447234,20840450,21037058,21299202,21561346,21692418,21757953,22544385,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"param0":[786433,4259843,23199745],"proximity":[786434,851970,1638402,4390913,4587521,5373953,5439489,6356993,6488065,23199746,23265282,23330818],"protected":[8192001,8323073,8388609,8519681,8912897,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10551297,10616833,10682369,11206657,11468801,12320769,12451841,13107201,13172737,13565953,13697025,18284545,19136513,20709377],"pool":[6553604,17760259,18415618,18743297,18874370,20185089,20447233,21757953,22740996],"protocol":[720897,2949121,20643841],"particleemitter":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"page":[7602177,19398660],"process":[720897,2818049,20643841],"param5":[786433,4521987,23199745],"prefabs":[720897,2490369,20643841],"property":[17956866,18153474,18219010,18284546,18546690,18612226,18677762,18939906,19136514,19202050,19333122,19791874,19857410,19922946,20185090,20250626,20316162,20512770,20578306,20709378,20905986,21102594,21168130,21495810,21823490,22085634,22282242,22413314,22609922],"properly":[7077890,18808833,20119553,22347778],"processed":[720897,2555905,20643841],"playerobject":[655362,3735555,21233666],"pools":[16580609,22740993],"preliminary":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"passthrough":[196610,720897,1441793,1703939,19005442,20643841]} \ No newline at end of file diff --git a/docs/fti/FTI_113.json b/docs/fti/FTI_113.json index fa12e76..7bf7af1 100644 --- a/docs/fti/FTI_113.json +++ b/docs/fti/FTI_113.json @@ -1 +1 @@ -{"qostype":[1114114],"queue":[262145,2424833,17235969],"quaternion":[4456450,9961476,16711683],"qos":[196609,1114113,18481153]} \ No newline at end of file +{"qostype":[1179650],"queue":[720897,2555905,20643841],"quaternion":[5505026,10878980,18874371],"qos":[131073,1179649,18350081]} \ No newline at end of file diff --git a/docs/fti/FTI_114.json b/docs/fti/FTI_114.json index f36ac8d..9ecda33 100644 --- a/docs/fti/FTI_114.json +++ b/docs/fti/FTI_114.json @@ -1 +1 @@ -{"rtt":[6619137,14483458,15335425,19333121],"recommended":[262145,1703937,17235969],"rigidbody2d":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"rsapublickey":[262145,3407874,17235969],"receive":[262146,2293761,2424833,17235970],"running":[9109507,10551297,10682369,10944513,14417923,15728641,16384001,17760262,17956865],"range":[720897,1638401,4653057,6029313,18874369,19070977],"random":[7143425,12713985,18087937],"receivetickrate":[262146,2228225,2424834,17235970],"rot":[9961475],"rsaprivatekey":[262145,2818050,17235969],"require":[6488065,15204353,19267585],"rotation":[6946817,16711684,17104897],"ref":[11927553,12189697,13303809,13959169,15204353,16121857],"return":[7208961,7340033,7405569,7602177,7667713,7733249,8060929,8388609,8585217,8650753,8716289,11272193,11599873,11927553,12189697,12713985,13303809,13959169,14155778,14876673,15204353,16121857,16711681],"represents":[5963777,7667713,11468805,14417921,16449537,16777218,17170433,17760257,18022401,18284545,18481153],"resetparameteroptions":[12255234,13500417,18874369],"rigidbody":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"redirected":[1],"replicated":[12976130,14417921,17170433,17760257,17891329,18350081],"runineditmode":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"requested":[13107201],"regeneratersakeys":[786433,5046274,17760257],"regenerating":[786433,5046273,17760257],"registermessagehandler":[8716290,11141121,13500417,18743297,18808833,18874369,18939905,19070977,19136513],"rotate":[1048577,5701633,19136513],"ready":[786433,4259841,8912897,11141121,17760257,18808833],"requires":[6488065,13959169,19267585],"registeredscenes":[262145,2949122,17235969],"runinbackground":[786433,4521986,17760257],"renderer":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"register":[8716289],"rsa":[262146,786433,2818049,3407873,5046273,17235970,17760257],"removes":[7274497,11796481,19005441],"removeownership":[7274497,11796482,19005441],"received":[8716289],"returns":[5963778,7602177,7667713,8060929,8585217,8650753,11272193,13959169,15204353,16711681,16777218],"request":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"reference":[65538,131073,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291457,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468801,11534338,11599874,11665410,11730946,11796482,11862017,11927554,11993089,12058626,12124161,12189698,12255234,12320770,12386305,12451842,12517377,12582914,12648450,12713986,12779522,12845058,12910594,12976129,13041666,13107201,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122],"registers":[8716289,11141121,11403265,11730945,12451841,13500418,18743298,18808833,18874370,18939906,19070978,19136514],"registered":[262145,3014657,8912897,11141121,17235969,18808833]} \ No newline at end of file +{"readdouble":[6422529,13041668,21430273],"rtt":[7274497,17104898,19267585,22544385],"recommended":[720897,2752513,20643841],"readushortarray":[6422529,13762565,21430273],"readdoublearray":[6422529,13434885,21430273],"readfrom":[14548995],"readintarray":[6422529,15859717,21430273],"rigidbody2d":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"rsapublickey":[720897,3080194,20643841],"readfloatarray":[6422529,14417925,21430273],"receive":[720898,2359297,2555905,20643842],"readbyte":[6422529,12189700,21430273],"readlongarray":[6422529,12648453,21430273],"running":[10747907,11010049,11665409,11862017,19333121,20316161,20578305,20840451,22675462],"range":[786433,851969,4390913,4587521,23199745,23265281],"readshortarray":[6422529,14352389,21430273],"random":[6684673,17367041,23003137],"readuint":[6422529,15269892,21430273],"receivetickrate":[720898,2555906,2818049,20643842],"readshort":[6422529,13893636,21430273],"rot":[10878979],"rsaprivatekey":[720897,2621442,20643841],"require":[7077889,20119553,22347777],"readint":[6422529,15073284,21430273],"readushort":[6422529,13631492,21430273],"rotation":[6553601,18874372,22740993],"readstring":[6422529,14680068,21430273],"readulongarray":[6422529,13369349,21430273],"ref":[16121857,16515073,17432577,18808833,20119553,20971521,21954561],"return":[7143425,7340033,7471105,7864321,7929857,7995393,8060929,8257537,8323073,8585217,9240577,11927553,12124161,12189697,12517377,12582913,12648449,12713985,12779521,12910593,12976129,13041665,13369345,13434881,13500417,13631489,13762561,13828097,13893633,13959170,14352385,14417921,14483457,14680065,14876673,15073281,15269889,15663105,15859713,16121857,16449537,16515073,16908289,17367041,17432577,18808833,18874369,20119553,20971521,21954561],"represents":[5767169,7929857,17694725,18350081,19005441,19660802,20840449,21495809,21626881,22020097,22675457],"releases":[15007745,22151169],"resetparameteroptions":[10223617,12386306,23199745],"rigidbody":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"redirected":[1],"readsbyte":[6422529,12976132,21430273],"resources":[15007745,22151169],"replicated":[17563650,20840449,21495809,22675457,22806529,22937601],"runineditmode":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"requested":[19398657],"regeneratersakeys":[1376257,4456450,22675457],"regenerating":[1376257,4456449,22675457],"registermessagehandler":[8847361,9240578,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"readbytearray":[6422529,12713989,21430273],"rotate":[1638401,5570561,23330817],"ready":[1376257,4325377,8650753,8847361,22675457,23134209],"readsbytearray":[6422529,13500421,21430273],"readlong":[6422529,12124164,21430273],"requires":[7077889,18808833,22347777],"registeredscenes":[720897,3276802,20643841],"runinbackground":[1376257,4849666,22675457],"readuintarray":[6422529,12517381,21430273],"renderer":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"register":[9240577],"readbool":[6422529,14876676,21430273],"rsa":[720898,1376257,2621441,3080193,4456449,20643842,22675457],"readfloat":[6422529,13828100,21430273],"removes":[9568257,11075585,21757953],"removeownership":[9568257,11075586,21757953],"received":[9240577],"returns":[5767170,6750209,7471105,7929857,7995393,8060929,8323073,11927553,12124161,12189697,12517377,12582913,12648449,12713985,12779521,12910593,12976129,13041665,13369345,13434881,13500417,13631489,13762561,13828097,13893633,14352385,14417921,14680065,14876673,15073281,15269889,15663105,15859713,18808833,18874369,19070977,19660802,20119553,22151169],"request":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"reference":[65537,131074,196610,262146,327682,458754,393218,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602177,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990785,16056322,16121858,16187394,16252929,16318466,16384001,16449538,16515074,16580609,16646146,16711682,16777217,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563649,17629186,17694721,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398657,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890],"registers":[8847361,9240577,9764866,10223618,11534337,11993089,12058625,14942210,23134209,23199746,23265282,23330818],"readulong":[6422529,12779524,21430273],"registered":[720897,2883585,8650753,8847361,20643841,23134209]} \ No newline at end of file diff --git a/docs/fti/FTI_115.json b/docs/fti/FTI_115.json index 2c5fa00..4df5dea 100644 --- a/docs/fti/FTI_115.json +++ b/docs/fti/FTI_115.json @@ -1 +1 @@ -{"switches":[6750209,11534337,17694721],"simulationobjects":[14811137,17432578,19333121],"source":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"sendtoserver":[10354691,11075587,11141122,13500418,13631491,18743298,18808834,18874370,18939906,19070978,19136514],"sendspersecond":[1048577,5832706,19136513],"sendtoclienttarget":[9502723,10092547,11141122,13500418,17825795,18743298,18808834,18874370,18939906,19070978,19136514],"sort":[131073],"syntax":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"sets":[786434,3932161,4521985,14090241,16973825,17760258,18874369],"stops":[9109507,10551297,10682369,10944513,17760259],"syncronized":[14417921,17170433,17760257],"specified":[5963777,7340034,7405570,8388610,12910596,16777221],"servertransports":[262145,2752514,17235969],"sealed":[19005441],"scenes":[12386305,17694721],"sendmessageupwards":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516],"spawnwithownership":[7274497,12582914,19005441],"sendtoclients":[8519683,9043971,9437187,9895939,10158083,10878979,11141126,13500422,15597575,18743302,18808838,18874374,18939910,19070982,19136518],"stopallcoroutines":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"secondsago":[13893634],"sendtononlocalclients":[10485763,11141122,13500418,15466499,18546691,18743298,18808834,18874370,18939906,19070978,19136514],"spawns":[6946817,7274498,12320769,12582913,16711681,17104897,19005442],"sendmessageoptions":[7077894,7274502,9109510,11141126,13500422,17760262,18612230,18743302,18808838,18874374,18939910,19005446,19070982,19136518],"serialize":[6422529,14876676,19202049],"scenename":[11534338],"synced":[14221313,15990785,19005441],"spawn":[7274497,12320770,16711682,19005441],"second":[262147,1048578,2359297,2424833,3604481,5570561,5832705,7405569,8388609,17235971,19136514],"snapdistance":[1048577,6225922,19136513],"stored":[14745601,16515073,18612225],"sendtononlocalclientstarget":[9764867,10027011,11141122,13500418,18677763,18743298,18808834,18874370,18939906,19070978,19136514],"sever":[262145,2752513,17235969],"syncvar":[65537,917505,18350081],"stopcoroutine":[7077891,7274499,9109507,11141123,13500419,17760259,18612227,18743299,18808835,18874371,18939907,19005443,19070979,19136515],"sorry":[6291457,13107201],"search":[131073,13107201],"signed":[262145,3342337,17235969],"serializer":[6422529,13369345,19202049],"setup":[8912897,11141121,18808833],"switch":[11534337],"stopclient":[9109505,10551298,17760257],"send":[262146,1048578,2359297,2621441,5701633,6160385,8519682,8847363,8978434,9043970,9175043,9306113,9437187,9502722,9633794,9699330,9764865,9830402,9895939,10027010,10092547,10158081,10289153,10354690,10485762,10813443,10878978,11075585,11206658,11665409,12845057,13762562,14614530,15466497,17235970,19136514],"structures":[7208961,11468801],"spawnableprefabindex":[15138818],"servernetid":[13697026,15007747,16777218],"sent":[262145,1048578,3604481,5701633,6160385,17235969,19136514],"single":[2883585,4063233,4653057,4915201,5636097,5701633,5832705,6029313,6160385,6225921,6619137,6815745,13893634,15335425,16187393,17170433,19333121],"signing":[262146,2818049,3407873,17235970],"stophost":[9109505,10682370,17760257],"set":[786433,4521985,7798786,16973825,17760257],"setparameterautosend":[12648452,13500417,18874369],"spawnpoolobject":[6946817,16711683,17104897],"spawnable":[262145,2686977,17235969],"subject":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"serialized":[9437185,9830401,9895937,10027009,10354689,10485761,10813441,11141128,13500424,13565953,13631489,14352385,14614529,14876673,15597570,18219009,18546689,18677761,18743304,18808840,18874376,18939912,19070984,19136520],"sha256":[6356994,7602177,8650753,17235970],"syncing":[11993091,14090241,16973825,18874370,19070977,19136513],"serializableattribute":[16449537,17235969,18022401,18284545,18481153],"scene":[262145,2555905,6750209,11534338,17235969,17694721],"spawned":[14221313,15532033,19005441],"spawning":[262145,2031617,17235969],"syncedvar":[65539,262145,655361,720897,917506,1048577,1638401,2359297,4063233,5898243,7929860,12976129,13434883,17235969,18350086,18808833,18874369,19070977,19136513],"socket":[589825,3670017,18284545],"salt":[7143426,11599874,12713986,18087938],"starts":[9109508,9371649,9568257,9961473,10223617,17760260],"startclient":[9109505,9371650,17760257],"sendtolocalclienttarget":[11141122,12845059,13500418,13762563,18415619,18743298,18808834,18874370,18939906,19070978,19136514],"sendtoservertarget":[9306115,9830403,11141122,13500418,14352387,18743298,18808834,18874370,18939906,19070978,19136514],"stopserver":[9109505,10944514,17760257],"switchscene":[6750209,11534338,17694721],"startclientwebsocket":[9109505,9568258,17760257],"site":[6291457],"size":[262146,2293762,13959169,15138818,15204353,17235970],"string":[917506,983042,1310722,1966082,2818050,2949122,3407874,3473410,3538946,4194306,4325378,4587522,4849666,4980738,5308418,7077906,7274514,8323074,8519686,8716290,8847366,8978438,9043974,9109522,9175046,9306118,9437190,9502726,9633798,9699334,9764870,9830406,9895942,10027014,10092550,10158086,10289158,10354694,10485766,10813446,10878982,11075590,11141194,11206662,11534338,11665414,12845062,13500491,13565956,13631492,13762566,13828100,14352388,14614534,14680065,15138818,15466502,15597580,15859714,16711683,17367052,17760274,17825796,18219012,18415620,18546692,18612242,18677764,18743370,18808906,18874443,18939978,19005458,19071050,19136586],"sendtickrate":[262145,3604482,17235969],"start":[11468801,17235969],"server":[786433,1048577,4259841,5111809,6750209,6946820,7274500,8519681,8847361,8978433,9043969,9109506,9175041,9306113,9437185,9502721,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10813441,10878977,10944513,11075585,11141148,11206657,11337729,11468801,11534337,11665409,11796481,12320769,12582913,12845057,12976130,13500444,13565954,13631490,13762561,14024706,14090242,14286850,14352386,14417923,14548994,14614529,15007745,15138817,15400961,15466497,15597574,15663105,15859713,16318465,16384001,16711681,16842753,17104900,17170433,17235969,17367046,17694721,17760262,17825794,17891329,18219010,18350081,18415618,18546690,18677762,18743324,18808862,18874398,18939932,19005444,19071006,19136543],"switching":[262145,2555905,17235969],"summary":[4194305,4325377,4587521,4849665,4980737,5308417],"started":[14417921,17170433,17760257],"syncvarsyncdelay":[655361,720897,1048577,1638401,4063234,18808833,18874369,19070977,19136513],"starthost":[9109505,9961476,17760257],"startcoroutine":[7077891,7274499,9109507,11141123,13500419,17760259,18612227,18743299,18808835,18874371,18939907,19005443,19070979,19136515],"structure":[393217,1376257,1441793,1507329,5963777,7208961,7340033,7405569,7667713,7733249,7798785,8060929,8192001,8388609,11468802,12910593,13041665,13697025,15007745,16777218],"system":[7340033,7602179,7798788,8192001,8323074,8519684,8585219,8650755,8716290,8847363,8978436,9043972,9175043,9306115,9437187,9502724,9633796,9699330,9764867,9830402,9895939,9961478,10027010,10092547,10158083,10289155,10354690,10485762,10813443,10878978,11075587,11206660,11272195,11337729,11534337,11599874,11665411,11927554,12189698,12582913,12648454,12713986,12845059,13172738,13303809,13762562,13828098,13893634,13959173,14155777,14483458,14614530,15138819,15204357,15466499,15859713,16121858,16449537,16711682,17104897,17235969,17629185,17694721,17760257,17891330,18022401,18087937,18284545,18350082,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"support":[327681,1179649,16449537],"serializes":[6422529,14876673,19202049],"startserver":[9109505,10223618,17760257],"singleton":[14417922,15794179,17760258],"secondshistory":[262145,2883586,17235969],"serializing":[12124161,19202049],"spawnableprefabs":[15138817],"settrigger":[13172740,13500418,13828100,14680067,18874370],"sendtoclientstarget":[8847363,9175043,9633795,9699331,10289155,11141126,11206659,13500422,17367047,18743302,18808838,18874374,18939910,19070982,19136518],"snaping":[1048577,6225921,19136513],"signkeyexchange":[262145,3342338,17235969],"sends":[655361,720897,1048579,1638401,4063233,5570561,5832705,8519681,8847361,8978433,9043969,9175041,9306113,9437185,9502721,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,10289153,10354689,10485761,10813441,10878977,11075585,11141148,11206657,11665409,12845057,13500444,13565954,13631490,13762561,14352386,14614529,15466497,15597574,17367046,17825794,18219010,18415618,18546690,18677762,18743324,18808861,18874397,18939932,19071005,19136543],"static":[7405569,8388609,11534337,11599873,11927553,12189697,12713985,13303809,13369345,13697025,13893633,13959169,14155777,14483457,14876673,15007746,15138817,15204353,15794177,15859713,16121857,16318465,16711681,16777217,17104897,17432577,17694721,18087937,19202049,19267585,19333121],"seconds":[262146,655361,720897,1048577,1572865,1638402,2883585,4063233,6619138,6815745,13893634,14417921,14483457,15335426,17170433,17235970,17760257,18808833,18874369,19070978,19136513,19333122],"suitable":[7208961],"struct":[7798785,8192001,13041666,16777219],"startcoroutine_auto":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"simulation":[14811137,17432577,19333121],"smaller":[6488065,11927553,19267585],"sendmessage":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516],"scenenames":[262145,2949121,17235969],"sendtoclient":[8978435,10813443,11141122,13500418,13565955,18743298,18808834,18874370,18939906,19070978,19136514],"serves":[5963777,7208961,16777217],"sendtolocalclient":[11141122,11665411,13500418,14614531,18219011,18743298,18808834,18874370,18939906,19070978,19136514],"simulate":[6619138,13893635,14483459,15335427,19333122]} \ No newline at end of file +{"switches":[6619137,19529729,22872065],"simulationobjects":[17498113,22544385,22609922],"source":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"sendtoserver":[8847362,9764866,10223618,11468803,13565955,14942210,22478851,23134210,23199746,23265282,23330818],"sendspersecond":[1638401,7012354,23330817],"sendtoclienttarget":[8847362,9699331,9764866,10158083,10223618,14942210,20054019,23134210,23199746,23265282,23330818],"sort":[65537],"syntax":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"sets":[1376258,4063233,4849665,21299201,22413313,22675458,23199745],"stops":[10747907,11010049,11665409,11862017,22675459],"syncronized":[20840449,21495809,22675457],"specified":[5767169,7864322,8257538,8585218,16973828,19660805],"servertransports":[720897,3211266,20643841],"sealed":[21757953,22151169],"scenes":[16580609,22872065],"sendmessageupwards":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820],"spawnwithownership":[9568257,10354690,21757953],"sendtoclients":[8847366,8912899,9175043,9306115,9371651,9764870,9895939,10223622,10682371,14942214,17629191,23134214,23199750,23265286,23330822],"stopallcoroutines":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"secondsago":[16646146],"sendtononlocalclients":[8847362,9437187,9764866,10223618,10551299,14942210,21889027,23134210,23199746,23265282,23330818],"spawns":[6553601,9568258,10354689,11730945,18874369,21757954,22740993],"sendmessageoptions":[7733254,8847366,9568262,9764870,10223622,10747910,14942214,21757958,22675462,23068678,23134214,23199750,23265286,23330822],"serialize":[6750209,14483460,15532033,16908289,22151169,23461889],"scenename":[19529730],"synced":[327681,917505,20447233,20905985,21757953,22937601],"spawn":[9568257,11730946,18874370,21757953],"second":[720899,1638402,1966081,2555905,3538945,5308417,7012353,8257537,8585217,20643843,23330818],"snapdistance":[1638401,7536642,23330817],"stored":[21037057,22282241,23068673],"sendtononlocalclientstarget":[8847362,9764866,9830403,10223618,10289155,14942210,22216707,23134210,23199746,23265282,23330818],"sever":[720897,3211265,20643841],"syncvar":[327681,1048577,22937601],"stopcoroutine":[7733251,8847363,9568259,9764867,10223619,10747907,14942211,21757955,22675459,23068675,23134211,23199747,23265283,23330819],"sorry":[7602177,19398657],"search":[65537,19398657],"signed":[720897,3801089,20643841],"serializer":[13238273,15532033,23461889],"setup":[8650753,8847361,23134209],"switch":[19529729],"stopclient":[10747905,11665410,22675457],"send":[720898,1638402,1966081,2031617,5570561,6029313,8388610,8519682,8912897,9109507,9175042,9306114,9371650,9437185,9502723,9633794,9699330,9830401,9895939,9961474,10027009,10158083,10289154,10551298,10616835,10682371,11206657,11468801,12320769,12451841,13107202,13172738,13565954,13697026,20643842,23330818],"structures":[7340033,17694721],"spawnableprefabindex":[17760258],"servernetid":[17956867,19660802,19988482],"sent":[720897,1638402,3538945,5570561,6029313,20643841,23330818],"single":[3014657,3670017,4390913,4587521,4784129,5046273,5570561,6029313,6356993,7012353,7274497,7536641,13828097,14417921,16187395,16646146,16842756,19267585,21495809,22085633,22544385],"signing":[720898,2621441,3080193,20643842],"stophost":[10747905,11862018,22675457],"set":[1376257,4849665,8781826,22413313,22675457],"setparameterautosend":[10223617,12845060,23199745],"spawnpoolobject":[6553601,18874371,22740993],"spawnable":[720897,2490369,20643841],"subject":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"serialized":[8847368,9764872,9895937,10223624,10289153,10551297,10616833,10682369,13107201,13565953,13697025,14483457,14942216,17629186,17891329,18022401,20774913,21889025,22216705,22478849,23134216,23199752,23265288,23330824],"sha256":[5963778,7471105,7995393,20643842],"syncing":[16252931,21299201,22413313,23199746,23265281,23330817],"serializableattribute":[18350081,19005441,20643841,21626881,22020097],"scene":[720897,2097153,6619137,19529730,20643841,22872065],"spawned":[20447233,20512769,21757953],"spawning":[720897,2424833,20643841],"syncedvar":[327684,393217,720897,786433,851969,917507,1048578,1638401,1966081,3670017,5898243,6946820,17563649,19726339,20643841,22937607,23134209,23199745,23265281,23330817],"socket":[458753,3473409,22020097],"salt":[6684674,16449538,17367042,23003138],"starts":[10747908,10813441,10878977,11272193,11403265,22675460],"startclient":[10747905,10813442,22675457],"short":[13893633,14352385,14614529,15335425],"sendtolocalclienttarget":[8847362,9764866,10223618,12320771,13172739,14942210,21364739,23134210,23199746,23265282,23330818],"sendtoservertarget":[8847362,9764866,10223618,12451843,13107203,14942210,18022403,23134210,23199746,23265282,23330818],"stopserver":[10747905,11010050,22675457],"skippadded":[6422529,14090243,21430273],"sbyte":[12976130,13500418,14221317,15794180],"switchscene":[6619137,19529730,22872065],"startclientwebsocket":[10747905,11272194,22675457],"site":[7602177],"size":[720898,2359298,6750209,16908290,17760258,18808833,20119553,20643842,22151169],"string":[983042,1048578,1114114,1769474,2621442,3080194,3276802,3604482,3866626,4194306,4259842,4521986,4653058,4915202,5242882,7733266,8192002,8388614,8519686,8847434,8912902,9109510,9175046,9240578,9306118,9371654,9437190,9502726,9568274,9633798,9699334,9764938,9830406,9895942,9961478,10027014,10158086,10223691,10289158,10551302,10616838,10682374,10747922,10944516,11206662,11468806,12320774,12451846,13107206,13172742,13565958,13697030,14680066,14942282,15597572,17629196,17760258,17891332,18022404,18087937,18415618,18874371,19464204,19529730,20054020,20774916,21364740,21757970,21889028,22216708,22478852,22675474,23068690,23134282,23199819,23265354,23330890],"sendtickrate":[720897,3538946,20643841],"start":[17694721,20643841],"server":[1376257,1638401,4325377,5111809,6553604,6619137,8388609,8519681,8847388,8912897,9109505,9175041,9306113,9371649,9437185,9502721,9568260,9633793,9699329,9764892,9830401,9895937,9961473,10027009,10158081,10223644,10289153,10354689,10420225,10551297,10616833,10682369,10747906,11010049,11075585,11206657,11403265,11468801,11730945,12320769,12451841,13107201,13172737,13565953,13697025,14942236,17563650,17629190,17694721,17760257,17891330,17956865,18022402,18415617,18743297,18874369,19136513,19464198,19529729,20054018,20381698,20578305,20643841,20709377,20774914,20840451,21168129,21299202,21364738,21495809,21561346,21692418,21757956,21889026,22216706,22478850,22675462,22740996,22806529,22872065,22937601,23134238,23199774,23265310,23330847],"switching":[720897,2097153,20643841],"swapendian":[12582918,12910598,15138818,18481155,23396354],"summary":[4194305,4259841,4521985,4653057,4915201,5242881,12124161,12189697,12517377,12582913,12648449,12713985,12779521,12910593,12976129,13041665,13369345,13434881,13500417,13631489,13762561,13828097,13893633,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14614529,14680065,14745601,14811137,14876673,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15728641,15794177,15859713,15925249,16056321,16187393,16711681,16842753,17039361,17235969,17301505,17825793,21430273,22151169,23396353],"started":[20840449,21495809,22675457],"syncvarsyncdelay":[393217,786433,851969,1638401,3670018,23134209,23199745,23265281,23330817],"starthost":[10747905,10878980,22675457],"startcoroutine":[7733251,8847363,9568259,9764867,10223619,10747907,14942211,21757955,22675459,23068675,23134211,23199747,23265283,23330819],"structure":[589825,1310721,1507329,2162689,5767169,7143425,7340033,7864321,7929857,8060929,8257537,8585217,8781825,9043969,16973825,17170433,17694722,17956865,19660802,19988481],"system":[7471107,7864321,7995395,8192002,8323075,8388612,8519684,8781828,8912899,9043969,9109507,9175044,9240578,9306114,9371652,9437187,9502723,9633796,9699332,9830403,9895939,9961474,10027011,10158083,10289154,10354689,10420225,10551298,10616835,10682371,10878982,10944514,11206659,11468803,11927555,12320771,12451843,12517380,12582916,12648452,12713988,12845062,12910596,13107202,13172738,13303810,13369348,13434884,13500420,13565954,13697026,13762564,13959169,14024707,14155784,14221320,14286851,14352388,14417924,14548994,14614531,14745608,14811139,15204355,15335432,15400963,15466504,15597571,15728648,15794179,15859716,15925256,16056323,16121857,16187395,16449538,16515074,16646146,16711688,16842760,17039363,17104898,17235971,17367042,17432578,17760259,17825800,18350081,18415617,18808837,18874370,19005441,19529729,20119557,20643841,20971522,21233665,21430273,21626881,21757953,21954562,22020097,22151169,22347777,22544385,22675457,22740993,22806530,22872065,22937602,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"support":[196609,1703937,19005441],"serializes":[6750209,14483457,15532033,15663105,19070977,22151169,23461889],"startserver":[10747905,11403266,22675457],"singleton":[20840450,21823491,22675458],"secondshistory":[720897,3014658,20643841],"serializing":[16384001,23461889],"spawnableprefabs":[17760257],"settrigger":[10223618,10944516,13303812,18087939,23199746],"sendtoclientstarget":[8519683,8847366,9109507,9502723,9633795,9764870,9961475,10027011,10223622,14942214,19464199,23134214,23199750,23265286,23330822],"snaping":[1638401,7536641,23330817],"signkeyexchange":[720897,3801090,20643841],"sends":[393217,786433,851969,1638403,3670017,5308417,7012353,8388609,8519681,8847388,8912897,9109505,9175041,9306113,9371649,9437185,9502721,9633793,9699329,9764892,9830401,9895937,9961473,10027009,10158081,10223644,10289153,10551297,10616833,10682369,11206657,11468801,12320769,12451841,13107201,13172737,13565953,13697025,14942236,17629190,17891330,18022402,19464198,20054018,20774914,21364738,21889026,22216706,22478850,23134237,23199773,23265309,23330847],"static":[8257537,8585217,12582913,12910593,13238273,13959169,14483457,16121857,16449537,16646145,17104897,17367041,17432577,17760257,17956866,18415617,18743297,18808833,18874369,19529729,19660801,19988481,20119553,20971521,21823489,21954561,22347777,22544385,22609921,22740993,22872065,23003137,23396353,23461889],"seconds":[393217,720898,786433,851970,1572865,1638401,3014657,3670017,4784129,7274498,16646146,17104897,19267586,20643842,20840449,21495809,22544386,22675457,23134209,23199745,23265282,23330817],"suitable":[7340033],"struct":[8781825,9043969,17170434,19660803],"startcoroutine_auto":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"simulation":[17498113,22544385,22609921],"smaller":[7077889,17432577,22347777],"sendmessage":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820],"scenenames":[720897,3276801,20643841],"sendtoclient":[8388611,8847362,9764866,10223618,10616835,14942210,17891331,23134210,23199746,23265282,23330818],"serves":[5767169,7340033,19660801],"sendtolocalclient":[8847362,9764866,10223618,11206659,13697027,14942210,20774915,23134210,23199746,23265282,23330818],"simulate":[7274498,16646147,17104899,19267587,22544386]} \ No newline at end of file diff --git a/docs/fti/FTI_116.json b/docs/fti/FTI_116.json index cf2cb76..8b16900 100644 --- a/docs/fti/FTI_116.json +++ b/docs/fti/FTI_116.json @@ -1 +1 @@ -{"tostring":[5242881,5505025,5898241,5963777,6094849,6356993,6684673,7012353,7077889,7274497,7471105,9109505,11141121,13500417,16449537,16777217,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"totalpoints":[14745601,16515074,18612225],"try":[6291457,13107201],"transport":[196609,262145,1114113,2752513,7798785,11468801,13041665,16777217,17235969,18284545,18481153],"tracked":[11862017,18612225],"trackedobject":[7077891,10747908,11862017,14745603,16187394,16515074,17432578,18612230],"talk":[262145,3211265,17235969],"title":[131073],"transforms":[11993089,19136513],"typeid":[13238273,13434881,17891329,18350081],"top":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1048577,1638401,5242881,5505025,5898241,5963777,6094849,6356993,6422529,6488065,6619137,6684673,6750209,6946817,7012353,7077889,7143425,7274497,7471105,9109505,11141121,12910593,13041665,13107201,13238273,13434881,13500417,13565953,13631489,13697025,14024705,14090241,14221313,14286849,14352385,14417921,14548993,14680065,14745601,14811137,15335425,15597569,16449539,16777221,17104897,17235971,17367041,17629187,17694721,17760260,17825793,17891331,18022403,18087937,18219009,18284547,18350084,18415617,18481155,18546689,18612227,18677761,18743297,18808836,18874372,18939905,19005444,19070980,19136516,19202049,19267585,19333122],"timing":[262145,1572865,17235969],"transform":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"todo":[11272193,12255233,12648449,13172737,13500421,13828097,14680066,18874373],"turns":[6422529,6619140,13893634,14155777,14483458,15335428,19202049,19333124],"triggername":[13828099],"typo":[13107201],"time":[6619139,13893634,14417922,14483459,14745601,15335427,16187393,17170434,17760258,18612225,19333123],"trigger":[786433,5046273,17760257],"true":[589825,3670017,7340033,7405569,7602177,7667713,7798786,8060929,8388609,18284545],"transporthost":[589827,2752514,3473410,3670018,3997698,5505027,7864324,11468801,18284550],"table":[7208961],"tcp":[589825,3670017,18284545],"topic":[1],"tag":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"times":[262147,2359297,2424833,3604481,17235971],"total":[14745601,16515073,18612225],"type":[65537,196611,262146,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114116,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097154,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6684673,6750209,6815745,6946817,7012353,7077899,7143425,7208961,7274507,7340034,7405571,7471105,7602178,7667713,7733249,7798788,8060929,8192001,8323074,8388611,8519684,8585218,8650754,8716291,8847366,8978436,9043972,9109515,9175046,9306115,9437190,9502724,9633796,9699333,9764867,9830405,9895942,9961474,10027013,10092550,10158083,10289155,10354693,10485765,10813446,10878981,11075587,11141131,11206660,11272194,11337729,11468801,11534337,11599875,11665411,11927555,12189699,12582913,12648450,12713987,12845059,12910593,13172737,13238273,13303810,13434881,13500427,13697025,13762565,13828097,13893634,13959171,14024705,14090241,14155780,14221313,14286849,14417921,14483458,14548993,14614533,14745601,14811137,14876676,14942209,15007745,15073281,15138819,15204355,15269889,15400961,15466499,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121859,16187393,16252929,16318465,16384001,16449538,16515073,16580609,16646145,16711684,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235970,17301505,17432577,17498113,17563649,17629185,17694721,17760267,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481155,18612235,18743307,18808843,18874379,18939915,19005451,19070987,19136523,19202049,19267585,19333121],"turned":[262146,1703938,13893633,14483457,17235970]} \ No newline at end of file +{"tostring":[5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6750209,7733249,8847361,9568257,9764865,10223617,10747905,14942209,18350081,19005441,19660801,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"totalpoints":[21037057,22282242,23068673],"try":[7602177,19398657],"transport":[131073,720897,1179649,3211265,8781825,17170433,17694721,18350081,19660801,20643841,22020097],"tracked":[15990785,23068673],"trackedobject":[7733251,11599876,15990785,21037059,22085634,22282242,22609922,23068678],"talk":[720897,2949121,20643841],"title":[65537],"transforms":[16252929,23330817],"typeid":[19595265,19726337,22806529,22937601],"top":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1376257,1638401,5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6553601,6619137,6684673,6750209,7077889,7274497,7733249,8847361,9568257,9764865,10223617,10747905,14942209,15138817,15532033,16973825,17170433,17498113,17629185,17891329,18022401,18087937,18350083,18481153,19005443,19070977,19267585,19398657,19464193,19595265,19660805,19726337,19988481,20054017,20381697,20447233,20643843,20774913,20840449,21037057,21233667,21299201,21364737,21430274,21561345,21626883,21692417,21757956,21889025,22020099,22151170,22216705,22347777,22478849,22544386,22675460,22740993,22806531,22872065,22937604,23003137,23068675,23134212,23199748,23265284,23330820,23396353,23461889],"timing":[720897,1572865,20643841],"transform":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"todo":[10223621,10944513,11927553,12386305,12845057,13303809,18087938,23199749],"turns":[7274500,13959169,15532033,16646146,17104898,19267588,22544388,23461889],"triggername":[10944515],"typo":[19398657],"time":[7274499,16646146,17104899,19267587,20840450,21037057,21495810,22085633,22544387,22675458,23068673],"target":[327681,917506,22937601],"trigger":[1376257,4456449,22675457],"true":[327681,458753,917505,3473409,7864321,7929857,7995393,8060929,8257537,8585217,8781826,22020097,22937601],"transporthost":[458755,3211266,3473410,3604482,4128770,5636099,7798788,17694721,22020102],"table":[7340033],"tcp":[458753,3473409,22020097],"topic":[1],"tag":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"times":[720899,1966081,2555905,3538945,20643843],"total":[21037057,22282241,23068673],"type":[131075,196609,262145,327681,393217,458753,524289,589825,655361,720898,786433,851969,917505,983041,1048577,1114113,1179652,1245185,1310721,1376257,1441794,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6881281,7012353,7077889,7143425,7340033,7471106,7536641,7733259,7864322,7929857,7995394,8060929,8192002,8257539,8323074,8388612,8519684,8585219,8781828,8847371,8912899,9043969,9109510,9175044,9240579,9306117,9371652,9437187,9502726,9568267,9633796,9699332,9764875,9830403,9895942,9961477,10027011,10158086,10223627,10289157,10354689,10420225,10551301,10616838,10682374,10747915,10878978,10944513,11206659,11468803,11927554,12124161,12189697,12320771,12451843,12517378,12582914,12648450,12713986,12779521,12845058,12910594,12976129,13041665,13107205,13172741,13303809,13369346,13434882,13500418,13565957,13631489,13697029,13762562,13828097,13893633,13959172,14024705,14155778,14221314,14286849,14352386,14417922,14483460,14548993,14614529,14680065,14745602,14811137,14876673,14942219,15073281,15204353,15269889,15335426,15400961,15466498,15532033,15597569,15663105,15728642,15794177,15859714,15925250,16056321,16121858,16187393,16449539,16515074,16646146,16711682,16842754,16908289,16973825,17039361,17104898,17235969,17367043,17432579,17498113,17694721,17760259,17825794,17956865,18153473,18219009,18284545,18350083,18415617,18546689,18612225,18677761,18743297,18808835,18874372,18939905,19005442,19136513,19202049,19333121,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20119555,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643842,20709377,20840449,20905985,20971523,21037057,21102593,21168129,21233665,21299201,21430273,21495809,21561345,21626881,21692417,21757963,21823489,21954563,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675467,22740993,22806529,22872065,22937601,23003137,23068683,23134219,23199755,23265291,23330827,23461889],"turned":[720898,2752514,16646145,17104897,20643842]} \ No newline at end of file diff --git a/docs/fti/FTI_117.json b/docs/fti/FTI_117.json index 2fab170..044d53b 100644 --- a/docs/fti/FTI_117.json +++ b/docs/fti/FTI_117.json @@ -1 +1 @@ -{"useguilayout":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"url":[13107201],"unique":[14221313,15990785,19005441],"uint":[3866625,4390913,4456450,5373953,7733249,8192001,8519681,8585217,8716289,8847361,8978433,9043969,9502721,9633793,11206657,11337729,12189697,12582913,14483457,15138817,15990785,16121857,16252929,16580609,16646145,16842753,17563649],"unityengine":[9961476,16711682],"ump":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516],"uint32":[3866625,4390913,4456450,5373953,6619137,7733249,8192002,8519682,8585219,8716289,8847362,8978434,9043970,9502722,9633794,11141127,11206658,11337729,12189697,12582913,13041665,13500423,13565953,14483458,15138817,15335425,15597570,15990785,16121857,16252929,16580609,16646145,16777217,16842753,17367043,17563649,17825793,18743303,18808839,18874375,18939911,19070983,19136519,19333121],"updated":[65537,917505,18350081],"unity":[786433,5046273,17760257],"user":[8519682,8847362,8978434,9043970,9175042,9306114,9437186,9502722,9633794,9699330,9764866,9830402,9895938,10027010,10092546,10158082,10289154,10354690,10485762,10813442,10878978,11075586,11206658,11665410,12845058,13762562,14614530,15466498],"using":[9109505,9568257,17760257],"udp":[589825,3670017,18284545],"uses":[262146,1703937,2752513,17235970],"used":[262147,458753,786433,2162689,2621441,2949121,3276801,5046273,8716289,11468801,11862018,14090241,16973825,17235972,17629185,17760257,18612225,18874369,19005441],"uint16":[1376257,3211265,7798786,13041665,16777217,17039361],"ushort":[1376257,3211265,7798785,17039361]} \ No newline at end of file +{"uint64":[12779521,12910598,13369345,15138817,17039363,17825796,18481153,23396353],"useguilayout":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"url":[19398657],"unique":[20447233,20905985,21757953],"uint":[3997697,5505026,5832705,6881281,7143425,8323073,8388609,8519681,9043969,9109505,9175041,9240577,9371649,9633793,9699329,10354689,10420225,12517377,12582914,15269889,16056321,16711681,17104897,17760257,18153473,18219009,18546689,18939905,20905985,20971521,21168129,21954561],"ulong":[12779521,12910594,13369345,17039361,17825793],"unityengine":[10878980,18874370],"ump":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820],"uint32":[3997697,5505026,5832705,6881281,7143425,7274497,8323075,8388610,8519682,8847367,9043970,9109506,9175042,9240577,9371650,9633794,9699330,9764871,10223623,10354689,10420225,12517377,12582918,14942215,15138817,15269889,16056323,16711684,17104898,17170433,17629186,17760257,17891329,18153473,18219009,18481153,18546689,18939905,19267585,19464195,19660801,20054017,20905985,20971521,21168129,21954561,22544385,23134215,23199751,23265287,23330823,23396353],"updated":[327681,1048577,22937601],"unity":[1376257,4456449,22675457],"user":[8388610,8519682,8912898,9109506,9175042,9306114,9371650,9437186,9502722,9633794,9699330,9830402,9895938,9961474,10027010,10158082,10289154,10551298,10616834,10682370,11206658,11468802,12320770,12451842,13107202,13172738,13565954,13697026],"using":[10747905,11272193,22675457],"udp":[458753,3473409,22020097],"uses":[720898,2752513,3211265,20643842],"used":[655361,720899,1376257,1835009,2031617,3276801,3342337,4456449,9240577,15007745,15990786,17694721,20643844,21233665,21299201,21757953,22151169,22413313,22675457,23068673,23199745],"uint16":[1507329,2949121,8781826,13631489,13762561,15400963,15925252,17170433,18612225,19660801],"ushort":[1507329,2949121,8781825,13631489,13762561,15400961,15925249,18612225]} \ No newline at end of file diff --git a/docs/fti/FTI_118.json b/docs/fti/FTI_118.json index 5b12679..b117a18 100644 --- a/docs/fti/FTI_118.json +++ b/docs/fti/FTI_118.json @@ -1 +1 @@ -{"verified":[6488066,13959169,15204353,19267586],"valid":[14417921,16842753,17760257],"values":[7798785,13041665,16777217],"virtual":[8126465,8454145,8912897],"view":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"versions":[262145,3211265,17235969],"vector3":[4456450,9961476,16711683],"value":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6815745,7208961,7340033,7405569,7602177,7667713,7733249,8060929,8388609,8585217,8650753,8716289,11272193,11599873,11927553,12189697,12648451,12713985,13303809,13959169,14155777,14876673,14942209,15007745,15073281,15204353,15269889,15400961,15532033,15663105,15728641,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16384001,16515073,16580609,16646145,16711681,16842753,16908289,16973825,17039361,17170433,17301505,17432577,17498113,17563649,17956865,18153473],"variables":[12976130,17891329,18350081],"version":[262145,917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211266,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876674,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235970,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"valuetype":[5963779,16777219],"void":[8126465,8323073,8454145,8519681,8847361,8912897,8978433,9043969,9175041,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10551297,10682369,10813441,10878977,10944513,11075585,11206657,11337729,11403265,11534337,11665409,11730945,11796481,12255233,12320769,12451841,12582913,12648449,12845057,13172737,13369345,13762561,13828097,13893633,14483457,14614529,15138817,15466497,15859713,16318465]} \ No newline at end of file +{"verified":[7077890,18808833,20119553,22347778],"valid":[20840449,21168129,22675457],"values":[8781825,17170433,19660801],"virtual":[8650753,8716289,8978433],"view":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"versions":[720897,2949121,20643841],"vector3":[5505026,10878980,18874371],"value":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6881281,7012353,7143425,7340033,7471105,7536641,7864321,7929857,7995393,8060929,8257537,8323073,8585217,9240577,11927553,12124161,12189697,12517377,12582916,12648449,12713985,12779521,12845059,12910596,12976129,13041665,13369345,13434881,13500417,13631489,13762561,13828097,13893633,13959169,14352385,14417921,14483457,14680065,14876673,15073281,15269889,15663105,15859713,16121857,16449537,16515073,16908289,17367041,17432577,17956865,18153473,18219009,18284545,18546689,18612225,18677761,18808833,18874369,18939905,19136513,19202049,19333121,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20709377,20905985,20971521,21102593,21168129,21495809,21823489,21954561,22085633,22282241,22413313,22609921],"variables":[17563650,22806529,22937601],"version":[720897,917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949122,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483458,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643842,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"valuetype":[5767171,19660803],"void":[8192001,8388609,8519681,8650753,8716289,8912897,8978433,9109505,9175041,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10158081,10289153,10354689,10420225,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11403265,11468801,11534337,11665409,11730945,11862017,11993089,12058625,12320769,12386305,12451841,12845057,13107201,13172737,13238273,13303809,13565953,13697025,14024705,14090241,14155777,14221313,14286849,14614529,14745601,14811137,15007745,15204353,15335425,15400961,15466497,15597569,15728641,15794177,15925249,16056321,16187393,16646145,16711681,16842753,17039361,17104897,17235969,17301505,17760257,17825793,18415617,18743297,19529729]} \ No newline at end of file diff --git a/docs/fti/FTI_119.json b/docs/fti/FTI_119.json index 88ddc1e..9920d72 100644 --- a/docs/fti/FTI_119.json +++ b/docs/fti/FTI_119.json @@ -1 +1 @@ -{"warp":[1638401,5177345,19070977],"web":[13107201],"wait":[262145,1572865,17235969],"websockets":[589826,3670019,9109505,9568257,17760257,18284546],"write":[11862017,18808833],"warpondestinationchange":[1638401,5177346,19070977],"wheter":[196609,262150,327681,524289,1179649,1245185,1769473,1900545,2031617,2097153,2555905,3145729,3342337,5963777,7667713,14417922,16384001,16449537,16777217,17235974,17760258,17956865,18022401,18481153]} \ No newline at end of file +{"writefloatarray":[6750209,16842757,22151169],"writeshort":[6750209,14614532,22151169],"writeintarray":[6750209,14155781,22151169],"writeuintarray":[6750209,16711685,22151169],"writedouble":[6750209,15204356,22151169],"writesbyte":[6750209,15794180,22151169],"writeuint":[6750209,16056324,22151169],"writelongarray":[6750209,15466501,22151169],"warp":[851969,5177345,23265281],"writeint":[6750209,17235972,22151169],"writebyte":[6750209,14286852,22151169],"web":[19398657],"writeulong":[6750209,17039364,22151169],"writealignbits":[6750209,17301507,22151169],"wait":[720897,1572865,20643841],"writedoublearray":[6750209,15728645,22151169],"websockets":[458754,3473411,10747905,11272193,22020098,22675457],"writestring":[6750209,15597572,22151169],"writesbytearray":[6750209,14221317,22151169],"writefloat":[6750209,16187396,22151169],"writelong":[6750209,14811140,22151169],"writeulongarray":[6750209,17825797,22151169],"writeushortarray":[6750209,15925253,22151169],"writeshortarray":[6750209,15335429,22151169],"writebool":[6750209,14024708,22151169],"writeushort":[6750209,15400964,22151169],"write":[15990785,23134209],"written":[15663105,16515073],"writes":[6750209,16515073,19070977,22151169],"writebytearray":[6750209,14745605,22151169],"warpondestinationchange":[851969,5177346,23265281],"wheter":[131073,196609,262145,720902,1245185,1441793,1703937,1900545,2097153,2424833,2686977,3407873,3801089,5767169,7929857,18350081,19005441,19333121,19660801,20578305,20643846,20840450,21626881,22675458]} \ No newline at end of file diff --git a/docs/fti/FTI_120.json b/docs/fti/FTI_120.json index a6502ab..8fe90a0 100644 --- a/docs/fti/FTI_120.json +++ b/docs/fti/FTI_120.json @@ -1 +1 @@ -{"xml":[262146,2818049,3407873,17235970]} \ No newline at end of file +{"xml":[720898,2621441,3080193,20643842]} \ No newline at end of file diff --git a/docs/fti/FTI_97.json b/docs/fti/FTI_97.json index f0614bb..f1d538d 100644 --- a/docs/fti/FTI_97.json +++ b/docs/fti/FTI_97.json @@ -1 +1 @@ -{"audio":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"allow":[262145,2097153,17235969],"assembly":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"attribute":[5242884,5898244,12976130,13238273,13434881,17891336,18350088],"away":[262145,3604481,17235969],"animator":[14090242,16973829,18874370],"average":[14745601,16187393,18612225],"aes":[7143426,11599873,12713985,18087938],"assumed":[1048577,5570561,19136513],"api":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121],"animations":[11993089,14090241,16973825,18874370],"accepted":[262145,2621441,17235969],"administrator":[6291457],"algorithms":[7208961],"approval":[262145,786433,1769473,4456449,17235969,17760257],"avgtimebetweenpointsms":[14745601,16187394,18612225],"assumesyncedsends":[1048577,5570562,19136513],"acts":[786433,5046273,17760257],"assigned":[393217,1376257,16777217],"available":[13107201],"animation":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"address":[262145,1966081,13107201,17235969],"array":[6488065,11599873,11927554,12713985,15138817,19267585],"allowpassthroughmessages":[262145,2097154,17235969],"action":[4259842,4390914,4456452,5373954,6619140,8716292,13893639,14483463,15335428,19333124],"aeskey":[458753,3276802,17629185],"attributes":[65537,917506,5242881,5898241,7536642,7929858,12976129,13238273,13434881,17891331,18350083],"abstract":[18808833],"application":[786433,4521985,14417921,17170433,17760258],"automatically":[1,12976130,17891329,18350081],"accuracy":[262145,1703937,17235969]} \ No newline at end of file +{"audio":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"allow":[720897,1441793,20643841],"assembly":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"allocates":[6750209,15663105,16318465,19070977,22151170],"allocated":[15663105],"attribute":[5701636,5898244,17563650,19595265,19726337,22806536,22937608],"away":[720897,3538945,20643841],"animator":[21299202,22413317,23199746],"average":[21037057,22085633,23068673],"aes":[6684674,16449537,17367041,23003138],"assumed":[1638401,5308417,23330817],"api":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"animations":[16252929,21299201,22413313,23199746],"accepted":[720897,2031617,20643841],"administrator":[7602177],"algorithms":[7340033],"approval":[720897,1376257,1900545,5505025,20643841,22675457],"avgtimebetweenpointsms":[21037057,22085634,23068673],"assumesyncedsends":[1638401,5308418,23330817],"acts":[1376257,4456449,22675457],"assigned":[589825,1507329,19660801],"available":[19398657],"animation":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"address":[720897,1769473,19398657,20643841],"array":[6750209,7077889,15663106,16449537,17367041,17432578,17760257,19070977,22151169,22347777],"allowpassthroughmessages":[720897,1441794,20643841],"action":[4325378,5505028,5832706,6881282,7274500,9240580,16646151,17104903,19267588,22544388],"aeskey":[655361,3342338,21233665],"attributes":[327681,917506,1048578,5701633,5898241,6815746,6946818,17563649,19595265,19726337,22806531,22937603],"abstract":[23134209],"application":[1376257,4849665,20840449,21495809,22675458],"automatically":[1,17563650,22806529,22937601],"accuracy":[720897,2752513,20643841]} \ No newline at end of file diff --git a/docs/fti/FTI_98.json b/docs/fti/FTI_98.json index 917940a..352e170 100644 --- a/docs/fti/FTI_98.json +++ b/docs/fti/FTI_98.json @@ -1 +1 @@ -{"binary":[6422531,6488065,8519681,8978433,9043969,9306113,9437185,9502721,9633793,9764865,9830401,9895937,10027009,10158081,10289153,10354689,10485761,10813441,11075585,11141128,11206657,11665409,11927554,12124162,12189698,12845057,13303810,13369346,13500424,13565953,13631489,13959171,14155782,14352385,14614529,14876676,15204355,15466497,15597570,16121858,18219009,18546689,18677761,18743304,18808840,18874376,18939912,19070984,19136520,19202054,19267587],"box":[13107201],"broadcastmessage":[7077892,7274500,9109508,11141124,13500420,17760260,18612228,18743300,18808836,18874372,18939908,19005444,19070980,19136516],"behaviour":[14024706,14090242,14221314,14286850,14417922,14548994,14745602,17760259,18612227,18808835,18874371,19005443,19070979,19136515],"buffer":[262145,2293761,6488066,7143426,8519681,8847361,8978433,9043969,9175041,9306113,9502721,9633793,9699329,9764865,10092545,10158081,10289153,10878977,11075585,11141140,11206657,11599874,11665409,12713986,12845057,13500436,13565953,13631489,13762561,13959169,14352385,15204353,15466497,15597572,17235969,17367046,17825794,18087938,18219009,18415618,18546689,18677761,18743316,18808852,18874388,18939924,19070996,19136532,19267586],"binaryserializer":[6422531,12124161,13369346,14155778,14876674,19202052],"binaryignore":[5242883,7536644,12976129,13238275,17891334],"based":[6619137,14483457,15335425,19333121],"bool":[786433,1179649,1245185,1703937,1769473,1900545,2031617,2097153,2555905,3145729,3342337,3670017,3932161,4456449,4521985,4718593,4784129,5046274,5111809,5177345,5439489,5570561,5767169,7340033,7405569,7602177,7667713,7798786,8060929,8388609,8650753,11272193,12189697,12648449,13303809,14942209,15073281,15269889,15400961,15532033,15663105,15728641,16056321,16121857,16384001,16908289,17301505,17498113,17760257,17956865,18153473],"base":[11862017,18808833],"bytes":[7143426,11599873,11927553,12713985,18087938],"byte":[1441794,1507330,2621442,3276802,4456450,6488065,7602178,7798787,8519683,8650756,8716290,8978435,9043971,9306115,9502723,9633795,9764867,10158083,10289155,11075587,11141134,11206659,11599879,11665411,11927558,12189698,12713991,12845059,13041665,13303810,13500430,13565953,13631489,13959173,14155778,14352385,14876674,15204357,15466499,15597571,16121858,16777217,17367043,17825793,18219009,18415617,18546689,18677761,18743310,18808846,18874382,18939918,19070990,19136526,19267585],"background":[786433,4521985,17760257],"boolean":[1179649,1245185,1703937,1769473,1900545,2031617,2097153,2555905,3145729,3342337,3670017,3932161,4456449,4521985,4718593,4784129,5046273,5111809,5177345,5439489,5570561,5767169,7077896,7274504,7340033,7405569,7602179,7667713,7798788,8060929,8388609,8650753,9109512,11141128,11272193,12189697,12648451,13041666,13303809,13500424,14942209,15073281,15269889,15400961,15532033,15663105,15728641,16056321,16121857,16384001,16777218,16908289,17301505,17498113,17760264,17956865,18153473,18612232,18743304,18808840,18874376,18939912,19005448,19070984,19136520]} \ No newline at end of file +{"binary":[6422529,6750209,7077889,8388609,8519681,8847368,8912897,9175041,9371649,9437185,9633793,9699329,9764872,9830401,9895937,10027009,10223624,10289153,10551297,10616833,10682369,11206657,11468801,12124164,12189700,12320769,12451841,12517381,12582917,12648453,12713989,12779524,12910597,12976132,13041668,13107201,13238274,13369349,13434885,13500421,13565953,13631492,13697025,13762565,13828100,13893636,13959174,14024708,14090243,14155781,14221317,14286852,14352389,14417925,14483460,14548995,14614532,14680068,14745605,14811140,14876676,14942216,15007746,15073284,15138817,15204356,15269892,15335429,15400964,15466501,15532035,15597572,15663106,15728645,15794180,15859717,15925253,16056324,16121858,16187396,16318467,16384002,16515075,16711685,16842757,16908290,17039364,17235972,17301507,17432578,17629186,17825797,17891329,18022401,18481153,18808835,19070977,20119555,20774913,20971522,21430276,21889025,21954562,22151173,22216705,22347779,22478849,23134216,23199752,23265288,23330824,23396356,23461894],"box":[19398657],"broadcastmessage":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820],"behaviour":[20381698,20447234,20840450,21037058,21299202,21561346,21692418,21757955,22675459,23068675,23134211,23199747,23265283,23330819],"buffer":[720897,2359297,6684674,6750209,7077890,8388609,8519681,8847380,8912897,9109505,9175041,9306113,9371649,9437185,9502721,9633793,9699329,9764884,9830401,9961473,10027009,10158081,10223636,11206657,11468801,12320769,12451841,13172737,14942228,16449538,16515076,17367042,17629188,17891329,18022401,18808833,19070977,19464198,20054018,20119553,20643841,20774913,21364738,21889025,22151169,22216705,22347778,22478849,23003138,23134228,23199764,23265300,23330836],"binaryserializer":[13238274,13959170,14483458,15532035,16384001,23461892],"binaryignore":[5701635,6815748,17563649,19595267,22806534],"based":[7274497,17104897,19267585,22544385],"bitwriter":[6750211,14024708,14155781,14221317,14286852,14614532,14745605,14811140,15007747,15204356,15335429,15400964,15466501,15597572,15663106,15728645,15794180,15925253,16056324,16187396,16318467,16384001,16515075,16711685,16842757,16908290,17039364,17235972,17301507,17825797,19070978,22151175],"binaryhelpers":[12582917,12910597,15138818,16384001,18481154,23396356],"bool":[917505,1245185,1376257,1441793,1703937,1900545,2097153,2424833,2686977,2752513,3407873,3473409,3801089,4063233,4456450,4849665,4980737,5111809,5177345,5308417,5373953,5439489,5505025,6488065,7471105,7864321,7929857,7995393,8060929,8257537,8585217,8781826,11927553,12845057,14024705,14155777,14221313,14745601,14876673,15335425,15466497,15728641,15925249,16121857,16711681,16842753,17825793,18284545,18677761,19136513,19202049,19333121,19791873,19857409,19922945,20185089,20250625,20316161,20512769,20578305,20709377,20971521,21954561,22675457],"base":[15990785,23134209],"bitreader":[6422531,12124164,12189700,12517381,12648453,12713989,12779524,12976132,13041668,13369349,13434885,13500421,13631492,13762565,13828100,13893636,14090243,14352389,14417925,14548997,14680068,14876676,15073284,15269892,15859717,16384001,21430279],"bytes":[6684674,6750209,16449537,16515073,16908290,17367041,17432577,22151169,23003138],"byte":[1310722,2031618,2162690,3342338,5505026,6750209,7077889,7471108,7995394,8388611,8519683,8781827,8847374,8912899,9175043,9240578,9371651,9437187,9633795,9699331,9764878,9830403,10027011,10223630,11206659,11468803,12189698,12320771,12451843,12713986,13959170,14286852,14483458,14548995,14745605,14942222,15663106,16121858,16449543,16515076,17170433,17367047,17432582,17629187,17891329,18022401,18808837,19070977,19464195,19660801,20054017,20119557,20774913,20971522,21364737,21889025,21954562,22151169,22216705,22347777,22478849,23134222,23199758,23265294,23330830],"background":[1376257,4849665,22675457],"boolean":[917505,1245185,1441793,1703937,1900545,2097153,2424833,2686977,2752513,3407873,3473409,3801089,4063233,4456449,4849665,4980737,5111809,5177345,5308417,5373953,5439489,5505025,6488065,7471105,7733256,7864321,7929857,7995395,8060929,8257537,8585217,8781828,8847368,9568264,9764872,10223624,10747912,11927553,12845059,14024707,14155780,14221316,14745604,14876673,14942216,15335428,15466500,15728644,15925252,16121857,16711684,16842756,17170434,17825796,18284545,18677761,19136513,19202049,19333121,19660802,19791873,19857409,19922945,20185089,20250625,20316161,20512769,20578305,20709377,20971521,21757960,21954561,22675464,23068680,23134216,23199752,23265288,23330824]} \ No newline at end of file diff --git a/docs/fti/FTI_99.json b/docs/fti/FTI_99.json index 956198e..5087784 100644 --- a/docs/fti/FTI_99.json +++ b/docs/fti/FTI_99.json @@ -1 +1 @@ -{"compare":[7340033,7405570,8388610],"comparetag":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"creates":[6946817,15138817,17104897],"connectaddress":[262145,1966082,17235969],"channelname":[8519683,8847363,8978435,9043971,9175043,9306115,9437187,9502723,9633795,9699331,9764867,9830403,9895939,10027011,10092547,10158083,10289155,10354691,10485763,10813443,10878979,11075587,11206659,11665411,12845059,13762563,14614531,15466499],"connecting":[262145,1835009,17235969],"check":[13107201],"clientconnectionbuffertimeout":[262145,1572866,17235969],"connect":[262146,1966081,2490369,17235970],"collider2d":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"connectionid":[393218,1376259,7798786,16777218],"clears":[6422529,13369345,19202049],"controlling":[12386305,19333121],"changeownership":[7274497,11337730,19005441],"chunk":[11927553,12124161,13959169,15204353,19267585],"code":[7208961,11862017,18808833],"core":[655361,786433,851969,3538946,3932162,4063234,4128770,4259842,4390914,4456450,4521986,5046274,5373954,6619137,6750209,6946817,7077889,7274497,8126466,8323074,8454146,8519682,8585220,8716290,8847362,8912898,8978434,9043970,9109505,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961476,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11075586,11141121,11206658,11337730,11534338,11665410,11796482,11862017,12320770,12386305,12582914,12845058,13565953,13631489,13762562,13893634,14024705,14221313,14352385,14417921,14483458,14614530,14745601,14811137,14942210,15073282,15138818,15269890,15335425,15400962,15466498,15532034,15597569,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16187394,16252930,16318467,16384002,16515074,16580610,16646146,16711683,16842754,16908290,17039362,17104899,17170434,17301506,17367041,17432578,17498114,17563650,17694723,17760259,17825793,17956866,18153474,18219009,18415617,18546689,18612227,18677761,18808835,18874369,19005443,19070977,19136513,19333123],"constantforce":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"cryptography":[7143425,11599874,12517377,12713986,18087939],"configuration":[11468801,17235969],"correctiondelay":[1638401,6815746,19070977],"constructor":[6553601,6881281,7536641,7798785,7864321,7929857,7995393,8192001,8257537,8781825,9240577,10420225,10616833,10747905,11010049,12058625,12779521,13041665],"converts":[6488066,13959169,15204353,19267586],"channels":[262146,2162691,17235970],"connects":[786433,4390913,17760257],"connectiondata":[262145,2621442,17235969],"clienti":[8519681,8847361,9043969,9175041,9437185,9633793,9895937,11206657,14483457],"clients":[262145,2490369,8519681,8847361,9043969,9175041,9437185,9633793,9699329,9764865,9895937,10027009,10158081,10289153,10485761,10878977,11141136,11206657,13500432,14024705,14090241,14221313,14286849,14417923,14548993,15466497,15597574,16056321,16842753,16908289,17170433,17235969,17367046,17563649,17760259,18546690,18677762,18743312,18808849,18874385,18939920,19005441,19070993,19136529],"client1":[7405571,8388611],"client2":[7405571,8388611],"checks":[6488067,12189697,13303809,16121857,19267587],"compensation":[262145,2883585,11862017,12386305,17235969,18612225,19333121],"connectionapproval":[262145,1769474,17235969],"contain":[13107201],"calls":[14417921,16842753,17760257],"classes":[11468801,11862017,11993089,12124162,12386305,12517377,12976129,19202049],"cryptographyhelper":[7143427,11599874,12517377,12713986,18087940],"connection":[262146,786433,1769473,2621441,4456449,7798785,17235970,17760257],"createpool":[6946817,15138818,17104897],"camera":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"connectedclients":[14417921,17563650,17760257],"complete":[262145,1572865,17235969],"changes":[7274497,11337729,19005441],"cancelinvoke":[7077890,7274498,9109506,11141122,13500418,17760258,18612226,18743298,18808834,18874370,18939906,19005442,19070978,19136514],"connectport":[262145,1835010,17235969],"contact":[6291457],"channel":[196613,327681,983043,1114114,1179649,1245187,2162690,6094851,6553604,11468802,16449537,18481161],"clearcache":[6422529,13369346,19202049],"compareconfig":[6356993,8650756,17235969],"chunks":[6488071,11927555,12189702,13303813,13959172,15204356,16121863,19267591],"correct":[6488067,13303809,13959169,15204353,19267587],"copy":[917505,983041,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5308417,5373953,5439489,5570561,5636097,5701633,5767169,5832705,6029313,6160385,6225921,6553601,6815745,6881281,7208961,7340033,7405569,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11534337,11599873,11665409,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12451841,12582913,12648449,12713985,12779521,12845057,13172737,13303809,13369345,13762561,13828097,13893633,13959169,14155777,14483457,14614529,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15400961,15466497,15532033,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17432577,17498113,17563649,17629185,17694721,17760257,17891329,17956865,18022401,18087937,18153473,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513,19202049,19267585,19333121],"clearbuffer":[12713986],"corrections":[1638402,4915201,6815745,19070978],"collider":[14024705,14090241,14221313,14286849,14417921,14548993,14745601,17760257,18612225,18808833,18874369,19005441,19070977,19136513],"connected":[14417922,17563649,17760258,18153473],"comparison":[13697025,15007745,16777217],"chunksize":[11927554,13959170,15204354],"coroutine":[7077889,7274497,9109505,11141121,13500417,17760257,18612225,18743297,18808833,18874369,18939905,19005441,19070977,19136513],"connectionapprovalcallback":[786433,4456450,17760257],"compares":[6356993,8650753,17235969],"called":[6750209,6946820,7274500,8126465,8454145,8912897,11141123,11337729,11534337,11796481,12320769,12582913,13500418,15138817,15859713,16318465,16711681,17104900,17694721,18743298,18808835,18874370,18939906,19005444,19070978,19136514],"component":[7077926,7274534,9109542,11141158,11862020,11993091,13500454,14024724,14090261,14221332,14286868,14417940,14549012,14745621,16515073,16973825,17760316,18612286,18743334,18808891,18874429,18939942,19005500,19071036,19136572],"collections":[8519681,8847361,9437185,9633793,12189697,13303809,13959170,15204354,16121857],"callback":[786436,4259841,4390913,4456449,5373953,8716289,17760260],"class":[65537,196609,262145,327681,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,6029313,6094849,6160385,6225921,6356993,6422531,6488065,6553602,6619137,6684673,6750209,6815745,6881282,6946817,7012353,7077889,7143425,7274497,7471105,7536642,7602177,7864322,7929858,7995394,8126465,8257538,8323073,8454145,8519681,8585217,8650753,8716289,8781826,8847362,8912897,8978433,9043969,9109505,9175042,9240578,9306113,9371649,9437187,9502721,9568257,9633793,9699330,9764865,9830403,9895939,9961473,10027011,10092546,10158081,10223617,10289153,10354691,10420226,10485763,10551297,10616834,10682369,10747906,10813443,10878978,10944513,11010050,11075585,11141129,11206657,11272193,11337729,11403265,11468802,11534337,11599873,11665409,11730945,11796481,11862018,11927553,11993089,12058626,12124163,12189697,12255233,12320769,12386308,12451841,12517378,12582913,12648449,12713985,12779522,12845057,12976129,13172737,13238273,13303809,13369345,13434881,13500425,13565954,13631490,13762562,13828097,13893633,13959169,14024705,14090241,14155778,14221313,14286849,14352386,14417921,14483457,14548993,14614531,14680065,14745601,14811137,14876675,14942209,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597571,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449539,16515073,16580609,16646145,16711681,16842753,16908289,16973825,17039361,17104899,17170433,17235971,17301505,17367041,17432577,17498113,17563649,17629187,17694723,17760259,17825793,17891331,17956865,18022404,18087939,18153473,18219010,18284547,18350083,18415617,18481155,18546690,18612227,18677762,18743305,18808844,18874379,18939913,19005443,19070987,19136523,19202053,19267587,19333123],"checking":[262145,2359297,17235969],"cache":[6422529,7602179,13369345,19202049],"clientid":[458753,3866626,5963779,6619137,7667713,7733249,8060929,8192003,8978436,9502724,10092548,10813444,11141124,11337729,11468801,12582915,13041665,13500420,13565954,14024705,14090241,14221313,14286849,14417921,14483459,14548993,15335425,16580609,16646145,16777221,16842753,17629185,17760257,17825794,18743300,18808837,18874373,18939908,19005441,19070981,19136517,19333121],"client":[262146,393219,458755,786434,1376257,1441793,1507329,1572865,2621441,3080193,3276801,3735553,4390913,5373953,7274497,7733249,8126465,8192001,8978433,9109507,9306113,9371649,9502721,9568257,9830401,10092545,10354689,10551297,10813441,11075585,11141133,11468801,11665409,11796481,12845057,12976130,13500429,13565954,13631490,13762561,14024706,14090242,14286850,14352386,14417923,14548994,14614529,15269889,15663105,16777219,16842753,17235971,17629187,17760264,17825794,17891329,17956865,18153473,18219010,18350081,18415618,18743309,18808847,18874383,18939917,19005441,19070991,19136527],"current":[786433,4128769,5963777,6356993,7340035,8650753,16777217,17235969,17760257],"clientids":[8519682,8847362,9043970,9175042,9437186,9633794,9895938,11206658],"change":[65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638402,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177346,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070978,19136513,19202049,19267585,19333121],"counter":[8323074],"constructors":[16449537,16777217,17235969,17629185,17760257,17891329,18022401,18284545,18350081,18481153,18612225,18808833,18874369,19005441,19070977,19136513]} \ No newline at end of file +{"compare":[7864321,8257538,8585218],"comparetag":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"creates":[6553601,17760257,22740993],"connectaddress":[720897,1769474,20643841],"channelname":[8388611,8519683,8912899,9109507,9175043,9306115,9371651,9437187,9502723,9633795,9699331,9830403,9895939,9961475,10027011,10158083,10289155,10551299,10616835,10682371,11206659,11468803,12320771,12451843,13107203,13172739,13565955,13697027],"connecting":[720897,2293761,20643841],"check":[19398657],"collector":[16318465,22151169],"clientconnectionbuffertimeout":[720897,1572866,20643841],"connect":[720898,1769473,2228225,20643842],"collider2d":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"connectionid":[589826,1507331,8781826,19660802],"clears":[13238273,15532033,23461889],"controlling":[16580609,22544385],"changeownership":[9568257,10420226,21757953],"chunk":[16384001,17432577,18808833,20119553,22347777],"code":[7340033,15990785,23134209],"core":[393217,524289,1376257,3670018,3866626,4063234,4325378,4456450,4718594,4849666,5505026,5832706,6553601,6619137,6881282,7274497,7733249,8192002,8323076,8388610,8519682,8650754,8716290,8847361,8912898,8978434,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568257,9633794,9699330,9830402,9895938,9961474,10027010,10092546,10158082,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747905,10813442,10878980,11010050,11075586,11206658,11272194,11403266,11337730,11468802,11599874,11665410,11730946,11862018,12320770,12451842,13107202,13172738,13565954,13697026,15990785,16580609,16646146,17104898,17498113,17629185,17760258,17891329,18022401,18153474,18219010,18284546,18415618,18546690,18612226,18677762,18743299,18874371,18939906,19136514,19202050,19267585,19333122,19464193,19529730,19791874,19857410,19922946,20054017,20185090,20250626,20316162,20381697,20447233,20512770,20578306,20709378,20774913,20840449,20905986,21037057,21102594,21168130,21364737,21495810,21757955,21823490,21889025,22085634,22216705,22282242,22478849,22544387,22609922,22675459,22740995,22872067,23068675,23134211,23199745,23265281,23330817],"constantforce":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"cryptography":[6684673,16449538,16777217,17367042,23003139],"configuration":[17694721,20643841],"correctiondelay":[851969,4784130,23265281],"constructor":[6815745,6946817,7208961,7405569,7667713,7798785,8126465,8454145,8781825,9043969,10092545,10485761,11141121,11337729,11599873,11796481,12255233,14548993,16318465,17170433],"converts":[7077890,18808833,20119553,22347778],"channels":[720898,1835011,20643842],"connects":[1376257,5832705,22675457],"connectiondata":[720897,2031618,20643841],"clienti":[8519681,9109505,9175041,9371649,9502721,9633793,9895937,10682369,17104897],"clients":[720897,2228225,8519681,8847376,8912897,9109505,9175041,9306113,9371649,9437185,9502721,9633793,9764880,9830401,9895937,9961473,10027009,10223632,10289153,10551297,10682369,14942224,17629190,18677761,18939905,19464198,19791873,20381697,20447233,20643841,20840451,21168129,21299201,21495809,21561345,21692417,21757953,21889026,22216706,22675459,23134225,23199761,23265297,23330833],"client1":[8257539,8585219],"client2":[8257539,8585219],"checks":[7077891,16121857,20971521,21954561,22347779],"compensation":[720897,3014657,15990785,16580609,20643841,22544385,23068673],"connectionapproval":[720897,1900546,20643841],"contain":[19398657],"calls":[20840449,21168129,22675457],"classes":[15990785,16252929,16384002,16580609,16777217,17563649,17694721,23461889],"cryptographyhelper":[6684675,16449538,16777217,17367042,23003140],"connection":[720898,1376257,1900545,2031617,5505025,8781825,20643842,22675457],"createpool":[6553601,17760258,22740993],"camera":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"connectedclients":[18939906,20840449,22675457],"complete":[720897,1572865,20643841],"changes":[9568257,10420225,21757953],"cancelinvoke":[7733250,8847362,9568258,9764866,10223618,10747906,14942210,21757954,22675458,23068674,23134210,23199746,23265282,23330818],"connectport":[720897,2293762,20643841],"contact":[7602177],"channel":[131077,196609,983043,1179650,1245187,1703937,1835010,6160387,7208964,17694722,18350089,19005441],"clearcache":[13238274,15532033,23461889],"compareconfig":[5963777,7471108,20643841],"chunks":[7077895,16121861,17432579,18808836,20119556,20971527,21954566,22347783],"correct":[7077891,16121857,18808833,20119553,22347779],"copy":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"clearbuffer":[17367042],"ctor":[14548993],"corrections":[851970,4784129,5046273,23265282],"collider":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"connected":[18939905,19922945,20840450,22675458],"comparison":[17956865,19660801,19988481],"chunksize":[17432578,18808834,20119554],"coroutine":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"connectionapprovalcallback":[1376257,5505026,22675457],"compares":[5963777,7471105,20643841],"called":[6553604,6619137,8650753,8716289,8847363,8978433,9568260,9764866,10223618,10354689,10420225,11075585,11730945,14942210,17760257,18415617,18743297,18874369,19529729,21757956,22740996,22872065,23134211,23199746,23265282,23330818],"component":[7733286,8847398,9568294,9764902,10223654,10747942,14942246,15990788,16252931,20381716,20447252,20840468,21037077,21299221,21561364,21692436,21758012,22282241,22413313,22675516,23068734,23134267,23199805,23265340,23330876],"collections":[9109505,9175041,9633793,9895937,16121857,18808834,20119554,20971521,21954561],"callback":[1376260,4325377,5505025,5832705,6881281,9240577,22675460],"class":[131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1376257,1441793,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815746,6881281,6946818,7012353,7077889,7208962,7274497,7405570,7471105,7536641,7667714,7733249,7798786,7995393,8126466,8192001,8323073,8388609,8454146,8519681,8650753,8716289,8847369,8912897,8978433,9109506,9175041,9240577,9306114,9371649,9437185,9502722,9568257,9633793,9699329,9764873,9830401,9895939,9961474,10027009,10092546,10158082,10223625,10289155,10354689,10420225,10485762,10551299,10616835,10682371,10747905,10813441,10878977,10944513,11010049,11075585,11141122,11206657,11272193,11337730,11403265,11468801,11534337,11599874,11665409,11730945,11796482,11862017,11927553,11993089,12058625,12124161,12189697,12255234,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107203,13172738,13238273,13303809,13369345,13434881,13500417,13565955,13631489,13697027,13762561,13828097,13893633,13959170,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483459,14548994,14614529,14680065,14745601,14811137,14876673,14942217,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532035,15597569,15663105,15728641,15794177,15859713,15925249,15990786,16056321,16121857,16187393,16252929,16318465,16384003,16449537,16515073,16580612,16646145,16711681,16777218,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17498113,17563649,17629187,17694722,17760257,17825793,17891330,18022402,18087937,18153473,18219009,18284545,18350083,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005443,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19726337,19791873,19857409,19922945,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643843,20709377,20774914,20840449,20905985,20971521,21037057,21102593,21168129,21233667,21299201,21364737,21430275,21495809,21561345,21626884,21692417,21757955,21823489,21889026,21954561,22020099,22085633,22151170,22216706,22282241,22347779,22413313,22478850,22544387,22609921,22675459,22740995,22806531,22872067,22937603,23003139,23068675,23134220,23199755,23265291,23330827,23396354,23461893],"checking":[720897,1966081,20643841],"cache":[7995395,13238273,15532033,23461889],"clientid":[655361,3997698,5767171,7143425,7274497,7929857,8060929,8388612,8847364,9043971,9699332,9764868,10158084,10223620,10354691,10420225,10616836,14942212,17104899,17170433,17694721,17891330,18219009,18546689,19267585,19660805,20054018,20381697,20447233,20840449,21168129,21233665,21299201,21561345,21692417,21757953,22544385,22675457,23134213,23199749,23265285,23330821],"client":[589827,655363,720898,1310721,1376258,1507329,1572865,2031617,2162689,3145729,3342337,3735553,5832705,6881281,7143425,8388609,8716289,8847373,9043969,9568257,9699329,9764877,10158081,10223629,10616833,10747907,10813441,11075585,11206657,11272193,11468801,11665409,12320769,12451841,13107201,13172737,13565953,13697025,14942221,17563650,17694721,17891330,18022402,18284545,19136513,19333121,19660803,19922945,20054018,20381698,20643843,20774914,20840451,21168129,21233667,21299202,21364738,21561346,21692418,21757953,22478850,22675464,22806529,22937601,23134223,23199759,23265295,23330831],"current":[1376257,4718593,5767169,5963777,7471105,7864323,19660801,20643841,22675457],"clientids":[8519682,9109506,9175042,9371650,9502722,9633794,9895938,10682370],"change":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851970,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177346,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265282,23330817,23396353,23461889],"counter":[8192002],"constructors":[18350081,19005441,19660801,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817]} \ No newline at end of file diff --git a/docs/fti/FTI_Files.json b/docs/fti/FTI_Files.json index 9583511..920fc27 100644 --- a/docs/fti/FTI_Files.json +++ b/docs/fti/FTI_Files.json @@ -1 +1 @@ -["MLAPI API Reference - Redirect\u0000index.html\u000018","SyncedVar Fields\u0000html/Fields_T_MLAPI_Attributes_SyncedVar.htm\u000051","MLAPI API Reference - Search\u0000search.html\u000012","Channel Fields\u0000html/Fields_T_MLAPI_Data_Channel.htm\u000059","NetworkConfig Fields\u0000html/Fields_T_MLAPI_Data_NetworkConfig.htm\u0000355","MessageType Fields\u0000html/Fields_T_MLAPI_Data_MessageType.htm\u000056","NetId Fields\u0000html/Fields_T_MLAPI_Data_NetId.htm\u000059","NetworkedClient Fields\u0000html/Fields_T_MLAPI_Data_NetworkedClient.htm\u000066","NetworkedPrefab Fields\u0000html/Fields_T_MLAPI_Data_NetworkedPrefab.htm\u000053","TransportHost Fields\u0000html/Fields_T_MLAPI_Data_TransportHost.htm\u000067","NetworkedBehaviour Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u000049","NetworkedAnimator Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u000070","NetworkingManager Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000128","NetworkedObject Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u000046","SyncedVar.hook Field\u0000html/F_MLAPI_Attributes_SyncedVar_hook.htm\u000079","Channel.Name Field\u0000html/F_MLAPI_Data_Channel_Name.htm\u000073","NetworkedTransform Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000124","Channel.Type Field\u0000html/F_MLAPI_Data_Channel_Type.htm\u000072","MessageType.Passthrough Field\u0000html/F_MLAPI_Data_MessageType_Passthrough.htm\u000078","Channel.Encrypted Field\u0000html/F_MLAPI_Data_Channel_Encrypted.htm\u000076","MessageType.Name Field\u0000html/F_MLAPI_Data_MessageType_Name.htm\u000073","NetId.ConnectionId Field\u0000html/F_MLAPI_Data_NetId_ConnectionId.htm\u000074","NetId.HostId Field\u0000html/F_MLAPI_Data_NetId_HostId.htm\u000074","NetId.Meta Field\u0000html/F_MLAPI_Data_NetId_Meta.htm\u000073","NetworkConfig.ClientConnectionBufferTimeout Field\u0000html/F_MLAPI_Data_NetworkConfig_ClientConnectionBufferTimeout.htm\u000083","NetworkedNavMeshAgent Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u000085","NetworkConfig.EnableTimeResync Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableTimeResync.htm\u000097","NetworkConfig.ConnectionApproval Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectionApproval.htm\u000075","NetworkConfig.ConnectPort Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectPort.htm\u000077","NetworkConfig.EnableEncryption Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableEncryption.htm\u000074","NetworkConfig.ConnectAddress Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectAddress.htm\u000073","NetworkConfig.HandleObjectSpawning Field\u0000html/F_MLAPI_Data_NetworkConfig_HandleObjectSpawning.htm\u000078","NetworkConfig.AllowPassthroughMessages Field\u0000html/F_MLAPI_Data_NetworkConfig_AllowPassthroughMessages.htm\u000078","NetworkConfig.Channels Field\u0000html/F_MLAPI_Data_NetworkConfig_Channels.htm\u000079","NetworkConfig.MaxReceiveEventsPerTickRate Field\u0000html/F_MLAPI_Data_NetworkConfig_MaxReceiveEventsPerTickRate.htm\u000084","NetworkConfig.MessageBufferSize Field\u0000html/F_MLAPI_Data_NetworkConfig_MessageBufferSize.htm\u000083","NetworkConfig.EventTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_EventTickrate.htm\u000086","NetworkConfig.ReceiveTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_ReceiveTickrate.htm\u000085","NetworkConfig.MaxConnections Field\u0000html/F_MLAPI_Data_NetworkConfig_MaxConnections.htm\u000077","NetworkConfig.EnableSceneSwitching Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableSceneSwitching.htm\u000075","NetworkConfig.ConnectionData Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectionData.htm\u000090","NetworkConfig.NetworkedPrefabs Field\u0000html/F_MLAPI_Data_NetworkConfig_NetworkedPrefabs.htm\u000079","NetworkConfig.ServerTransports Field\u0000html/F_MLAPI_Data_NetworkConfig_ServerTransports.htm\u000080","NetworkConfig.RSAPrivateKey Field\u0000html/F_MLAPI_Data_NetworkConfig_RSAPrivateKey.htm\u000078","NetworkConfig.SecondsHistory Field\u0000html/F_MLAPI_Data_NetworkConfig_SecondsHistory.htm\u000079","NetworkConfig.RegisteredScenes Field\u0000html/F_MLAPI_Data_NetworkConfig_RegisteredScenes.htm\u000086","NetworkConfig.MessageTypes Field\u0000html/F_MLAPI_Data_NetworkConfig_MessageTypes.htm\u000076","NetworkedClient.OwnedObjects Field\u0000html/F_MLAPI_Data_NetworkedClient_OwnedObjects.htm\u000080","NetworkedPrefab.playerPrefab Field\u0000html/F_MLAPI_Data_NetworkedPrefab_playerPrefab.htm\u000075","NetworkConfig.ProtocolVersion Field\u0000html/F_MLAPI_Data_NetworkConfig_ProtocolVersion.htm\u000080","NetworkedClient.AesKey Field\u0000html/F_MLAPI_Data_NetworkedClient_AesKey.htm\u000078","NetworkConfig.SignKeyExchange Field\u0000html/F_MLAPI_Data_NetworkConfig_SignKeyExchange.htm\u000079","NetworkConfig.RSAPublicKey Field\u0000html/F_MLAPI_Data_NetworkConfig_RSAPublicKey.htm\u000078","TransportHost.Name Field\u0000html/F_MLAPI_Data_TransportHost_Name.htm\u000073","NetworkedObject.NetworkedPrefabName Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkedPrefabName.htm\u000075","NetworkConfig.SendTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_SendTickrate.htm\u000082","TransportHost.Websockets Field\u0000html/F_MLAPI_Data_TransportHost_Websockets.htm\u000081","NetworkedClient.PlayerObject Field\u0000html/F_MLAPI_Data_NetworkedClient_PlayerObject.htm\u000073","NetworkedPrefab.prefab Field\u0000html/F_MLAPI_Data_NetworkedPrefab_prefab.htm\u000073","NetworkedClient.ClientId Field\u0000html/F_MLAPI_Data_NetworkedClient_ClientId.htm\u000073","NetworkingManager.DontDestroy Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DontDestroy.htm\u000081","TransportHost.Port Field\u0000html/F_MLAPI_Data_TransportHost_Port.htm\u000075","NetworkedBehaviour.SyncVarSyncDelay Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SyncVarSyncDelay.htm\u000078","NetworkingManager.NetworkConfig Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkConfig.htm\u000073","NetworkedAnimator.param4 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param4.htm\u000086","NetworkingManager.OnServerStarted Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnServerStarted.htm\u000079","NetworkedAnimator.param2 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param2.htm\u000086","NetworkingManager.OnClientConnectedCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientConnectedCallback.htm\u000084","NetworkingManager.ConnectionApprovalCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectionApprovalCallback.htm\u0000120","NetworkingManager.RunInBackground Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RunInBackground.htm\u000083","NetworkedAnimator.param0 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param0.htm\u000086","NetworkedNavMeshAgent.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_ProximityRange.htm\u000073","NetworkedTransform.InterpolatePosition Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolatePosition.htm\u000072","NetworkedAnimator.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_EnableProximity.htm\u000073","NetworkedAnimator.param3 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param3.htm\u000086","NetworkedNavMeshAgent.DriftCorrectionPercentage Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_DriftCorrectionPercentage.htm\u000076","NetworkedAnimator.param1 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param1.htm\u000086","NetworkingManager.RegenerateRSAKeys Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RegenerateRSAKeys.htm\u000091","NetworkedTransform.InterpolateServer Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolateServer.htm\u000074","NetworkedNavMeshAgent.WarpOnDestinationChange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_WarpOnDestinationChange.htm\u000076","BinaryIgnore Methods\u0000html/Methods_T_MLAPI_Attributes_BinaryIgnore.htm\u0000103","NetworkedAnimator.param5 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param5.htm\u000086","NetworkingManager.OnClientDisconnectCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientDisconnectCallback.htm\u000084","NetworkedNavMeshAgent.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_EnableProximity.htm\u000073","TransportHost Methods\u0000html/Methods_T_MLAPI_Data_TransportHost.htm\u000087","NetworkedTransform.AssumeSyncedSends Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_AssumeSyncedSends.htm\u000083","NetworkedTransform.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_ProximityRange.htm\u000076","NetworkedTransform.MinDegrees Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinDegrees.htm\u000080","NetworkedTransform.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_EnableProximity.htm\u000074","NetworkedTransform.SendsPerSecond Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SendsPerSecond.htm\u000073","SyncedVar Methods\u0000html/Methods_T_MLAPI_Attributes_SyncedVar.htm\u0000103","NetId Methods\u0000html/Methods_T_MLAPI_Data_NetId.htm\u0000125","NetworkedAnimator.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ProximityRange.htm\u000073","Channel Methods\u0000html/Methods_T_MLAPI_Data_Channel.htm\u000087","NetworkedTransform.MinMeters Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinMeters.htm\u000080","NetworkedTransform.SnapDistance Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SnapDistance.htm\u000077","General Error\u0000html/GeneralError.htm\u000033","NetworkConfig Methods\u0000html/Methods_T_MLAPI_Data_NetworkConfig.htm\u0000109","BinarySerializer Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u000067","MessageChunker Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000133","Channel Constructor\u0000html/M_MLAPI_Data_Channel__ctor.htm\u000072","LagCompensationManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000086","MessageType Methods\u0000html/Methods_T_MLAPI_Data_MessageType.htm\u000087","NetworkSceneManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u000056","NetworkedNavMeshAgent.CorrectionDelay Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_CorrectionDelay.htm\u000076","MessageType Constructor\u0000html/M_MLAPI_Data_MessageType__ctor.htm\u000072","NetworkPoolManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000121","NetworkedClient Methods\u0000html/Methods_T_MLAPI_Data_NetworkedClient.htm\u000087","TrackedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000656","CryptographyHelper Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u000090","NetId.GetHashCode Method\u0000html/M_MLAPI_Data_NetId_GetHashCode.htm\u0000105","NetworkedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000704","NetId.Equals Method\u0000html/M_MLAPI_Data_NetId_Equals.htm\u0000122","NetId.Inequality Operator\u0000html/M_MLAPI_Data_NetId_op_Inequality.htm\u0000137","NetworkedPrefab Methods\u0000html/Methods_T_MLAPI_Data_NetworkedPrefab.htm\u000087","BinaryIgnore Constructor\u0000html/M_MLAPI_Attributes_BinaryIgnore__ctor.htm\u000072","NetworkConfig.GetConfig Method\u0000html/M_MLAPI_Data_NetworkConfig_GetConfig.htm\u0000140","NetId.IsHost Method\u0000html/M_MLAPI_Data_NetId_IsHost.htm\u000090","NetId.GetClientId Method\u0000html/M_MLAPI_Data_NetId_GetClientId.htm\u000079","NetId Constructor (Byte, UInt16, Boolean, Boolean)\u0000html/M_MLAPI_Data_NetId__ctor.htm\u0000142","TransportHost Constructor\u0000html/M_MLAPI_Data_TransportHost__ctor.htm\u000072","SyncedVar Constructor\u0000html/M_MLAPI_Attributes_SyncedVar__ctor.htm\u000072","NetworkConfig Constructor\u0000html/M_MLAPI_Data_NetworkConfig__ctor.htm\u000072","NetId.IsInvalid Method\u0000html/M_MLAPI_Data_NetId_IsInvalid.htm\u000092","NetworkedBehaviour.OnGainedOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnGainedOwnership.htm\u000080","NetId Constructor (UInt32)\u0000html/M_MLAPI_Data_NetId__ctor_1.htm\u000092","NetworkedClient Constructor\u0000html/M_MLAPI_Data_NetworkedClient__ctor.htm\u000072","NetworkedBehaviour.DeregisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_DeregisterMessageHandler.htm\u000099","NetId.Equality Operator\u0000html/M_MLAPI_Data_NetId_op_Equality.htm\u0000135","NetworkedBehaviour.OnLostOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnLostOwnership.htm\u000078","NetworkedBehaviour.SendToClients Method (List(UInt32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000154","NetworkedBehaviour.GetNetworkedObject Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm\u0000136","NetworkConfig.CompareConfig Method\u0000html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm\u0000138","NetworkedBehaviour.RegisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm\u0000135","NetworkedPrefab Constructor\u0000html/M_MLAPI_Data_NetworkedPrefab__ctor.htm\u000072","NetworkedBehaviour.SendToClientsTarget(T) Method (List(UInt32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm\u0000168","NetworkedBehaviour.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_NetworkStart.htm\u000084","NetworkedBehaviour.SendToClient Method (UInt32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u0000149","NetworkedBehaviour.SendToClients Method (UInt32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm\u0000149","NetworkingManager Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000689","NetworkedBehaviour.SendToClientsTarget(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm\u0000163","NetworkedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject__ctor.htm\u000074","NetworkedBehaviour.SendToServerTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u0000136","NetworkingManager.StartClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm\u000071","NetworkedBehaviour.SendToClients(T) Method (List(Int32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm\u0000162","NetworkedBehaviour.SendToClientTarget Method (UInt32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u0000157","NetworkingManager.StartClientWebsocket Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm\u000073","NetworkedBehaviour.SendToClientsTarget Method (List(UInt32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000162","NetworkedBehaviour.SendToClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm\u0000143","NetworkedBehaviour.SendToNonLocalClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u0000142","NetworkedBehaviour.SendToServerTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm\u0000144","NetworkedBehaviour.SendToClients(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm\u0000157","NetworkingManager.StartHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm\u0000177","NetworkedBehaviour.SendToNonLocalClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm\u0000150","NetworkedBehaviour.SendToClientTarget(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm\u0000163","NetworkedBehaviour.SendToClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm\u0000128","NetworkingManager.StartServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm\u000071","NetworkedBehaviour.SendToClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm\u0000137","NetworkedBehaviour.SendToServer(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm\u0000135","NetworkingManager Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager__ctor.htm\u000074","NetworkedBehaviour.SendToNonLocalClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm\u0000141","NetworkingManager.StopClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm\u000072","NetworkedBehaviour Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour__ctor.htm\u000074","NetworkingManager.StopHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm\u000072","TrackedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_TrackedObject__ctor.htm\u000074","NetworkedBehaviour.SendToClient(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm\u0000157","NetworkedBehaviour.SendToClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm\u0000134","NetworkingManager.StopServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm\u000072","NetworkedAnimator Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator__ctor.htm\u000074","NetworkedBehaviour.SendToServer Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u0000127","NetworkedBehaviour Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001417","NetworkedBehaviour.SendToClientsTarget Method (UInt32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm\u0000157","NetworkedAnimator.GetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_GetParameterAutoSend.htm\u0000126","NetworkedObject.ChangeOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_ChangeOwnership.htm\u000094","NetworkedNavMeshAgent.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_NetworkStart.htm\u000072","MLAPI.Data Namespace\u0000html/N_MLAPI_Data.htm\u000073","NetworkSceneManager.SwitchScene Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager_SwitchScene.htm\u0000101","CryptographyHelper.Decrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Decrypt.htm\u0000137","NetworkedBehaviour.SendToLocalClient Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u0000127","NetworkedAnimator.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_NetworkStart.htm\u000072","NetworkedObject.RemoveOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_RemoveOwnership.htm\u000084","MLAPI.MonoBehaviours.Core Namespace\u0000html/N_MLAPI_MonoBehaviours_Core.htm\u000071","MessageChunker.GetChunkedMessage Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetChunkedMessage.htm\u0000132","MLAPI.MonoBehaviours.Prototyping Namespace\u0000html/N_MLAPI_MonoBehaviours_Prototyping.htm\u000045","NetworkedNavMeshAgent Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent__ctor.htm\u000074","MLAPI.NetworkingManagerComponents.Binary Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Binary.htm\u000038","MessageChunker.HasMissingParts Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasMissingParts.htm\u0000128","NetworkedAnimator.ResetParameterOptions Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ResetParameterOptions.htm\u000069","NetworkedObject.Spawn Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_Spawn.htm\u000082","MLAPI.NetworkingManagerComponents.Core Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Core.htm\u000046","NetworkedTransform.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_NetworkStart.htm\u000072","MLAPI.NetworkingManagerComponents.Cryptography Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Cryptography.htm\u000030","NetworkedObject.SpawnWithOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnWithOwnership.htm\u0000100","NetworkedAnimator.SetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetParameterAutoSend.htm\u0000139","CryptographyHelper.Encrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Encrypt.htm\u0000142","NetworkedTransform Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform__ctor.htm\u000074","NetworkedBehaviour.SendToLocalClientTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u0000141","NetId Operators\u0000html/Operators_T_MLAPI_Data_NetId.htm\u000072","MLAPI.Attributes Namespace\u0000html/N_MLAPI_Attributes.htm\u000059","NetId Constructor\u0000html/Overload_MLAPI_Data_NetId__ctor.htm\u000066","Page Not Found\u0000html/PageNotFound.htm\u000067","NetworkedAnimator.SetTrigger Method (Int32)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u0000107","BinaryIgnore Properties\u0000html/Properties_T_MLAPI_Attributes_BinaryIgnore.htm\u000047","MessageChunker.IsOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_IsOrdered.htm\u0000114","BinarySerializer.ClearCache Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_ClearCache.htm\u000075","SyncedVar Properties\u0000html/Properties_T_MLAPI_Attributes_SyncedVar.htm\u000047","NetworkedAnimator Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00001657","NetworkedBehaviour.SendToClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u000081","NetworkedBehaviour.SendToServer Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u000069","NetId Properties\u0000html/Properties_T_MLAPI_Data_NetId.htm\u000044","NetworkedBehaviour.SendToLocalClientTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm\u0000147","NetworkedAnimator.SetTrigger Method (String)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger_1.htm\u0000107","LagCompensationManager.Simulate Method (Single, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u0000123","MessageChunker.GetMessageOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageOrdered.htm\u0000176","NetworkedBehaviour Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u0000364","NetworkedAnimator Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u0000432","BinarySerializer.Deserialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Deserialize__1.htm\u0000122","NetworkedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000369","NetworkedNavMeshAgent Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u0000420","NetworkedBehaviour.SendToServerTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u000087","NetworkingManager Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000367","LagCompensationManager.Simulate Method (UInt32, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate_1.htm\u0000136","NetworkedTransform Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000420","NetworkedBehaviour.SendToLocalClient(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm\u0000135","NetworkedAnimator.SetTrigger Method\u0000html/Overload_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u000042","TrackedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000305","LagCompensationManager Properties\u0000html/Properties_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000043","BinarySerializer.Serialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Serialize__1.htm\u0000112","NetworkedBehaviour.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isOwner.htm\u000087","NetId.ServerNetId Property\u0000html/P_MLAPI_Data_NetId_ServerNetId.htm\u000085","NetworkedObject.isPooledObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPooledObject.htm\u000086","NetworkPoolManager.CreatePool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_CreatePool.htm\u0000137","MessageChunker.GetMessageUnordered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageUnordered.htm\u0000178","NetworkedBehaviour.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isClient.htm\u000084","LagCompensationManager.Simulate Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u000088","NetworkedBehaviour.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isServer.htm\u000084","NetworkedBehaviour.SendToNonLocalClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u0000133","NetworkedObject.isSpawned Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isSpawned.htm\u000088","NetworkedBehaviour.SendToClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000159","NetworkedBehaviour.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isHost.htm\u000090","NetworkingManager.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isHost.htm\u000084","NetworkingManager.singleton Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_singleton.htm\u000084","NetworkPoolManager.DestroyPool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPool.htm\u0000101","NetworkedBehaviour.networkedObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkedObject.htm\u000085","NetworkedObject.NetworkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkId.htm\u000090","NetworkedBehaviour.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isLocalPlayer.htm\u000088","MessageChunker.HasDuplicates Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasDuplicates.htm\u0000134","TrackedObject.AvgTimeBetweenPointsMs Property\u0000html/P_MLAPI_MonoBehaviours_Core_TrackedObject_AvgTimeBetweenPointsMs.htm\u000088","NetworkedBehaviour.networkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkId.htm\u000088","NetworkPoolManager.DestroyPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPoolObject.htm\u0000111","NetworkingManager.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isServer.htm\u000085","MessageType Class\u0000html/T_MLAPI_Data_MessageType.htm\u0000171","TrackedObject.TotalPoints Property\u0000html/P_MLAPI_MonoBehaviours_Core_TrackedObject_TotalPoints.htm\u000087","NetworkedObject.OwnerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_OwnerClientId.htm\u000086","NetworkedBehaviour.ownerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm\u000084","NetworkPoolManager.SpawnPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_SpawnPoolObject.htm\u0000161","NetId Structure\u0000html/T_MLAPI_Data_NetId.htm\u0000270","NetworkingManager.MyClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_MyClientId.htm\u000091","NetworkedObject.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isLocalPlayer.htm\u000088","NetworkedAnimator.animator Property\u0000html/P_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_animator.htm\u000091","NetworkedObject.PoolId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_PoolId.htm\u000085","NetworkPoolManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000170","NetworkingManager.NetworkTime Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkTime.htm\u000097","NetworkConfig Class\u0000html/T_MLAPI_Data_NetworkConfig.htm\u0000498","NetworkedObject.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isOwner.htm\u000087","NetworkedBehaviour.SendToClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000205","LagCompensationManager.SimulationObjects Property\u0000html/P_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_SimulationObjects.htm\u000086","NetworkedObject.isPlayerObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPlayerObject.htm\u000085","NetworkingManager.ConnectedClients Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectedClients.htm\u000095","NetworkedClient Class\u0000html/T_MLAPI_Data_NetworkedClient.htm\u0000173","NetworkSceneManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u0000105","NetworkingManager Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u00001180","NetworkedBehaviour.SendToClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u000095","BinaryIgnore Class\u0000html/T_MLAPI_Attributes_BinaryIgnore.htm\u0000190","NetworkingManager.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isClient.htm\u000085","NetworkedPrefab Class\u0000html/T_MLAPI_Data_NetworkedPrefab.htm\u0000169","CryptographyHelper Class\u0000html/T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u0000138","NetworkingManager.IsClientConnected Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_IsClientConnected.htm\u000085","NetworkedBehaviour.SendToLocalClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u000069","TransportHost Class\u0000html/T_MLAPI_Data_TransportHost.htm\u0000181","SyncedVar Class\u0000html/T_MLAPI_Attributes_SyncedVar.htm\u0000206","NetworkedBehaviour.SendToLocalClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u000095","Channel Class\u0000html/T_MLAPI_Data_Channel.htm\u0000177","NetworkedBehaviour.SendToNonLocalClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u000081","TrackedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u00001002","NetworkedBehaviour.SendToNonLocalClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u000099","NetworkedNavMeshAgent Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00001643","NetworkedBehaviour Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001845","NetworkedAnimator Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00002159","NetworkedTransform Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00001643","NetworkedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u00001120","NetworkedNavMeshAgent Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00002148","NetworkedTransform Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00002187","BinarySerializer Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u0000117","MessageChunker Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000181","LagCompensationManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u0000151"] \ No newline at end of file +["MLAPI API Reference - Redirect\u0000index.html\u000018","MLAPI API Reference - Search\u0000search.html\u000012","Channel Fields\u0000html/Fields_T_MLAPI_Data_Channel.htm\u000059","MessageType Fields\u0000html/Fields_T_MLAPI_Data_MessageType.htm\u000056","NetworkedPrefab Fields\u0000html/Fields_T_MLAPI_Data_NetworkedPrefab.htm\u000053","SyncedVar Fields\u0000html/Fields_T_MLAPI_Attributes_SyncedVar.htm\u000065","NetworkedBehaviour Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u000049","TransportHost Fields\u0000html/Fields_T_MLAPI_Data_TransportHost.htm\u000067","NetworkedObject Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u000046","NetId Fields\u0000html/Fields_T_MLAPI_Data_NetId.htm\u000059","NetworkedClient Fields\u0000html/Fields_T_MLAPI_Data_NetworkedClient.htm\u000066","NetworkConfig Fields\u0000html/Fields_T_MLAPI_Data_NetworkConfig.htm\u0000355","NetworkedAnimator Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u000070","NetworkedNavMeshAgent Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u000085","SyncedVar.target Field\u0000html/F_MLAPI_Attributes_SyncedVar_target.htm\u000081","Channel.Name Field\u0000html/F_MLAPI_Data_Channel_Name.htm\u000073","SyncedVar.hook Field\u0000html/F_MLAPI_Attributes_SyncedVar_hook.htm\u000079","MessageType.Name Field\u0000html/F_MLAPI_Data_MessageType_Name.htm\u000073","Channel.Type Field\u0000html/F_MLAPI_Data_Channel_Type.htm\u000072","Channel.Encrypted Field\u0000html/F_MLAPI_Data_Channel_Encrypted.htm\u000076","NetId.HostId Field\u0000html/F_MLAPI_Data_NetId_HostId.htm\u000074","NetworkingManager Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000128","NetworkConfig.AllowPassthroughMessages Field\u0000html/F_MLAPI_Data_NetworkConfig_AllowPassthroughMessages.htm\u000078","NetId.ConnectionId Field\u0000html/F_MLAPI_Data_NetId_ConnectionId.htm\u000074","NetworkConfig.ClientConnectionBufferTimeout Field\u0000html/F_MLAPI_Data_NetworkConfig_ClientConnectionBufferTimeout.htm\u000083","NetworkedTransform Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000124","MessageType.Passthrough Field\u0000html/F_MLAPI_Data_MessageType_Passthrough.htm\u000078","NetworkConfig.ConnectAddress Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectAddress.htm\u000073","NetworkConfig.Channels Field\u0000html/F_MLAPI_Data_NetworkConfig_Channels.htm\u000079","NetworkConfig.ConnectionApproval Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectionApproval.htm\u000075","NetworkConfig.EventTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_EventTickrate.htm\u000086","NetworkConfig.ConnectionData Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectionData.htm\u000090","NetworkConfig.EnableSceneSwitching Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableSceneSwitching.htm\u000075","NetId.Meta Field\u0000html/F_MLAPI_Data_NetId_Meta.htm\u000073","NetworkConfig.MaxConnections Field\u0000html/F_MLAPI_Data_NetworkConfig_MaxConnections.htm\u000077","NetworkConfig.ConnectPort Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectPort.htm\u000077","NetworkConfig.MessageBufferSize Field\u0000html/F_MLAPI_Data_NetworkConfig_MessageBufferSize.htm\u000083","NetworkConfig.HandleObjectSpawning Field\u0000html/F_MLAPI_Data_NetworkConfig_HandleObjectSpawning.htm\u000078","NetworkConfig.NetworkedPrefabs Field\u0000html/F_MLAPI_Data_NetworkConfig_NetworkedPrefabs.htm\u000079","NetworkConfig.ReceiveTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_ReceiveTickrate.htm\u000085","NetworkConfig.RSAPrivateKey Field\u0000html/F_MLAPI_Data_NetworkConfig_RSAPrivateKey.htm\u000078","NetworkConfig.EnableEncryption Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableEncryption.htm\u000074","NetworkConfig.EnableTimeResync Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableTimeResync.htm\u000097","NetworkConfig.MaxReceiveEventsPerTickRate Field\u0000html/F_MLAPI_Data_NetworkConfig_MaxReceiveEventsPerTickRate.htm\u000084","NetworkConfig.MessageTypes Field\u0000html/F_MLAPI_Data_NetworkConfig_MessageTypes.htm\u000076","NetworkConfig.ProtocolVersion Field\u0000html/F_MLAPI_Data_NetworkConfig_ProtocolVersion.htm\u000080","NetworkConfig.SecondsHistory Field\u0000html/F_MLAPI_Data_NetworkConfig_SecondsHistory.htm\u000079","NetworkConfig.RSAPublicKey Field\u0000html/F_MLAPI_Data_NetworkConfig_RSAPublicKey.htm\u000078","NetworkedClient.OwnedObjects Field\u0000html/F_MLAPI_Data_NetworkedClient_OwnedObjects.htm\u000080","NetworkConfig.ServerTransports Field\u0000html/F_MLAPI_Data_NetworkConfig_ServerTransports.htm\u000080","NetworkConfig.RegisteredScenes Field\u0000html/F_MLAPI_Data_NetworkConfig_RegisteredScenes.htm\u000086","NetworkedClient.AesKey Field\u0000html/F_MLAPI_Data_NetworkedClient_AesKey.htm\u000078","NetworkedPrefab.playerPrefab Field\u0000html/F_MLAPI_Data_NetworkedPrefab_playerPrefab.htm\u000075","TransportHost.Websockets Field\u0000html/F_MLAPI_Data_TransportHost_Websockets.htm\u000081","NetworkConfig.SendTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_SendTickrate.htm\u000082","TransportHost.Name Field\u0000html/F_MLAPI_Data_TransportHost_Name.htm\u000073","NetworkedBehaviour.SyncVarSyncDelay Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SyncVarSyncDelay.htm\u000078","NetworkedClient.PlayerObject Field\u0000html/F_MLAPI_Data_NetworkedClient_PlayerObject.htm\u000073","NetworkConfig.SignKeyExchange Field\u0000html/F_MLAPI_Data_NetworkConfig_SignKeyExchange.htm\u000079","NetworkedObject.NetworkedPrefabName Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkedPrefabName.htm\u000075","NetworkedPrefab.prefab Field\u0000html/F_MLAPI_Data_NetworkedPrefab_prefab.htm\u000073","NetworkedClient.ClientId Field\u0000html/F_MLAPI_Data_NetworkedClient_ClientId.htm\u000073","NetworkingManager.DontDestroy Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DontDestroy.htm\u000081","TransportHost.Port Field\u0000html/F_MLAPI_Data_TransportHost_Port.htm\u000075","NetworkedAnimator.param4 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param4.htm\u000086","NetworkedAnimator.param0 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param0.htm\u000086","NetworkingManager.OnServerStarted Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnServerStarted.htm\u000079","NetworkedAnimator.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ProximityRange.htm\u000073","NetworkingManager.RegenerateRSAKeys Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RegenerateRSAKeys.htm\u000091","NetworkedAnimator.param5 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param5.htm\u000086","NetworkedNavMeshAgent.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_ProximityRange.htm\u000073","NetworkedAnimator.param1 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param1.htm\u000086","NetworkingManager.NetworkConfig Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkConfig.htm\u000073","NetworkedNavMeshAgent.CorrectionDelay Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_CorrectionDelay.htm\u000076","NetworkingManager.RunInBackground Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RunInBackground.htm\u000083","NetworkedAnimator.param2 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param2.htm\u000086","NetworkedTransform.InterpolatePosition Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolatePosition.htm\u000072","NetworkedNavMeshAgent.DriftCorrectionPercentage Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_DriftCorrectionPercentage.htm\u000076","NetworkedTransform.InterpolateServer Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolateServer.htm\u000074","NetworkedNavMeshAgent.WarpOnDestinationChange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_WarpOnDestinationChange.htm\u000076","NetworkedAnimator.param3 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param3.htm\u000086","NetworkedTransform.AssumeSyncedSends Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_AssumeSyncedSends.htm\u000083","NetworkedAnimator.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_EnableProximity.htm\u000073","NetworkedNavMeshAgent.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_EnableProximity.htm\u000073","NetworkingManager.ConnectionApprovalCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectionApprovalCallback.htm\u0000120","NetworkedTransform.MinDegrees Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinDegrees.htm\u000080","TransportHost Methods\u0000html/Methods_T_MLAPI_Data_TransportHost.htm\u000087","BinaryIgnore Methods\u0000html/Methods_T_MLAPI_Attributes_BinaryIgnore.htm\u0000103","NetId Methods\u0000html/Methods_T_MLAPI_Data_NetId.htm\u0000125","NetworkingManager.OnClientConnectedCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientConnectedCallback.htm\u000084","SyncedVar Methods\u0000html/Methods_T_MLAPI_Attributes_SyncedVar.htm\u0000103","NetworkConfig Methods\u0000html/Methods_T_MLAPI_Data_NetworkConfig.htm\u0000109","NetworkedTransform.MinMeters Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinMeters.htm\u000080","NetworkedClient Methods\u0000html/Methods_T_MLAPI_Data_NetworkedClient.htm\u000087","Channel Methods\u0000html/Methods_T_MLAPI_Data_Channel.htm\u000087","NetworkedPrefab Methods\u0000html/Methods_T_MLAPI_Data_NetworkedPrefab.htm\u000087","MessageType Methods\u0000html/Methods_T_MLAPI_Data_MessageType.htm\u000087","NetworkedTransform.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_ProximityRange.htm\u000076","BitReader Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm\u0000111","NetworkedTransform.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_EnableProximity.htm\u000074","NetworkPoolManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000121","NetworkSceneManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u000056","CryptographyHelper Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u000090","BitWriter Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm\u0000129","BinaryIgnore Constructor\u0000html/M_MLAPI_Attributes_BinaryIgnore__ctor.htm\u000072","NetworkingManager.OnClientDisconnectCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientDisconnectCallback.htm\u000084","SyncedVar Constructor\u0000html/M_MLAPI_Attributes_SyncedVar__ctor.htm\u000072","NetworkedTransform.SendsPerSecond Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SendsPerSecond.htm\u000073","MessageChunker Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000133","NetId.GetClientId Method\u0000html/M_MLAPI_Data_NetId_GetClientId.htm\u000079","Channel Constructor\u0000html/M_MLAPI_Data_Channel__ctor.htm\u000072","LagCompensationManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000086","NetId.GetHashCode Method\u0000html/M_MLAPI_Data_NetId_GetHashCode.htm\u0000105","NetworkedPrefab Constructor\u0000html/M_MLAPI_Data_NetworkedPrefab__ctor.htm\u000072","NetworkConfig.CompareConfig Method\u0000html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm\u0000138","NetworkedTransform.SnapDistance Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SnapDistance.htm\u000077","General Error\u0000html/GeneralError.htm\u000033","MessageType Constructor\u0000html/M_MLAPI_Data_MessageType__ctor.htm\u000072","TrackedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000656","TransportHost Constructor\u0000html/M_MLAPI_Data_TransportHost__ctor.htm\u000072","NetId.Equals Method\u0000html/M_MLAPI_Data_NetId_Equals.htm\u0000122","NetId.IsHost Method\u0000html/M_MLAPI_Data_NetId_IsHost.htm\u000090","NetworkConfig.GetConfig Method\u0000html/M_MLAPI_Data_NetworkConfig_GetConfig.htm\u0000140","NetId.IsInvalid Method\u0000html/M_MLAPI_Data_NetId_IsInvalid.htm\u000092","NetworkConfig Constructor\u0000html/M_MLAPI_Data_NetworkConfig__ctor.htm\u000072","NetworkedBehaviour.DeregisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_DeregisterMessageHandler.htm\u000099","NetId.Equality Operator\u0000html/M_MLAPI_Data_NetId_op_Equality.htm\u0000135","NetworkedBehaviour.GetNetworkedObject Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm\u0000136","NetworkedBehaviour.SendToClient Method (UInt32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u0000149","NetworkedClient Constructor\u0000html/M_MLAPI_Data_NetworkedClient__ctor.htm\u000072","NetworkedBehaviour.SendToClientsTarget Method (UInt32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm\u0000157","NetId.Inequality Operator\u0000html/M_MLAPI_Data_NetId_op_Inequality.htm\u0000137","NetworkedBehaviour.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_NetworkStart.htm\u000084","NetworkedBehaviour.OnGainedOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnGainedOwnership.htm\u000080","NetId Constructor (Byte, UInt16, Boolean, Boolean)\u0000html/M_MLAPI_Data_NetId__ctor.htm\u0000142","NetworkedBehaviour Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001417","NetworkedBehaviour.SendToClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm\u0000128","NetworkedBehaviour.OnLostOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnLostOwnership.htm\u000078","NetId Constructor (UInt32)\u0000html/M_MLAPI_Data_NetId__ctor_1.htm\u000092","NetworkedBehaviour.SendToClientsTarget(T) Method (List(UInt32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm\u0000168","NetworkedBehaviour.SendToClients Method (List(UInt32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000154","NetworkedBehaviour.RegisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm\u0000135","NetworkedBehaviour.SendToClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm\u0000134","NetworkedBehaviour.SendToClients Method (UInt32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm\u0000149","NetworkedBehaviour.SendToNonLocalClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u0000133","NetworkedBehaviour.SendToClientsTarget(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm\u0000163","NetworkedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000704","NetworkedBehaviour.SendToClientsTarget Method (List(UInt32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000162","NetworkedBehaviour.SendToClientTarget Method (UInt32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u0000157","NetworkedNavMeshAgent Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00001643","NetworkedBehaviour.SendToNonLocalClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u0000142","NetworkedBehaviour.SendToClients(T) Method (List(Int32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm\u0000162","NetworkedBehaviour.SendToClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm\u0000143","NetworkedBehaviour.SendToClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm\u0000137","NetworkedBehaviour Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour__ctor.htm\u000074","NetworkedBehaviour.SendToClientTarget(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm\u0000163","NetworkedAnimator Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00001657","NetworkedBehaviour.SendToNonLocalClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm\u0000150","NetworkedObject.SpawnWithOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnWithOwnership.htm\u0000100","NetworkedObject.ChangeOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_ChangeOwnership.htm\u000094","NetworkedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject__ctor.htm\u000074","NetworkedBehaviour.SendToNonLocalClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm\u0000141","NetworkedBehaviour.SendToClient(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm\u0000157","NetworkedBehaviour.SendToClients(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm\u0000157","NetworkingManager Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000689","NetworkingManager.StartClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm\u000071","NetworkingManager.StartHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm\u0000177","NetworkedAnimator.SetTrigger Method (String)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger_1.htm\u0000107","NetworkingManager.StopServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm\u000072","NetworkedObject.RemoveOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_RemoveOwnership.htm\u000084","NetworkedAnimator Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator__ctor.htm\u000074","NetworkedBehaviour.SendToLocalClient Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u0000127","NetworkingManager.StartClientWebsocket Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm\u000073","NetworkingManager Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager__ctor.htm\u000074","NetworkingManager.StartServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm\u000071","NetworkedBehaviour.SendToServer Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u0000127","NetworkedNavMeshAgent.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_NetworkStart.htm\u000072","TrackedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_TrackedObject__ctor.htm\u000074","NetworkingManager.StopClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm\u000072","NetworkedObject.Spawn Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_Spawn.htm\u000082","NetworkedNavMeshAgent Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent__ctor.htm\u000074","NetworkingManager.StopHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm\u000072","NetworkedAnimator.GetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_GetParameterAutoSend.htm\u0000126","NetworkedTransform.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_NetworkStart.htm\u000072","NetworkedAnimator.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_NetworkStart.htm\u000072","BitReader.ReadLong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLong.htm\u0000105","BitReader.ReadByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByte.htm\u0000105","NetworkedTransform Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform__ctor.htm\u000074","NetworkedBehaviour.SendToLocalClientTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u0000141","NetworkedAnimator.ResetParameterOptions Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ResetParameterOptions.htm\u000069","NetworkedBehaviour.SendToServerTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u0000136","BitReader.ReadUIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUIntArray.htm\u0000154","BinaryHelpers.SwapEndian Method (UInt32)\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm\u0000150","BitReader.ReadLongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLongArray.htm\u0000154","BitReader.ReadByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByteArray.htm\u0000154","BitReader.ReadULong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULong.htm\u0000105","NetworkedAnimator.SetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetParameterAutoSend.htm\u0000139","BinaryHelpers.SwapEndian Method (UInt64)\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian_1.htm\u0000150","BitReader.ReadSByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByte.htm\u0000105","BitReader.ReadDouble Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDouble.htm\u0000105","NetworkedBehaviour.SendToServerTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm\u0000144","NetworkedBehaviour.SendToLocalClientTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm\u0000147","BinarySerializer.ClearCache Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_ClearCache.htm\u000075","NetworkedAnimator.SetTrigger Method (Int32)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u0000107","BitReader.ReadULongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULongArray.htm\u0000154","BitReader.ReadDoubleArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDoubleArray.htm\u0000154","BitReader.ReadSByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByteArray.htm\u0000154","NetworkedBehaviour.SendToServer(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm\u0000135","BitReader.ReadUShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShort.htm\u0000105","NetworkedBehaviour.SendToLocalClient(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm\u0000135","BitReader.ReadUShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShortArray.htm\u0000154","BitReader.ReadFloat Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloat.htm\u0000105","BitReader.ReadShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShort.htm\u0000105","BinarySerializer.Deserialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Deserialize__1.htm\u0000122","BitWriter.WriteBool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteBool.htm\u0000120","BitReader.SkipPadded Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_SkipPadded.htm\u000084","BitWriter.WriteIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteIntArray.htm\u0000174","BitWriter.WriteSByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByteArray.htm\u0000174","BitWriter.WriteByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByte.htm\u0000120","BitReader.ReadShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShortArray.htm\u0000154","BitReader.ReadFloatArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloatArray.htm\u0000154","BinarySerializer.Serialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Serialize__1.htm\u0000112","BitReader Constructor\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader__ctor.htm\u0000113","BitWriter.WriteShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShort.htm\u0000120","BitReader.ReadString Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadString.htm\u0000105","BitWriter.WriteByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByteArray.htm\u0000174","BitWriter.WriteLong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLong.htm\u0000120","BitReader.ReadBool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadBool.htm\u0000105","NetworkedTransform Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00001643","BitWriter.Dispose Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Dispose.htm\u000078","BitReader.ReadInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadInt.htm\u0000105","BinaryHelpers Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm\u000038","BitWriter.WriteDouble Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDouble.htm\u0000120","BitReader.ReadUInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUInt.htm\u0000105","BitWriter.WriteShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShortArray.htm\u0000174","BitWriter.WriteUShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShort.htm\u0000120","BitWriter.WriteLongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLongArray.htm\u0000174","BinarySerializer Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u000067","BitWriter.WriteString Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteString.htm\u0000120","BitWriter.Finalize Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm\u000092","BitWriter.WriteDoubleArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDoubleArray.htm\u0000174","BitWriter.WriteSByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByte.htm\u0000120","BitReader.ReadIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadIntArray.htm\u0000154","BitWriter.WriteUShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShortArray.htm\u0000174","MLAPI.MonoBehaviours.Core Namespace\u0000html/N_MLAPI_MonoBehaviours_Core.htm\u000071","BitWriter.WriteUInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUInt.htm\u0000120","MessageChunker.IsOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_IsOrdered.htm\u0000114","BitWriter.WriteFloat Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloat.htm\u0000120","MLAPI.MonoBehaviours.Prototyping Namespace\u0000html/N_MLAPI_MonoBehaviours_Prototyping.htm\u000045","BitWriter Constructor\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter__ctor.htm\u000072","MLAPI.NetworkingManagerComponents.Binary Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Binary.htm\u000041","CryptographyHelper.Decrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Decrypt.htm\u0000137","BitWriter.Finalize Method (Byte[])\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize_1.htm\u0000131","MLAPI.NetworkingManagerComponents.Core Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Core.htm\u000046","LagCompensationManager.Simulate Method (Single, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u0000123","BitWriter.WriteUIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUIntArray.htm\u0000174","MLAPI.NetworkingManagerComponents.Cryptography Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Cryptography.htm\u000030","BitWriter.WriteFloatArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloatArray.htm\u0000174","BitWriter.GetFinalizeSize Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_GetFinalizeSize.htm\u000088","NetId Operators\u0000html/Operators_T_MLAPI_Data_NetId.htm\u000072","BitWriter.WriteULong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULong.htm\u0000120","LagCompensationManager.Simulate Method (UInt32, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate_1.htm\u0000136","NetId Constructor\u0000html/Overload_MLAPI_Data_NetId__ctor.htm\u000066","BitWriter.WriteInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteInt.htm\u0000120","BitWriter.WriteAlignBits Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteAlignBits.htm\u000084","CryptographyHelper.Encrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Encrypt.htm\u0000142","MessageChunker.GetChunkedMessage Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetChunkedMessage.htm\u0000132","LagCompensationManager Properties\u0000html/Properties_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000043","MLAPI.Attributes Namespace\u0000html/N_MLAPI_Attributes.htm\u000059","NetworkedBehaviour.SendToClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000159","MLAPI.Data Namespace\u0000html/N_MLAPI_Data.htm\u000073","NetworkPoolManager.CreatePool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_CreatePool.htm\u0000137","BitWriter.WriteULongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULongArray.htm\u0000174","NetworkedBehaviour.SendToClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u000081","NetId.ServerNetId Property\u0000html/P_MLAPI_Data_NetId_ServerNetId.htm\u000085","NetworkedBehaviour.SendToServerTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u000087","NetworkedAnimator.SetTrigger Method\u0000html/Overload_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u000042","NetworkedBehaviour.networkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkId.htm\u000088","NetworkedObject.OwnerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_OwnerClientId.htm\u000086","NetworkedBehaviour.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isClient.htm\u000084","Channel Class\u0000html/T_MLAPI_Data_Channel.htm\u0000177","NetworkPoolManager.DestroyPool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPool.htm\u0000101","BinaryHelpers.SwapEndian Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm\u000040","NetworkedBehaviour.ownerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm\u000084","NetworkedObject.PoolId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_PoolId.htm\u000085","NetworkedObject.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isLocalPlayer.htm\u000088","NetworkPoolManager.DestroyPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPoolObject.htm\u0000111","MessageChunker.GetMessageOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageOrdered.htm\u0000176","NetworkPoolManager.SpawnPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_SpawnPoolObject.htm\u0000161","NetworkingManager.ConnectedClients Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectedClients.htm\u000095","MessageType Class\u0000html/T_MLAPI_Data_MessageType.htm\u0000171","BitWriter.Finalize Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm\u000055","NetworkedBehaviour.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isHost.htm\u000090","NetworkedObject.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isOwner.htm\u000087","LagCompensationManager.Simulate Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u000088","NetworkingManager.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isClient.htm\u000085","Page Not Found\u0000html/PageNotFound.htm\u000067","NetworkedBehaviour.SendToClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000205","NetworkSceneManager.SwitchScene Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager_SwitchScene.htm\u0000101","BinaryIgnore Properties\u0000html/Properties_T_MLAPI_Attributes_BinaryIgnore.htm\u000047","NetId Structure\u0000html/T_MLAPI_Data_NetId.htm\u0000270","SyncedVar Properties\u0000html/Properties_T_MLAPI_Attributes_SyncedVar.htm\u000047","NetworkedBehaviour.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isLocalPlayer.htm\u000088","NetworkedObject.isPlayerObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPlayerObject.htm\u000085","NetworkingManager.IsClientConnected Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_IsClientConnected.htm\u000085","NetId Properties\u0000html/Properties_T_MLAPI_Data_NetId.htm\u000044","NetworkedBehaviour.SendToClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u000095","MessageChunker.GetMessageUnordered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageUnordered.htm\u0000178","NetworkedObject.isPooledObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPooledObject.htm\u000086","NetworkedBehaviour.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isOwner.htm\u000087","NetworkingManager.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isHost.htm\u000084","NetworkedBehaviour Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u0000364","NetworkedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000369","NetworkedObject.isSpawned Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isSpawned.htm\u000088","NetworkingManager.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isServer.htm\u000085","NetworkConfig Class\u0000html/T_MLAPI_Data_NetworkConfig.htm\u0000498","NetworkedBehaviour.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isServer.htm\u000084","NetworkedBehaviour.SendToLocalClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u000069","NetworkingManager Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000367","NetworkedObject.NetworkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkId.htm\u000090","MessageChunker.HasDuplicates Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasDuplicates.htm\u0000134","TrackedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000305","NetworkedBehaviour.networkedObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkedObject.htm\u000085","NetworkingManager.MyClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_MyClientId.htm\u000091","NetworkedClient Class\u0000html/T_MLAPI_Data_NetworkedClient.htm\u0000173","NetworkedAnimator Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u0000432","NetworkedBehaviour.SendToLocalClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u000095","BitReader Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm\u0000181","NetworkingManager.NetworkTime Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkTime.htm\u000097","NetworkedNavMeshAgent Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u0000420","NetworkedPrefab Class\u0000html/T_MLAPI_Data_NetworkedPrefab.htm\u0000169","NetworkedTransform Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000420","NetworkedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u00001120","NetworkingManager.singleton Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_singleton.htm\u000084","NetworkedBehaviour.SendToNonLocalClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u000081","MessageChunker.HasMissingParts Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasMissingParts.htm\u0000128","TransportHost Class\u0000html/T_MLAPI_Data_TransportHost.htm\u0000181","TrackedObject.AvgTimeBetweenPointsMs Property\u0000html/P_MLAPI_MonoBehaviours_Core_TrackedObject_AvgTimeBetweenPointsMs.htm\u000088","BitWriter Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm\u0000208","NetworkedBehaviour.SendToNonLocalClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u000099","TrackedObject.TotalPoints Property\u0000html/P_MLAPI_MonoBehaviours_Core_TrackedObject_TotalPoints.htm\u000087","MessageChunker Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000181","NetworkedAnimator.animator Property\u0000html/P_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_animator.htm\u000091","NetworkedBehaviour.SendToServer Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u000069","LagCompensationManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u0000151","LagCompensationManager.SimulationObjects Property\u0000html/P_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_SimulationObjects.htm\u000086","NetworkingManager Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u00001180","NetworkPoolManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000170","BinaryIgnore Class\u0000html/T_MLAPI_Attributes_BinaryIgnore.htm\u0000190","NetworkSceneManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u0000105","SyncedVar Class\u0000html/T_MLAPI_Attributes_SyncedVar.htm\u0000220","CryptographyHelper Class\u0000html/T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u0000138","TrackedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u00001002","NetworkedBehaviour Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001845","NetworkedAnimator Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00002159","NetworkedNavMeshAgent Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00002148","NetworkedTransform Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00002187","BinaryHelpers Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm\u000096","BinarySerializer Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u0000117"] \ No newline at end of file diff --git a/docs/html/F_MLAPI_Attributes_SyncedVar_hook.htm b/docs/html/F_MLAPI_Attributes_SyncedVar_hook.htm index 71028d3..cc4efeb 100644 --- a/docs/html/F_MLAPI_Attributes_SyncedVar_hook.htm +++ b/docs/html/F_MLAPI_Attributes_SyncedVar_hook.htm @@ -1,4 +1,4 @@ -SyncedVar.hook Field

SyncedVarhook Field

[This is preliminary documentation and is subject to change.]

+SyncedVar.hook Field

SyncedVarhook Field

[This is preliminary documentation and is subject to change.]

The method name to invoke when the SyncVar get's updated.

Namespace: diff --git a/docs/html/F_MLAPI_Attributes_SyncedVar_target.htm b/docs/html/F_MLAPI_Attributes_SyncedVar_target.htm new file mode 100644 index 0000000..8aacbb0 --- /dev/null +++ b/docs/html/F_MLAPI_Attributes_SyncedVar_target.htm @@ -0,0 +1,21 @@ +SyncedVar.target Field

SyncedVartarget Field

[This is preliminary documentation and is subject to change.]

+ If true, the syncedVar will only be synced to the owner. +

+ Namespace: +  MLAPI.Attributes
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool target
Request Example + View Source

Field Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/Fields_T_MLAPI_Attributes_SyncedVar.htm b/docs/html/Fields_T_MLAPI_Attributes_SyncedVar.htm index 605b21a..987d642 100644 --- a/docs/html/Fields_T_MLAPI_Attributes_SyncedVar.htm +++ b/docs/html/Fields_T_MLAPI_Attributes_SyncedVar.htm @@ -1,5 +1,7 @@ -SyncedVar Fields

SyncedVar Fields

[This is preliminary documentation and is subject to change.]

The SyncedVar type exposes the following members.

Fields
+SyncedVar Fields

SyncedVar Fields

[This is preliminary documentation and is subject to change.]

The SyncedVar type exposes the following members.

Fields
  NameDescription
Public fieldhook
The method name to invoke when the SyncVar get's updated. +
Public fieldtarget
+ If true, the syncedVar will only be synced to the owner.
Top
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm b/docs/html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm index 1eb8686..85670d6 100644 --- a/docs/html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm +++ b/docs/html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm @@ -20,4 +20,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

hash
Type: SystemByte

[Missing <param name="hash"/> documentation for "M:MLAPI.Data.NetworkConfig.CompareConfig(System.Byte[])"]

Return Value

Type: Boolean

[Missing <returns> documentation for "M:MLAPI.Data.NetworkConfig.CompareConfig(System.Byte[])"]

See Also
\ No newline at end of file + View Source

Parameters

hash
Type: SystemByte

[Missing <param name="hash"/> documentation for "M:MLAPI.Data.NetworkConfig.CompareConfig(System.Byte[])"]

Return Value

Type: Boolean

[Missing <returns> documentation for "M:MLAPI.Data.NetworkConfig.CompareConfig(System.Byte[])"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetworkConfig_GetConfig.htm b/docs/html/M_MLAPI_Data_NetworkConfig_GetConfig.htm index b55988a..bcdfc91 100644 --- a/docs/html/M_MLAPI_Data_NetworkConfig_GetConfig.htm +++ b/docs/html/M_MLAPI_Data_NetworkConfig_GetConfig.htm @@ -20,4 +20,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

cache (Optional)
Type: SystemBoolean

[Missing <param name="cache"/> documentation for "M:MLAPI.Data.NetworkConfig.GetConfig(System.Boolean)"]

Return Value

Type: Byte

[Missing <returns> documentation for "M:MLAPI.Data.NetworkConfig.GetConfig(System.Boolean)"]

See Also
\ No newline at end of file + View Source

Parameters

cache (Optional)
Type: SystemBoolean

[Missing <param name="cache"/> documentation for "M:MLAPI.Data.NetworkConfig.GetConfig(System.Boolean)"]

Return Value

Type: Byte

[Missing <returns> documentation for "M:MLAPI.Data.NetworkConfig.GetConfig(System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetworkConfig__ctor.htm b/docs/html/M_MLAPI_Data_NetworkConfig__ctor.htm index 8df6433..0b498e1 100644 --- a/docs/html/M_MLAPI_Data_NetworkConfig__ctor.htm +++ b/docs/html/M_MLAPI_Data_NetworkConfig__ctor.htm @@ -16,4 +16,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_DeregisterMessageHandler.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_DeregisterMessageHandler.htm index 3e51e27..70eee37 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_DeregisterMessageHandler.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_DeregisterMessageHandler.htm @@ -21,4 +21,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

name
Type: SystemString
The MessageType to deregister
counter
Type: SystemInt32
The messageHandlerId to deregister
See Also
\ No newline at end of file + View Source

Parameters

name
Type: SystemString
The MessageType to deregister
counter
Type: SystemInt32
The messageHandlerId to deregister
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm index bafe5f4..ed975ae 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm @@ -20,4 +20,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

networkId
Type: SystemUInt32

[Missing <param name="networkId"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

Return Value

Type: NetworkedObject

[Missing <returns> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

See Also
\ No newline at end of file + View Source

Parameters

networkId
Type: SystemUInt32

[Missing <param name="networkId"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

Return Value

Type: NetworkedObject

[Missing <returns> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_NetworkStart.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_NetworkStart.htm index 21c509a..10813a0 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_NetworkStart.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_NetworkStart.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnGainedOwnership.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnGainedOwnership.htm index 41d94a1..97115ab 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnGainedOwnership.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnGainedOwnership.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnLostOwnership.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnLostOwnership.htm index 8c3a3c8..ca109d7 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnLostOwnership.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnLostOwnership.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm index d9c50b3..e8a7aec 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm @@ -21,4 +21,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

name
Type: SystemString
The MessageType to register
action
Type: SystemActionUInt32, Byte
The callback to get invoked whenever a message is received

Return Value

Type: Int32
HandlerId for the messageHandler that can be used to deregister the messageHandler
See Also
\ No newline at end of file + View Source

Parameters

name
Type: SystemString
The MessageType to register
action
Type: SystemActionUInt32, Byte
The callback to get invoked whenever a message is received

Return Value

Type: Int32
HandlerId for the messageHandler that can be used to deregister the messageHandler
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm index b9049ca..5e17f7c 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemUInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemUInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm index 90c3c80..7758df0 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemUInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemUInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm index 0d9e376..ba294a9 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm index 16fcc02..a2f85e4 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm index 40da40e..7320544 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm index c20b062..81affdc 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm index e483ee1..6e12aa4 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm index b765f56..615e3c3 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: SystemUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm index c38e139..627d621 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm index 1af7712..5c56428 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm index dfc120e..daf4260 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm index 721c5a6..13c718a 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm index 3c6b53c..e9f70f8 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: SystemUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm index 5e512f6..0dc9892 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: System.Collections.GenericListInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm index 6324292..6bcbd18 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm index 9b877c1..54b23f8 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm index 327380f..1736fae 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm index 4a9cc39..d673151 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm index b5f9b4a..87f8375 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm index 815168a..e010e52 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm index 5f2877b..8adbf0e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm index c779e28..a97f50c 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm index 382c70a..734cd9e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm index a1b2842..2c9227e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm index 03d3f83..f801fda 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm index c27aedc..60b96d5 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm index 9366552..27ad2a3 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm index 3db1956..d3f268e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour__ctor.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour__ctor.htm index 8e0fad8..7cbc2f1 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour__ctor.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour__ctor.htm @@ -16,4 +16,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm index 94c6869..e25bf7d 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm index d8abcc3..6da1127 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm index 8cea7b9..1425232 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm @@ -21,4 +21,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

pos (Optional)
Type: SystemNullableVector3

[Missing <param name="pos"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkingManager.StartHost(System.Nullable{UnityEngine.Vector3},System.Nullable{UnityEngine.Quaternion})"]

rot (Optional)
Type: SystemNullableQuaternion

[Missing <param name="rot"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkingManager.StartHost(System.Nullable{UnityEngine.Vector3},System.Nullable{UnityEngine.Quaternion})"]

See Also
\ No newline at end of file + View Source

Parameters

pos (Optional)
Type: SystemNullableVector3

[Missing <param name="pos"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkingManager.StartHost(System.Nullable{UnityEngine.Vector3},System.Nullable{UnityEngine.Quaternion})"]

rot (Optional)
Type: SystemNullableQuaternion

[Missing <param name="rot"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkingManager.StartHost(System.Nullable{UnityEngine.Vector3},System.Nullable{UnityEngine.Quaternion})"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm index 889917e..157d3c3 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm index 8c5d3ff..d3ba00f 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm index 3989f15..6487a0d 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm index d0c571c..7b15891 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source
See Also
\ No newline at end of file + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm new file mode 100644 index 0000000..1470819 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm @@ -0,0 +1,21 @@ +BinaryHelpers.SwapEndian Method (UInt32)

BinaryHelpersSwapEndian Method (UInt32)

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BinaryHelpers.SwapEndian(System.UInt32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static uint SwapEndian(
+	uint value
+)
Request Example + View Source

Parameters

value
Type: SystemUInt32

[Missing <param name="value"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BinaryHelpers.SwapEndian(System.UInt32)"]

Return Value

Type: UInt32

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BinaryHelpers.SwapEndian(System.UInt32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian_1.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian_1.htm new file mode 100644 index 0000000..4362c03 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian_1.htm @@ -0,0 +1,21 @@ +BinaryHelpers.SwapEndian Method (UInt64)

BinaryHelpersSwapEndian Method (UInt64)

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BinaryHelpers.SwapEndian(System.UInt64)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static ulong SwapEndian(
+	ulong value
+)
Request Example + View Source

Parameters

value
Type: SystemUInt64

[Missing <param name="value"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BinaryHelpers.SwapEndian(System.UInt64)"]

Return Value

Type: UInt64

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BinaryHelpers.SwapEndian(System.UInt64)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadBool.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadBool.htm new file mode 100644 index 0000000..4197fff --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadBool.htm @@ -0,0 +1,19 @@ +BitReader.ReadBool Method

BitReaderReadBool Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadBool"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool ReadBool()
Request Example + View Source

Return Value

Type: Boolean

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadBool"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByte.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByte.htm new file mode 100644 index 0000000..599e1b8 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByte.htm @@ -0,0 +1,19 @@ +BitReader.ReadByte Method

BitReaderReadByte Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadByte"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public byte ReadByte()
Request Example + View Source

Return Value

Type: Byte

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadByte"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByteArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByteArray.htm new file mode 100644 index 0000000..f1223b5 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByteArray.htm @@ -0,0 +1,21 @@ +BitReader.ReadByteArray Method

BitReaderReadByteArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadByteArray(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public byte[] ReadByteArray(
+	int known = -1
+)
Request Example + View Source

Parameters

known (Optional)
Type: SystemInt32

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadByteArray(System.Int32)"]

Return Value

Type: Byte

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadByteArray(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDouble.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDouble.htm new file mode 100644 index 0000000..97cf290 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDouble.htm @@ -0,0 +1,19 @@ +BitReader.ReadDouble Method

BitReaderReadDouble Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadDouble"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public double ReadDouble()
Request Example + View Source

Return Value

Type: Double

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadDouble"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDoubleArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDoubleArray.htm new file mode 100644 index 0000000..21241ff --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDoubleArray.htm @@ -0,0 +1,21 @@ +BitReader.ReadDoubleArray Method

BitReaderReadDoubleArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadDoubleArray(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public double[] ReadDoubleArray(
+	int known = -1
+)
Request Example + View Source

Parameters

known (Optional)
Type: SystemInt32

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadDoubleArray(System.Int32)"]

Return Value

Type: Double

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadDoubleArray(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloat.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloat.htm new file mode 100644 index 0000000..21ef9db --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloat.htm @@ -0,0 +1,19 @@ +BitReader.ReadFloat Method

BitReaderReadFloat Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadFloat"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public float ReadFloat()
Request Example + View Source

Return Value

Type: Single

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadFloat"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloatArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloatArray.htm new file mode 100644 index 0000000..b9178bf --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloatArray.htm @@ -0,0 +1,21 @@ +BitReader.ReadFloatArray Method

BitReaderReadFloatArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadFloatArray(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public float[] ReadFloatArray(
+	int known = -1
+)
Request Example + View Source

Parameters

known (Optional)
Type: SystemInt32

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadFloatArray(System.Int32)"]

Return Value

Type: Single

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadFloatArray(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadInt.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadInt.htm new file mode 100644 index 0000000..bd4aad5 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadInt.htm @@ -0,0 +1,19 @@ +BitReader.ReadInt Method

BitReaderReadInt Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadInt"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int ReadInt()
Request Example + View Source

Return Value

Type: Int32

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadInt"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadIntArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadIntArray.htm new file mode 100644 index 0000000..d9b155f --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadIntArray.htm @@ -0,0 +1,21 @@ +BitReader.ReadIntArray Method

BitReaderReadIntArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadIntArray(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public int[] ReadIntArray(
+	int known = -1
+)
Request Example + View Source

Parameters

known (Optional)
Type: SystemInt32

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadIntArray(System.Int32)"]

Return Value

Type: Int32

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadIntArray(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLong.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLong.htm new file mode 100644 index 0000000..f93c47f --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLong.htm @@ -0,0 +1,19 @@ +BitReader.ReadLong Method

BitReaderReadLong Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadLong"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public long ReadLong()
Request Example + View Source

Return Value

Type: Int64

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadLong"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLongArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLongArray.htm new file mode 100644 index 0000000..3532ff5 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLongArray.htm @@ -0,0 +1,21 @@ +BitReader.ReadLongArray Method

BitReaderReadLongArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadLongArray(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public long[] ReadLongArray(
+	int known = -1
+)
Request Example + View Source

Parameters

known (Optional)
Type: SystemInt32

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadLongArray(System.Int32)"]

Return Value

Type: Int64

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadLongArray(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByte.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByte.htm new file mode 100644 index 0000000..37bb766 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByte.htm @@ -0,0 +1,19 @@ +BitReader.ReadSByte Method

BitReaderReadSByte Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadSByte"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public sbyte ReadSByte()
Request Example + View Source

Return Value

Type: SByte

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadSByte"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByteArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByteArray.htm new file mode 100644 index 0000000..581ff1d --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByteArray.htm @@ -0,0 +1,21 @@ +BitReader.ReadSByteArray Method

BitReaderReadSByteArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadSByteArray(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public sbyte[] ReadSByteArray(
+	int known = -1
+)
Request Example + View Source

Parameters

known (Optional)
Type: SystemInt32

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadSByteArray(System.Int32)"]

Return Value

Type: SByte

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadSByteArray(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShort.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShort.htm new file mode 100644 index 0000000..8e18c38 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShort.htm @@ -0,0 +1,19 @@ +BitReader.ReadShort Method

BitReaderReadShort Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadShort"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public short ReadShort()
Request Example + View Source

Return Value

Type: Int16

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadShort"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShortArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShortArray.htm new file mode 100644 index 0000000..a41ee65 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShortArray.htm @@ -0,0 +1,21 @@ +BitReader.ReadShortArray Method

BitReaderReadShortArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadShortArray(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public short[] ReadShortArray(
+	int known = -1
+)
Request Example + View Source

Parameters

known (Optional)
Type: SystemInt32

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadShortArray(System.Int32)"]

Return Value

Type: Int16

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadShortArray(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadString.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadString.htm new file mode 100644 index 0000000..f29da1a --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadString.htm @@ -0,0 +1,19 @@ +BitReader.ReadString Method

BitReaderReadString Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadString"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string ReadString()
Request Example + View Source

Return Value

Type: String

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadString"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUInt.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUInt.htm new file mode 100644 index 0000000..82cb5da --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUInt.htm @@ -0,0 +1,19 @@ +BitReader.ReadUInt Method

BitReaderReadUInt Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadUInt"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public uint ReadUInt()
Request Example + View Source

Return Value

Type: UInt32

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadUInt"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUIntArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUIntArray.htm new file mode 100644 index 0000000..118fb65 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUIntArray.htm @@ -0,0 +1,21 @@ +BitReader.ReadUIntArray Method

BitReaderReadUIntArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadUIntArray(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public uint[] ReadUIntArray(
+	int known = -1
+)
Request Example + View Source

Parameters

known (Optional)
Type: SystemInt32

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadUIntArray(System.Int32)"]

Return Value

Type: UInt32

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadUIntArray(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULong.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULong.htm new file mode 100644 index 0000000..7860cad --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULong.htm @@ -0,0 +1,19 @@ +BitReader.ReadULong Method

BitReaderReadULong Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadULong"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public ulong ReadULong()
Request Example + View Source

Return Value

Type: UInt64

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadULong"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULongArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULongArray.htm new file mode 100644 index 0000000..5a1ce48 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULongArray.htm @@ -0,0 +1,21 @@ +BitReader.ReadULongArray Method

BitReaderReadULongArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadULongArray(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public ulong[] ReadULongArray(
+	int known = -1
+)
Request Example + View Source

Parameters

known (Optional)
Type: SystemInt32

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadULongArray(System.Int32)"]

Return Value

Type: UInt64

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadULongArray(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShort.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShort.htm new file mode 100644 index 0000000..a7e9323 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShort.htm @@ -0,0 +1,19 @@ +BitReader.ReadUShort Method

BitReaderReadUShort Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadUShort"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public ushort ReadUShort()
Request Example + View Source

Return Value

Type: UInt16

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadUShort"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShortArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShortArray.htm new file mode 100644 index 0000000..c095224 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShortArray.htm @@ -0,0 +1,21 @@ +BitReader.ReadUShortArray Method

BitReaderReadUShortArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadUShortArray(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public ushort[] ReadUShortArray(
+	int known = -1
+)
Request Example + View Source

Parameters

known (Optional)
Type: SystemInt32

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadUShortArray(System.Int32)"]

Return Value

Type: UInt16

[Missing <returns> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.ReadUShortArray(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_SkipPadded.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_SkipPadded.htm new file mode 100644 index 0000000..123b3a2 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_SkipPadded.htm @@ -0,0 +1,19 @@ +BitReader.SkipPadded Method

BitReaderSkipPadded Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.SkipPadded"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void SkipPadded()
Request Example + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader__ctor.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader__ctor.htm new file mode 100644 index 0000000..fb21ab0 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader__ctor.htm @@ -0,0 +1,21 @@ +BitReader Constructor

BitReader Constructor

[This is preliminary documentation and is subject to change.]

Initializes a new instance of the BitReader class

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public BitReader(
+	byte[] readFrom
+)
Request Example + View Source

Parameters

readFrom
Type: SystemByte

[Missing <param name="readFrom"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitReader.#ctor(System.Byte[])"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Dispose.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Dispose.htm new file mode 100644 index 0000000..d16572f --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Dispose.htm @@ -0,0 +1,19 @@ +BitWriter.Dispose Method

BitWriterDispose Method

[This is preliminary documentation and is subject to change.]

Releases all resources used by the BitWriter

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void Dispose()
Request Example + View Source

Implements

IDisposableDispose
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm new file mode 100644 index 0000000..129ab20 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm @@ -0,0 +1,21 @@ +BitWriter.Finalize Method

BitWriterFinalize Method

[This is preliminary documentation and is subject to change.]

+ Serializes data, allocates an array and returns it +

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public byte[] Finalize()
Request Example + View Source

Return Value

Type: Byte
Allocated array with written data
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize_1.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize_1.htm new file mode 100644 index 0000000..57bd421 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize_1.htm @@ -0,0 +1,23 @@ +BitWriter.Finalize Method (Byte[])

BitWriterFinalize Method (Byte)

[This is preliminary documentation and is subject to change.]

+ Writes data to the given buffer +

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public long Finalize(
+	ref byte[] buffer
+)
Request Example + View Source

Parameters

buffer
Type: SystemByte

[Missing <param name="buffer"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.Finalize(System.Byte[]@)"]

Return Value

Type: Int64
The amount of bytes written
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_GetFinalizeSize.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_GetFinalizeSize.htm new file mode 100644 index 0000000..49a4339 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_GetFinalizeSize.htm @@ -0,0 +1,21 @@ +BitWriter.GetFinalizeSize Method

BitWriterGetFinalizeSize Method

[This is preliminary documentation and is subject to change.]

+ Gets the size in bytes if you were to serialize now +

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public long GetFinalizeSize()
Request Example + View Source

Return Value

Type: Int64
The size in bytes
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteAlignBits.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteAlignBits.htm new file mode 100644 index 0000000..d6e4937 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteAlignBits.htm @@ -0,0 +1,19 @@ +BitWriter.WriteAlignBits Method

BitWriterWriteAlignBits Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteAlignBits"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteAlignBits()
Request Example + View Source
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteBool.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteBool.htm new file mode 100644 index 0000000..010af15 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteBool.htm @@ -0,0 +1,21 @@ +BitWriter.WriteBool Method

BitWriterWriteBool Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteBool(System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteBool(
+	bool b
+)
Request Example + View Source

Parameters

b
Type: SystemBoolean

[Missing <param name="b"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteBool(System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByte.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByte.htm new file mode 100644 index 0000000..ba43f32 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByte.htm @@ -0,0 +1,21 @@ +BitWriter.WriteByte Method

BitWriterWriteByte Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteByte(System.Byte)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteByte(
+	byte b
+)
Request Example + View Source

Parameters

b
Type: SystemByte

[Missing <param name="b"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteByte(System.Byte)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByteArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByteArray.htm new file mode 100644 index 0000000..c65169b --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByteArray.htm @@ -0,0 +1,22 @@ +BitWriter.WriteByteArray Method

BitWriterWriteByteArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteByteArray(System.Byte[],System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteByteArray(
+	byte[] b,
+	bool known = false
+)
Request Example + View Source

Parameters

b
Type: SystemByte

[Missing <param name="b"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteByteArray(System.Byte[],System.Boolean)"]

known (Optional)
Type: SystemBoolean

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteByteArray(System.Byte[],System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDouble.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDouble.htm new file mode 100644 index 0000000..0aa5bcf --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDouble.htm @@ -0,0 +1,21 @@ +BitWriter.WriteDouble Method

BitWriterWriteDouble Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteDouble(System.Double)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteDouble(
+	double d
+)
Request Example + View Source

Parameters

d
Type: SystemDouble

[Missing <param name="d"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteDouble(System.Double)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDoubleArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDoubleArray.htm new file mode 100644 index 0000000..e0d934d --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDoubleArray.htm @@ -0,0 +1,22 @@ +BitWriter.WriteDoubleArray Method

BitWriterWriteDoubleArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteDoubleArray(System.Double[],System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteDoubleArray(
+	double[] d,
+	bool known = false
+)
Request Example + View Source

Parameters

d
Type: SystemDouble

[Missing <param name="d"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteDoubleArray(System.Double[],System.Boolean)"]

known (Optional)
Type: SystemBoolean

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteDoubleArray(System.Double[],System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloat.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloat.htm new file mode 100644 index 0000000..366eb14 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloat.htm @@ -0,0 +1,21 @@ +BitWriter.WriteFloat Method

BitWriterWriteFloat Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteFloat(System.Single)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteFloat(
+	float f
+)
Request Example + View Source

Parameters

f
Type: SystemSingle

[Missing <param name="f"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteFloat(System.Single)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloatArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloatArray.htm new file mode 100644 index 0000000..b539740 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloatArray.htm @@ -0,0 +1,22 @@ +BitWriter.WriteFloatArray Method

BitWriterWriteFloatArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteFloatArray(System.Single[],System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteFloatArray(
+	float[] f,
+	bool known = false
+)
Request Example + View Source

Parameters

f
Type: SystemSingle

[Missing <param name="f"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteFloatArray(System.Single[],System.Boolean)"]

known (Optional)
Type: SystemBoolean

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteFloatArray(System.Single[],System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteInt.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteInt.htm new file mode 100644 index 0000000..4b0f53c --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteInt.htm @@ -0,0 +1,21 @@ +BitWriter.WriteInt Method

BitWriterWriteInt Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteInt(System.Int32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteInt(
+	int i
+)
Request Example + View Source

Parameters

i
Type: SystemInt32

[Missing <param name="i"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteInt(System.Int32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteIntArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteIntArray.htm new file mode 100644 index 0000000..a81367f --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteIntArray.htm @@ -0,0 +1,22 @@ +BitWriter.WriteIntArray Method

BitWriterWriteIntArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteIntArray(System.Int32[],System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteIntArray(
+	int[] i,
+	bool known = false
+)
Request Example + View Source

Parameters

i
Type: SystemInt32

[Missing <param name="i"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteIntArray(System.Int32[],System.Boolean)"]

known (Optional)
Type: SystemBoolean

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteIntArray(System.Int32[],System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLong.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLong.htm new file mode 100644 index 0000000..4778ff4 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLong.htm @@ -0,0 +1,21 @@ +BitWriter.WriteLong Method

BitWriterWriteLong Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteLong(System.Int64)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteLong(
+	long l
+)
Request Example + View Source

Parameters

l
Type: SystemInt64

[Missing <param name="l"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteLong(System.Int64)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLongArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLongArray.htm new file mode 100644 index 0000000..8509f76 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLongArray.htm @@ -0,0 +1,22 @@ +BitWriter.WriteLongArray Method

BitWriterWriteLongArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteLongArray(System.Int64[],System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteLongArray(
+	long[] l,
+	bool known = false
+)
Request Example + View Source

Parameters

l
Type: SystemInt64

[Missing <param name="l"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteLongArray(System.Int64[],System.Boolean)"]

known (Optional)
Type: SystemBoolean

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteLongArray(System.Int64[],System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByte.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByte.htm new file mode 100644 index 0000000..19a4da3 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByte.htm @@ -0,0 +1,21 @@ +BitWriter.WriteSByte Method

BitWriterWriteSByte Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteSByte(System.SByte)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteSByte(
+	sbyte b
+)
Request Example + View Source

Parameters

b
Type: SystemSByte

[Missing <param name="b"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteSByte(System.SByte)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByteArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByteArray.htm new file mode 100644 index 0000000..e207921 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByteArray.htm @@ -0,0 +1,22 @@ +BitWriter.WriteSByteArray Method

BitWriterWriteSByteArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteSByteArray(System.SByte[],System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteSByteArray(
+	sbyte[] b,
+	bool known = false
+)
Request Example + View Source

Parameters

b
Type: SystemSByte

[Missing <param name="b"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteSByteArray(System.SByte[],System.Boolean)"]

known (Optional)
Type: SystemBoolean

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteSByteArray(System.SByte[],System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShort.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShort.htm new file mode 100644 index 0000000..90d19eb --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShort.htm @@ -0,0 +1,21 @@ +BitWriter.WriteShort Method

BitWriterWriteShort Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteShort(System.Int16)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteShort(
+	short s
+)
Request Example + View Source

Parameters

s
Type: SystemInt16

[Missing <param name="s"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteShort(System.Int16)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShortArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShortArray.htm new file mode 100644 index 0000000..8299e47 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShortArray.htm @@ -0,0 +1,22 @@ +BitWriter.WriteShortArray Method

BitWriterWriteShortArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteShortArray(System.Int16[],System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteShortArray(
+	short[] s,
+	bool known = false
+)
Request Example + View Source

Parameters

s
Type: SystemInt16

[Missing <param name="s"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteShortArray(System.Int16[],System.Boolean)"]

known (Optional)
Type: SystemBoolean

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteShortArray(System.Int16[],System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteString.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteString.htm new file mode 100644 index 0000000..b587384 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteString.htm @@ -0,0 +1,21 @@ +BitWriter.WriteString Method

BitWriterWriteString Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteString(System.String)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteString(
+	string s
+)
Request Example + View Source

Parameters

s
Type: SystemString

[Missing <param name="s"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteString(System.String)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUInt.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUInt.htm new file mode 100644 index 0000000..8601eef --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUInt.htm @@ -0,0 +1,21 @@ +BitWriter.WriteUInt Method

BitWriterWriteUInt Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteUInt(System.UInt32)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteUInt(
+	uint i
+)
Request Example + View Source

Parameters

i
Type: SystemUInt32

[Missing <param name="i"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteUInt(System.UInt32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUIntArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUIntArray.htm new file mode 100644 index 0000000..9181589 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUIntArray.htm @@ -0,0 +1,22 @@ +BitWriter.WriteUIntArray Method

BitWriterWriteUIntArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteUIntArray(System.UInt32[],System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteUIntArray(
+	uint[] i,
+	bool known = false
+)
Request Example + View Source

Parameters

i
Type: SystemUInt32

[Missing <param name="i"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteUIntArray(System.UInt32[],System.Boolean)"]

known (Optional)
Type: SystemBoolean

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteUIntArray(System.UInt32[],System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULong.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULong.htm new file mode 100644 index 0000000..65f02a9 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULong.htm @@ -0,0 +1,21 @@ +BitWriter.WriteULong Method

BitWriterWriteULong Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteULong(System.UInt64)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteULong(
+	ulong l
+)
Request Example + View Source

Parameters

l
Type: SystemUInt64

[Missing <param name="l"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteULong(System.UInt64)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULongArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULongArray.htm new file mode 100644 index 0000000..bbf6f0c --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULongArray.htm @@ -0,0 +1,22 @@ +BitWriter.WriteULongArray Method

BitWriterWriteULongArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteULongArray(System.UInt64[],System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteULongArray(
+	ulong[] l,
+	bool known = false
+)
Request Example + View Source

Parameters

l
Type: SystemUInt64

[Missing <param name="l"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteULongArray(System.UInt64[],System.Boolean)"]

known (Optional)
Type: SystemBoolean

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteULongArray(System.UInt64[],System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShort.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShort.htm new file mode 100644 index 0000000..b1e38c2 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShort.htm @@ -0,0 +1,21 @@ +BitWriter.WriteUShort Method

BitWriterWriteUShort Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteUShort(System.UInt16)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteUShort(
+	ushort s
+)
Request Example + View Source

Parameters

s
Type: SystemUInt16

[Missing <param name="s"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteUShort(System.UInt16)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShortArray.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShortArray.htm new file mode 100644 index 0000000..9cc8f94 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShortArray.htm @@ -0,0 +1,22 @@ +BitWriter.WriteUShortArray Method

BitWriterWriteUShortArray Method

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteUShortArray(System.UInt16[],System.Boolean)"]

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void WriteUShortArray(
+	ushort[] s,
+	bool known = false
+)
Request Example + View Source

Parameters

s
Type: SystemUInt16

[Missing <param name="s"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteUShortArray(System.UInt16[],System.Boolean)"]

known (Optional)
Type: SystemBoolean

[Missing <param name="known"/> documentation for "M:MLAPI.NetworkingManagerComponents.Binary.BitWriter.WriteUShortArray(System.UInt16[],System.Boolean)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter__ctor.htm b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter__ctor.htm new file mode 100644 index 0000000..138ef99 --- /dev/null +++ b/docs/html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter__ctor.htm @@ -0,0 +1,21 @@ +BitWriter Constructor

BitWriter Constructor

[This is preliminary documentation and is subject to change.]

+ Allocates a new binary collector. +

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public BitWriter()
Request Example + View Source
See Also
\ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm b/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm new file mode 100644 index 0000000..6967107 --- /dev/null +++ b/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm @@ -0,0 +1,3 @@ +BinaryHelpers Methods \ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm b/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm new file mode 100644 index 0000000..cc2735f --- /dev/null +++ b/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm @@ -0,0 +1,3 @@ +BitReader Methods \ No newline at end of file diff --git a/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm b/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm new file mode 100644 index 0000000..fb05ff0 --- /dev/null +++ b/docs/html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm @@ -0,0 +1,9 @@ +BitWriter Methods
\ No newline at end of file diff --git a/docs/html/N_MLAPI_NetworkingManagerComponents_Binary.htm b/docs/html/N_MLAPI_NetworkingManagerComponents_Binary.htm index d233e43..50cd3e4 100644 --- a/docs/html/N_MLAPI_NetworkingManagerComponents_Binary.htm +++ b/docs/html/N_MLAPI_NetworkingManagerComponents_Binary.htm @@ -1,7 +1,7 @@ -MLAPI.NetworkingManagerComponents.Binary Namespace

MLAPI.NetworkingManagerComponents.Binary Namespace

[This is preliminary documentation and is subject to change.]

 
Classes
+MLAPI.NetworkingManagerComponents.Binary Namespace

MLAPI.NetworkingManagerComponents.Binary Namespace

[This is preliminary documentation and is subject to change.]

 
Classes
  - ClassDescription
Public classBinarySerializer
+
ClassDescription
Public classBinaryHelpers
Public classBinarySerializer
Helper class for serializing classes to binary -
Public classMessageChunker
+
Public classBitReader
Public classBitWriter
Public classMessageChunker
Helper class to chunk messages
\ No newline at end of file diff --git a/docs/html/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm b/docs/html/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm new file mode 100644 index 0000000..040a1b2 --- /dev/null +++ b/docs/html/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm @@ -0,0 +1,3 @@ +BinaryHelpers.SwapEndian Method

BinaryHelpersSwapEndian Method

[This is preliminary documentation and is subject to change.]

Overload List
See Also
\ No newline at end of file diff --git a/docs/html/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm b/docs/html/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm new file mode 100644 index 0000000..a52b2cb --- /dev/null +++ b/docs/html/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm @@ -0,0 +1,7 @@ +BitWriter.Finalize Method \ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isClient.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isClient.htm index 49cee09..67b4bb0 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isClient.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isClient.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isHost.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isHost.htm index 6462172..2011b16 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isHost.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isHost.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isLocalPlayer.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isLocalPlayer.htm index 58648cc..badf201 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isLocalPlayer.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isLocalPlayer.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isOwner.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isOwner.htm index 47bfedd..3969649 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isOwner.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isOwner.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isServer.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isServer.htm index 44c3225..59ea9c3 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isServer.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isServer.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file + View Source

Property Value

Type: Boolean
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkId.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkId.htm index 4f88122..5f2791a 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkId.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkId.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: UInt32
See Also
\ No newline at end of file + View Source

Property Value

Type: UInt32
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkedObject.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkedObject.htm index 92ac374..35ff0e8 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkedObject.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkedObject.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: NetworkedObject
See Also
\ No newline at end of file + View Source

Property Value

Type: NetworkedObject
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm index c391b8b..880d9a6 100644 --- a/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm +++ b/docs/html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: UInt32
See Also
\ No newline at end of file + View Source

Property Value

Type: UInt32
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_Attributes_SyncedVar.htm b/docs/html/T_MLAPI_Attributes_SyncedVar.htm index 0706a55..180d9d7 100644 --- a/docs/html/T_MLAPI_Attributes_SyncedVar.htm +++ b/docs/html/T_MLAPI_Attributes_SyncedVar.htm @@ -28,4 +28,6 @@  
NameDescription
Public fieldhook
The method name to invoke when the SyncVar get's updated. +
Public fieldtarget
+ If true, the syncedVar will only be synced to the owner.
Top
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm b/docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm new file mode 100644 index 0000000..fb0ddb3 --- /dev/null +++ b/docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm @@ -0,0 +1,21 @@ +BinaryHelpers Class

BinaryHelpers Class

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "T:MLAPI.NetworkingManagerComponents.Binary.BinaryHelpers"]

Inheritance Hierarchy
SystemObject
  MLAPI.NetworkingManagerComponents.BinaryBinaryHelpers

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static class BinaryHelpers
Request Example + View Source
Methods
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm b/docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm new file mode 100644 index 0000000..685734b --- /dev/null +++ b/docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm @@ -0,0 +1,23 @@ +BitReader Class

BitReader Class

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "T:MLAPI.NetworkingManagerComponents.Binary.BitReader"]

Inheritance Hierarchy
SystemObject
  MLAPI.NetworkingManagerComponents.BinaryBitReader

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public class BitReader
Request Example + View Source

The BitReader type exposes the following members.

Constructors
+   + NameDescription
Public methodBitReader
Initializes a new instance of the BitReader class
Top
Methods
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm b/docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm new file mode 100644 index 0000000..ed011dd --- /dev/null +++ b/docs/html/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm @@ -0,0 +1,31 @@ +BitWriter Class

BitWriter Class

[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "T:MLAPI.NetworkingManagerComponents.Binary.BitWriter"]

Inheritance Hierarchy
SystemObject
  MLAPI.NetworkingManagerComponents.BinaryBitWriter

+ Namespace: +  MLAPI.NetworkingManagerComponents.Binary
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public sealed class BitWriter : IDisposable
Request Example + View Source

The BitWriter type exposes the following members.

Constructors
+   + NameDescription
Public methodBitWriter
+ Allocates a new binary collector. +
Top
Methods
See Also
\ No newline at end of file diff --git a/docs/toc/Fields_T_MLAPI_Attributes_SyncedVar.xml b/docs/toc/Fields_T_MLAPI_Attributes_SyncedVar.xml index 17fabda..cee71a9 100644 --- a/docs/toc/Fields_T_MLAPI_Attributes_SyncedVar.xml +++ b/docs/toc/Fields_T_MLAPI_Attributes_SyncedVar.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.xml b/docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.xml new file mode 100644 index 0000000..7ba8cdc --- /dev/null +++ b/docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.xml b/docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.xml new file mode 100644 index 0000000..d511fa4 --- /dev/null +++ b/docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.xml b/docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.xml new file mode 100644 index 0000000..c8b0050 --- /dev/null +++ b/docs/toc/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/N_MLAPI_NetworkingManagerComponents_Binary.xml b/docs/toc/N_MLAPI_NetworkingManagerComponents_Binary.xml index a47c663..12119b2 100644 --- a/docs/toc/N_MLAPI_NetworkingManagerComponents_Binary.xml +++ b/docs/toc/N_MLAPI_NetworkingManagerComponents_Binary.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/docs/toc/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.xml b/docs/toc/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.xml new file mode 100644 index 0000000..2facfae --- /dev/null +++ b/docs/toc/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.xml b/docs/toc/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.xml new file mode 100644 index 0000000..37270a8 --- /dev/null +++ b/docs/toc/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.xml b/docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.xml new file mode 100644 index 0000000..587a066 --- /dev/null +++ b/docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.xml b/docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.xml new file mode 100644 index 0000000..a6ffc2a --- /dev/null +++ b/docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.xml b/docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.xml new file mode 100644 index 0000000..71e5545 --- /dev/null +++ b/docs/toc/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.xml @@ -0,0 +1 @@ + \ No newline at end of file From 36e8c79cca2465f0cb7dbc0e7324e6f738bbf3b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Wed, 18 Apr 2018 15:22:47 +0200 Subject: [PATCH 31/47] Added warnings when trying to send a message on a invalid MessageType --- .../MonoBehaviours/Core/NetworkedBehaviour.cs | 72 ++++++++++++++++++- 1 file changed, 71 insertions(+), 1 deletion(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index 228c34b..b74b4b4 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -923,7 +923,12 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToServer(string messageType, string channelName, byte[] data) { - if(MessageManager.messageTypes[messageType] < 32) + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } + if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); return; @@ -956,6 +961,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToServerTarget(string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -989,6 +999,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToLocalClient(string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1022,6 +1037,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToLocalClientTarget(string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1055,6 +1075,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToNonLocalClients(string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1088,6 +1113,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToNonLocalClientsTarget(string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1122,6 +1152,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToClient(uint clientId, string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1157,6 +1192,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToClientTarget(uint clientId, string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1192,6 +1232,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToClients(uint[] clientIds, string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1227,6 +1272,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToClientsTarget(uint[] clientIds, string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1262,6 +1312,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToClients(List clientIds, string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1297,6 +1352,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToClientsTarget(List clientIds, string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1331,6 +1391,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToClients(string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); @@ -1364,6 +1429,11 @@ namespace MLAPI.MonoBehaviours.Core /// The binary data to send protected void SendToClientsTarget(string messageType, string channelName, byte[] data) { + if (!MessageManager.messageTypes.ContainsKey(messageType)) + { + Debug.LogWarning("MLAPI: Invalid message type \"" + channelName + "\""); + return; + } if (MessageManager.messageTypes[messageType] < 32) { Debug.LogWarning("MLAPI: Sending messages on the internal MLAPI channels is not allowed!"); From e8d58d292b8efe1f77ec6d55b6104c2847e2baa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Wed, 18 Apr 2018 19:55:08 +0200 Subject: [PATCH 32/47] Cleaned up SyncedVar system slightly --- MLAPI/Data/FieldType.cs | 49 ++- .../MonoBehaviours/Core/NetworkedBehaviour.cs | 303 +----------------- 2 files changed, 61 insertions(+), 291 deletions(-) diff --git a/MLAPI/Data/FieldType.cs b/MLAPI/Data/FieldType.cs index 0d4a50a..0da5c11 100644 --- a/MLAPI/Data/FieldType.cs +++ b/MLAPI/Data/FieldType.cs @@ -1,4 +1,7 @@ -namespace MLAPI.Data +using System; +using UnityEngine; + +namespace MLAPI.Data { /// /// The datatype used to classify SyncedVars @@ -20,6 +23,48 @@ Vector3, Vector2, Quaternion, - ByteArray + ByteArray, + Invalid + } + + internal static class FieldTypeHelper + { + internal static FieldType GetFieldType(Type type) + { + if (type == typeof(bool)) + return FieldType.Bool; + else if (type == typeof(byte)) + return FieldType.Byte; + else if (type == typeof(double)) + return FieldType.Double; + else if (type == typeof(float)) + return FieldType.Single; + else if (type == typeof(int)) + return FieldType.Int; + else if (type == typeof(long)) + return FieldType.Long; + else if (type == typeof(sbyte)) + return FieldType.SByte; + else if (type == typeof(short)) + return FieldType.Short; + else if (type == typeof(uint)) + return FieldType.UInt; + else if (type == typeof(ulong)) + return FieldType.ULong; + else if (type == typeof(ushort)) + return FieldType.UShort; + else if (type == typeof(string)) + return FieldType.String; + else if (type == typeof(Vector3)) + return FieldType.Vector3; + else if (type == typeof(Vector2)) + return FieldType.Vector2; + else if (type == typeof(Quaternion)) + return FieldType.Quaternion; + else if (type == typeof(byte[])) + return FieldType.ByteArray; + else + return FieldType.Invalid; + } } } diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index b74b4b4..9927348 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -220,194 +220,15 @@ namespace MLAPI.MonoBehaviours.Core method = GetType().GetMethod(((SyncedVar)syncedVarAttributes[0]).hook, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance); break; } - if (sortedFields[i].FieldType == typeof(bool)) + FieldType fieldType = FieldTypeHelper.GetFieldType(sortedFields[i].FieldType); + if (fieldType != FieldType.Invalid) { syncedVarFields.Add(new SyncedVarField() { Dirty = false, Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, FieldInfo = sortedFields[i], - FieldType = FieldType.Bool, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if(sortedFields[i].FieldType == typeof(byte)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.Byte, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if (sortedFields[i].FieldType == typeof(double)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.Double, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if (sortedFields[i].FieldType == typeof(float)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.Single, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if (sortedFields[i].FieldType == typeof(int)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.Int, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if (sortedFields[i].FieldType == typeof(long)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.Long, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if (sortedFields[i].FieldType == typeof(sbyte)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.SByte, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if (sortedFields[i].FieldType == typeof(short)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.Short, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if (sortedFields[i].FieldType == typeof(uint)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.UInt, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if (sortedFields[i].FieldType == typeof(ulong)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.ULong, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if (sortedFields[i].FieldType == typeof(ushort)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.UShort, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if(sortedFields[i].FieldType == typeof(string)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.String, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if(sortedFields[i].FieldType == typeof(Vector3)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.Vector3, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if(sortedFields[i].FieldType == typeof(Vector2)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.Vector2, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if (sortedFields[i].FieldType == typeof(Quaternion)) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.Quaternion, - FieldValue = sortedFields[i].GetValue(this), - HookMethod = method - }); - } - else if(sortedFields[i].FieldType == typeof(byte[])) - { - syncedVarFields.Add(new SyncedVarField() - { - Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, - FieldInfo = sortedFields[i], - FieldType = FieldType.ByteArray, + FieldType = fieldType, FieldValue = sortedFields[i].GetValue(this), HookMethod = method }); @@ -704,21 +525,20 @@ namespace MLAPI.MonoBehaviours.Core writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); break; } + + if (nonTargetDirtyCount == 0) + { + //Only targeted SyncedVars were changed. Thus we need to set them as non dirty here since it wont be done by the next loop. + syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); + syncedVarFields[i].Dirty = false; + } } } InternalMessageHandler.Send(ownerClientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", writer.Finalize()); //Send only to target } if (nonTargetDirtyCount == 0) - { - //Seems like ONLY targeted syncedVars was changed. Thus we need to remove the dirty tags and return; - for (int i = 0; i < syncedVarFields.Count; i++) - { - syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); - syncedVarFields[i].Dirty = false; - } return; - } //It's sync time. This is the NON target receivers packet. using (BitWriter writer = new BitWriter()) @@ -811,105 +631,10 @@ namespace MLAPI.MonoBehaviours.Core return; for (int i = 0; i < syncedVarFields.Count; i++) { - switch (syncedVarFields[i].FieldType) - { - case FieldType.Bool: - if ((bool)syncedVarFields[i].FieldInfo.GetValue(this) != (bool)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.Byte: - if ((byte)syncedVarFields[i].FieldInfo.GetValue(this) != (byte)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.Double: - if ((double)syncedVarFields[i].FieldInfo.GetValue(this) != (double)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.Single: - if ((float)syncedVarFields[i].FieldInfo.GetValue(this) != (float)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.Int: - if ((int)syncedVarFields[i].FieldInfo.GetValue(this) != (int)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.Long: - if ((long)syncedVarFields[i].FieldInfo.GetValue(this) != (long)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.SByte: - if ((sbyte)syncedVarFields[i].FieldInfo.GetValue(this) != (sbyte)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.Short: - if ((short)syncedVarFields[i].FieldInfo.GetValue(this) != (short)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.UInt: - if ((uint)syncedVarFields[i].FieldInfo.GetValue(this) != (uint)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.ULong: - if ((ulong)syncedVarFields[i].FieldInfo.GetValue(this) != (ulong)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.UShort: - if ((ushort)syncedVarFields[i].FieldInfo.GetValue(this) != (ushort)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.String: - if ((string)syncedVarFields[i].FieldInfo.GetValue(this) != (string)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.Vector3: - if ((Vector3)syncedVarFields[i].FieldInfo.GetValue(this) != (Vector3)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.Vector2: - if ((Vector2)syncedVarFields[i].FieldInfo.GetValue(this) != (Vector2)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.Quaternion: - if ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this) != (Quaternion)syncedVarFields[i].FieldValue) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - case FieldType.ByteArray: - if(((byte[])syncedVarFields[i].FieldInfo.GetValue(this)).SequenceEqual(((byte[])syncedVarFields[i].FieldValue))) - syncedVarFields[i].Dirty = true; //This fields value is out of sync! - else - syncedVarFields[i].Dirty = false; //Up to date - break; - } + if (!syncedVarFields[i].FieldInfo.GetValue(this).Equals(syncedVarFields[i].FieldValue)) + syncedVarFields[i].Dirty = true; //This fields value is out of sync! + else + syncedVarFields[i].Dirty = false; //Up to date; } } #endregion From f45ac572ea6d00c3de62dbcb273bd6381473e423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Wed, 18 Apr 2018 20:03:33 +0200 Subject: [PATCH 33/47] Fixed issue with Target SyncedVar when running as host --- .../MonoBehaviours/Core/NetworkedBehaviour.cs | 151 +++++++++--------- 1 file changed, 77 insertions(+), 74 deletions(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index 9927348..9c08c75 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -453,88 +453,91 @@ namespace MLAPI.MonoBehaviours.Core } else { - //It's sync time. This is the target receivers packet. - using (BitWriter writer = new BitWriter()) + if (!(isHost && new NetId(ownerClientId).IsHost())) { - //Write all indexes - writer.WriteByte(totalDirtyCount); - writer.WriteUInt(networkId); //NetId - writer.WriteUShort(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex - for (byte i = 0; i < syncedVarFields.Count; i++) + //It's sync time. This is the target receivers packet. + using (BitWriter writer = new BitWriter()) { - //Writes all the indexes of the dirty syncvars. - if (syncedVarFields[i].Dirty == true) + //Write all indexes + writer.WriteByte(totalDirtyCount); + writer.WriteUInt(networkId); //NetId + writer.WriteUShort(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex + for (byte i = 0; i < syncedVarFields.Count; i++) { - writer.WriteByte(i); //FieldIndex - switch (syncedVarFields[i].FieldType) + //Writes all the indexes of the dirty syncvars. + if (syncedVarFields[i].Dirty == true) { - case FieldType.Bool: - writer.WriteBool((bool)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Byte: - writer.WriteByte((byte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Double: - writer.WriteDouble((double)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Single: - writer.WriteFloat((float)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Int: - writer.WriteInt((int)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Long: - writer.WriteLong((long)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByte: - writer.WriteSByte((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Short: - writer.WriteShort((short)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UInt: - writer.WriteUInt((uint)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULong: - writer.WriteULong((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShort: - writer.WriteUShort((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.String: - writer.WriteString((string)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Vector3: - Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteFloat(vector3.x); - writer.WriteFloat(vector3.y); - writer.WriteFloat(vector3.z); - break; - case FieldType.Vector2: - Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteFloat(vector2.x); - writer.WriteFloat(vector2.y); - break; - case FieldType.Quaternion: - Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; - writer.WriteFloat(euler.x); - writer.WriteFloat(euler.y); - writer.WriteFloat(euler.z); - break; - case FieldType.ByteArray: - writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - } + writer.WriteByte(i); //FieldIndex + switch (syncedVarFields[i].FieldType) + { + case FieldType.Bool: + writer.WriteBool((bool)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Byte: + writer.WriteByte((byte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Double: + writer.WriteDouble((double)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Single: + writer.WriteFloat((float)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Int: + writer.WriteInt((int)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Long: + writer.WriteLong((long)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByte: + writer.WriteSByte((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Short: + writer.WriteShort((short)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UInt: + writer.WriteUInt((uint)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULong: + writer.WriteULong((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShort: + writer.WriteUShort((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.String: + writer.WriteString((string)syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.Vector3: + Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteFloat(vector3.x); + writer.WriteFloat(vector3.y); + writer.WriteFloat(vector3.z); + break; + case FieldType.Vector2: + Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteFloat(vector2.x); + writer.WriteFloat(vector2.y); + break; + case FieldType.Quaternion: + Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; + writer.WriteFloat(euler.x); + writer.WriteFloat(euler.y); + writer.WriteFloat(euler.z); + break; + case FieldType.ByteArray: + writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + } - if (nonTargetDirtyCount == 0) - { - //Only targeted SyncedVars were changed. Thus we need to set them as non dirty here since it wont be done by the next loop. - syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); - syncedVarFields[i].Dirty = false; + if (nonTargetDirtyCount == 0) + { + //Only targeted SyncedVars were changed. Thus we need to set them as non dirty here since it wont be done by the next loop. + syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); + syncedVarFields[i].Dirty = false; + } } } + InternalMessageHandler.Send(ownerClientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", writer.Finalize()); //Send only to target } - InternalMessageHandler.Send(ownerClientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", writer.Finalize()); //Send only to target } if (nonTargetDirtyCount == 0) From 9df6316c5937a0e3dad3f3aa7d70b5029544b58a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= Date: Thu, 19 Apr 2018 09:26:48 +0200 Subject: [PATCH 34/47] Fixed SyncedVarHook issue --- MLAPI/Attributes/SyncedVar.cs | 2 +- .../MonoBehaviours/Core/NetworkedBehaviour.cs | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/MLAPI/Attributes/SyncedVar.cs b/MLAPI/Attributes/SyncedVar.cs index 19e7111..c469874 100644 --- a/MLAPI/Attributes/SyncedVar.cs +++ b/MLAPI/Attributes/SyncedVar.cs @@ -11,7 +11,7 @@ namespace MLAPI.Attributes /// /// The method name to invoke when the SyncVar get's updated. /// - public string hook; + public string hookMethodName; /// /// If true, the syncedVar will only be synced to the owner. /// diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index 9c08c75..56593ac 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -213,24 +213,24 @@ namespace MLAPI.MonoBehaviours.Core { if(sortedFields[i].IsDefined(typeof(SyncedVar), true)) { - object[] syncedVarAttributes = sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true); - MethodInfo method = null; - if (!string.IsNullOrEmpty(((SyncedVar)syncedVarAttributes[0]).hook)) - { - method = GetType().GetMethod(((SyncedVar)syncedVarAttributes[0]).hook, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance); - break; - } + SyncedVar attribute = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]); + + MethodInfo hookMethod = null; + + if (!string.IsNullOrEmpty(attribute.hookMethodName)) + hookMethod = GetType().GetMethod(attribute.hookMethodName, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance); + FieldType fieldType = FieldTypeHelper.GetFieldType(sortedFields[i].FieldType); if (fieldType != FieldType.Invalid) { syncedVarFields.Add(new SyncedVarField() { Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + Target = attribute.target, FieldInfo = sortedFields[i], FieldType = fieldType, FieldValue = sortedFields[i].GetValue(this), - HookMethod = method + HookMethod = hookMethod }); } else From 503964c475a348af3a00b9a1b76f226d7e815646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Thu, 19 Apr 2018 13:59:13 +0200 Subject: [PATCH 35/47] Removed Planned features from Readme. See roadmap on Wiki --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index e1450ad..867fedb 100644 --- a/README.md +++ b/README.md @@ -34,10 +34,6 @@ There is also a autogenerated Sandcastle [API reference](https://twotenpvp.githu * Encryption \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/Message-Encryption)\] * Super efficient BitWriter & BitReader \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/BitWriter-&-BitReader)\] - -## Planned features -* Area of interest - ## Example [Example project](https://github.com/TwoTenPvP/MLAPI-Examples) From f5ebe8315a73184d6400d20095e023cff90b8f94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Thu, 19 Apr 2018 14:19:36 +0200 Subject: [PATCH 36/47] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 867fedb..0405301 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ There is also a autogenerated Sandcastle [API reference](https://twotenpvp.githu ### Requirements * Unity 2017 or newer +* .NET 4.6 or .NET 3.5 with .NET 2.0 non subset [Issue](https://github.com/TwoTenPvP/MLAPI/issues/43) ## Feature highlights * Host support (Client hosts the server) From 8e31dbe62492557b725d2850a862d26b81845fe8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Thu, 19 Apr 2018 15:39:34 +0200 Subject: [PATCH 37/47] Removed allocations from NetId --- MLAPI/Data/NetId.cs | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/MLAPI/Data/NetId.cs b/MLAPI/Data/NetId.cs index cae1a56..4521704 100644 --- a/MLAPI/Data/NetId.cs +++ b/MLAPI/Data/NetId.cs @@ -1,5 +1,4 @@ using MLAPI.MonoBehaviours.Core; -using System; namespace MLAPI.Data { @@ -66,20 +65,15 @@ namespace MLAPI.Data else Meta = 0; } - - - private static byte[] tempUIntBytes = new byte[4]; - private static byte[] tempUShortBytes = new byte[2]; /// /// Initializes a new instance of the netId struct from a clientId /// /// Client identifier. public NetId(uint clientId) { - tempUIntBytes = BitConverter.GetBytes(clientId); - HostId = tempUIntBytes[0]; - ConnectionId = BitConverter.ToUInt16(tempUIntBytes, 1); - Meta = tempUIntBytes[3]; + HostId = (byte)(clientId & 0xFF); + ConnectionId = (ushort)((byte)((clientId >> 8) & 0xFF) | (ushort)(((clientId >> 16) & 0xFF) << 8)); + Meta = (byte)((clientId >> 24) & 0xFF); } /// /// Gets the clientId. @@ -87,12 +81,7 @@ namespace MLAPI.Data /// The client identifier. public uint GetClientId() { - tempUShortBytes = BitConverter.GetBytes(ConnectionId); - tempUIntBytes[0] = HostId; - tempUIntBytes[1] = tempUShortBytes[0]; - tempUIntBytes[2] = tempUShortBytes[1]; - tempUIntBytes[3] = Meta; - return BitConverter.ToUInt32(tempUIntBytes, 0); + return (uint)HostId | (ushort)((uint)(byte)(ConnectionId & 0xFF) << 8) | (ushort)((uint)(byte)((ConnectionId >> 8) & 0xFF) << 16) | (ushort)((uint)Meta << 24); } // Rider generated vvv /// From baa6518c0ecf3c0822816d40ce629ca67d5c3c07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Thu, 19 Apr 2018 16:05:26 +0200 Subject: [PATCH 38/47] Fixed ClientId cast issue --- MLAPI/Data/NetId.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLAPI/Data/NetId.cs b/MLAPI/Data/NetId.cs index 4521704..9e8e3ac 100644 --- a/MLAPI/Data/NetId.cs +++ b/MLAPI/Data/NetId.cs @@ -81,7 +81,7 @@ namespace MLAPI.Data /// The client identifier. public uint GetClientId() { - return (uint)HostId | (ushort)((uint)(byte)(ConnectionId & 0xFF) << 8) | (ushort)((uint)(byte)((ConnectionId >> 8) & 0xFF) << 16) | (ushort)((uint)Meta << 24); + return HostId | (uint)((ConnectionId & 0xFF) << 8) | (uint)(((ConnectionId >> 8) & 0xFF) << 16) | (uint)(Meta << 24); } // Rider generated vvv /// From afc45981f339f633633507fee3014d31e2f84d58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Thu, 19 Apr 2018 17:21:22 +0200 Subject: [PATCH 39/47] Added support for more array types to SyncedVars --- MLAPI/Data/FieldType.cs | 42 +++ .../MonoBehaviours/Core/NetworkedBehaviour.cs | 282 +++++++++++++++++- 2 files changed, 319 insertions(+), 5 deletions(-) diff --git a/MLAPI/Data/FieldType.cs b/MLAPI/Data/FieldType.cs index 0da5c11..20c41d9 100644 --- a/MLAPI/Data/FieldType.cs +++ b/MLAPI/Data/FieldType.cs @@ -23,7 +23,21 @@ namespace MLAPI.Data Vector3, Vector2, Quaternion, + BoolArray, ByteArray, + DoubleArray, + SingleArray, + IntArray, + LongArray, + SByteArray, + ShortArray, + UIntArray, + ULongArray, + UShortArray, + StringArray, + Vector3Array, + Vector2Array, + QuaternionArray, Invalid } @@ -61,8 +75,36 @@ namespace MLAPI.Data return FieldType.Vector2; else if (type == typeof(Quaternion)) return FieldType.Quaternion; + else if (type == typeof(bool[])) + return FieldType.BoolArray; else if (type == typeof(byte[])) return FieldType.ByteArray; + else if (type == typeof(double[])) + return FieldType.DoubleArray; + else if (type == typeof(float[])) + return FieldType.SingleArray; + else if (type == typeof(int[])) + return FieldType.IntArray; + else if (type == typeof(long[])) + return FieldType.LongArray; + else if (type == typeof(sbyte[])) + return FieldType.SByteArray; + else if (type == typeof(short[])) + return FieldType.ShortArray; + else if (type == typeof(uint[])) + return FieldType.UIntArray; + else if (type == typeof(ulong[])) + return FieldType.ULongArray; + else if (type == typeof(ushort[])) + return FieldType.UShortArray; + else if (type == typeof(string[])) + return FieldType.StringArray; + else if (type == typeof(Vector3[])) + return FieldType.Vector3Array; + else if (type == typeof(Vector2[])) + return FieldType.Vector2Array; + else if (type == typeof(Quaternion[])) + return FieldType.QuaternionArray; else return FieldType.Invalid; } diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index 56593ac..e9fc905 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -334,9 +334,78 @@ namespace MLAPI.MonoBehaviours.Core writer.WriteFloat(euler.y); writer.WriteFloat(euler.z); break; + case FieldType.BoolArray: + bool[] bools = (bool[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)bools.Length); + for (int j = 0; j < bools.Length; j++) + writer.WriteBool(bools[j]); + break; case FieldType.ByteArray: writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); break; + case FieldType.DoubleArray: + writer.WriteDoubleArray((double[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SingleArray: + writer.WriteFloatArray((float[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.IntArray: + writer.WriteIntArray((int[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.LongArray: + writer.WriteLongArray((long[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByteArray: + writer.WriteSByteArray((sbyte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ShortArray: + writer.WriteShortArray((short[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UIntArray: + writer.WriteUIntArray((uint[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULongArray: + writer.WriteULongArray((ulong[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShortArray: + writer.WriteUShortArray((ushort[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.StringArray: + string[] strings = (string[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)strings.Length); + for (int j = 0; j < strings.Length; j++) + writer.WriteString(strings[j]); + break; + case FieldType.Vector3Array: + Vector3[] vector3s = (Vector3[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)vector3s.Length); + for (int j = 0; j < vector3s.Length; j++) + { + writer.WriteFloat(vector3s[j].x); + writer.WriteFloat(vector3s[j].y); + writer.WriteFloat(vector3s[j].z); + } + break; + case FieldType.Vector2Array: + Vector2[] vector2s = (Vector2[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)vector2s.Length); + for (int j = 0; j < vector2s.Length; j++) + { + writer.WriteFloat(vector2s[j].x); + writer.WriteFloat(vector2s[j].y); + } + break; + case FieldType.QuaternionArray: + Quaternion[] quaternions = (Quaternion[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)quaternions.Length); + for (int j = 0; j < quaternions.Length; j++) + { + writer.WriteFloat(quaternions[j].eulerAngles.x); + writer.WriteFloat(quaternions[j].eulerAngles.y); + writer.WriteFloat(quaternions[j].eulerAngles.z); + } + break; + } } InternalMessageHandler.Send(clientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", writer.Finalize()); @@ -439,10 +508,77 @@ namespace MLAPI.MonoBehaviours.Core writer.WriteFloat(euler.y); writer.WriteFloat(euler.z); break; + case FieldType.BoolArray: + bool[] bools = (bool[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)bools.Length); + for (int j = 0; j < bools.Length; j++) + writer.WriteBool(bools[j]); + break; case FieldType.ByteArray: writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); break; - + case FieldType.DoubleArray: + writer.WriteDoubleArray((double[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SingleArray: + writer.WriteFloatArray((float[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.IntArray: + writer.WriteIntArray((int[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.LongArray: + writer.WriteLongArray((long[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByteArray: + writer.WriteSByteArray((sbyte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ShortArray: + writer.WriteShortArray((short[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UIntArray: + writer.WriteUIntArray((uint[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULongArray: + writer.WriteULongArray((ulong[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShortArray: + writer.WriteUShortArray((ushort[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.StringArray: + string[] strings = (string[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)strings.Length); + for (int j = 0; j < strings.Length; j++) + writer.WriteString(strings[j]); + break; + case FieldType.Vector3Array: + Vector3[] vector3s = (Vector3[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)vector3s.Length); + for (int j = 0; j < vector3s.Length; j++) + { + writer.WriteFloat(vector3s[j].x); + writer.WriteFloat(vector3s[j].y); + writer.WriteFloat(vector3s[j].z); + } + break; + case FieldType.Vector2Array: + Vector2[] vector2s = (Vector2[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)vector2s.Length); + for (int j = 0; j < vector2s.Length; j++) + { + writer.WriteFloat(vector2s[j].x); + writer.WriteFloat(vector2s[j].y); + } + break; + case FieldType.QuaternionArray: + Quaternion[] quaternions = (Quaternion[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)quaternions.Length); + for (int j = 0; j < quaternions.Length; j++) + { + writer.WriteFloat(quaternions[j].eulerAngles.x); + writer.WriteFloat(quaternions[j].eulerAngles.y); + writer.WriteFloat(quaternions[j].eulerAngles.z); + } + break; } syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); syncedVarFields[i].Dirty = false; @@ -523,9 +659,77 @@ namespace MLAPI.MonoBehaviours.Core writer.WriteFloat(euler.y); writer.WriteFloat(euler.z); break; + case FieldType.BoolArray: + bool[] bools = (bool[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)bools.Length); + for (int j = 0; j < bools.Length; j++) + writer.WriteBool(bools[j]); + break; case FieldType.ByteArray: writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); break; + case FieldType.DoubleArray: + writer.WriteDoubleArray((double[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SingleArray: + writer.WriteFloatArray((float[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.IntArray: + writer.WriteIntArray((int[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.LongArray: + writer.WriteLongArray((long[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByteArray: + writer.WriteSByteArray((sbyte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ShortArray: + writer.WriteShortArray((short[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UIntArray: + writer.WriteUIntArray((uint[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULongArray: + writer.WriteULongArray((ulong[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShortArray: + writer.WriteUShortArray((ushort[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.StringArray: + string[] strings = (string[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)strings.Length); + for (int j = 0; j < strings.Length; j++) + writer.WriteString(strings[j]); + break; + case FieldType.Vector3Array: + Vector3[] vector3s = (Vector3[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)vector3s.Length); + for (int j = 0; j < vector3s.Length; j++) + { + writer.WriteFloat(vector3s[j].x); + writer.WriteFloat(vector3s[j].y); + writer.WriteFloat(vector3s[j].z); + } + break; + case FieldType.Vector2Array: + Vector2[] vector2s = (Vector2[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)vector2s.Length); + for (int j = 0; j < vector2s.Length; j++) + { + writer.WriteFloat(vector2s[j].x); + writer.WriteFloat(vector2s[j].y); + } + break; + case FieldType.QuaternionArray: + Quaternion[] quaternions = (Quaternion[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)quaternions.Length); + for (int j = 0; j < quaternions.Length; j++) + { + writer.WriteFloat(quaternions[j].eulerAngles.x); + writer.WriteFloat(quaternions[j].eulerAngles.y); + writer.WriteFloat(quaternions[j].eulerAngles.z); + } + break; } if (nonTargetDirtyCount == 0) @@ -611,11 +815,79 @@ namespace MLAPI.MonoBehaviours.Core writer.WriteFloat(euler.y); writer.WriteFloat(euler.z); break; - case FieldType.ByteArray: - writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; + case FieldType.BoolArray: + bool[] bools = (bool[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)bools.Length); + for (int j = 0; j < bools.Length; j++) + writer.WriteBool(bools[j]); + break; + case FieldType.ByteArray: + writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.DoubleArray: + writer.WriteDoubleArray((double[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SingleArray: + writer.WriteFloatArray((float[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.IntArray: + writer.WriteIntArray((int[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.LongArray: + writer.WriteLongArray((long[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.SByteArray: + writer.WriteSByteArray((sbyte[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ShortArray: + writer.WriteShortArray((short[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UIntArray: + writer.WriteUIntArray((uint[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.ULongArray: + writer.WriteULongArray((ulong[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.UShortArray: + writer.WriteUShortArray((ushort[])syncedVarFields[i].FieldInfo.GetValue(this)); + break; + case FieldType.StringArray: + string[] strings = (string[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)strings.Length); + for (int j = 0; j < strings.Length; j++) + writer.WriteString(strings[j]); + break; + case FieldType.Vector3Array: + Vector3[] vector3s = (Vector3[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)vector3s.Length); + for (int j = 0; j < vector3s.Length; j++) + { + writer.WriteFloat(vector3s[j].x); + writer.WriteFloat(vector3s[j].y); + writer.WriteFloat(vector3s[j].z); + } + break; + case FieldType.Vector2Array: + Vector2[] vector2s = (Vector2[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)vector2s.Length); + for (int j = 0; j < vector2s.Length; j++) + { + writer.WriteFloat(vector2s[j].x); + writer.WriteFloat(vector2s[j].y); + } + break; + case FieldType.QuaternionArray: + Quaternion[] quaternions = (Quaternion[])syncedVarFields[i].FieldInfo.GetValue(this); + writer.WriteUShort((ushort)quaternions.Length); + for (int j = 0; j < quaternions.Length; j++) + { + writer.WriteFloat(quaternions[j].eulerAngles.x); + writer.WriteFloat(quaternions[j].eulerAngles.y); + writer.WriteFloat(quaternions[j].eulerAngles.z); + } + break; - } + } syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); syncedVarFields[i].Dirty = false; } From 438f4fa9c248c125230ff29db4ec4f75fa3bf703 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Thu, 19 Apr 2018 17:32:00 +0200 Subject: [PATCH 40/47] Cleaned up SyncedVar system --- MLAPI/Data/FieldType.cs | 135 ++++- .../MonoBehaviours/Core/NetworkedBehaviour.cs | 540 +----------------- 2 files changed, 150 insertions(+), 525 deletions(-) diff --git a/MLAPI/Data/FieldType.cs b/MLAPI/Data/FieldType.cs index 20c41d9..abd8c31 100644 --- a/MLAPI/Data/FieldType.cs +++ b/MLAPI/Data/FieldType.cs @@ -1,4 +1,6 @@ -using System; +using MLAPI.NetworkingManagerComponents.Binary; +using System; +using System.Reflection; using UnityEngine; namespace MLAPI.Data @@ -43,6 +45,137 @@ namespace MLAPI.Data internal static class FieldTypeHelper { + internal static void WriteFieldType(BitWriter writer, FieldInfo field, object fieldInstance, FieldType fieldType) + { + switch (fieldType) + { + case FieldType.Bool: + writer.WriteBool((bool)field.GetValue(fieldInstance)); + break; + case FieldType.Byte: + writer.WriteByte((byte)field.GetValue(fieldInstance)); + break; + case FieldType.Double: + writer.WriteDouble((double)field.GetValue(fieldInstance)); + break; + case FieldType.Single: + writer.WriteFloat((float)field.GetValue(fieldInstance)); + break; + case FieldType.Int: + writer.WriteInt((int)field.GetValue(fieldInstance)); + break; + case FieldType.Long: + writer.WriteLong((long)field.GetValue(fieldInstance)); + break; + case FieldType.SByte: + writer.WriteSByte((sbyte)field.GetValue(fieldInstance)); + break; + case FieldType.Short: + writer.WriteShort((short)field.GetValue(fieldInstance)); + break; + case FieldType.UInt: + writer.WriteUInt((uint)field.GetValue(fieldInstance)); + break; + case FieldType.ULong: + writer.WriteULong((ulong)field.GetValue(fieldInstance)); + break; + case FieldType.UShort: + writer.WriteUShort((ushort)field.GetValue(fieldInstance)); + break; + case FieldType.String: + writer.WriteString((string)field.GetValue(fieldInstance)); + break; + case FieldType.Vector3: + Vector3 vector3 = (Vector3)field.GetValue(fieldInstance); + writer.WriteFloat(vector3.x); + writer.WriteFloat(vector3.y); + writer.WriteFloat(vector3.z); + break; + case FieldType.Vector2: + Vector2 vector2 = (Vector2)field.GetValue(fieldInstance); + writer.WriteFloat(vector2.x); + writer.WriteFloat(vector2.y); + break; + case FieldType.Quaternion: + Vector3 euler = ((Quaternion)field.GetValue(fieldInstance)).eulerAngles; + writer.WriteFloat(euler.x); + writer.WriteFloat(euler.y); + writer.WriteFloat(euler.z); + break; + case FieldType.BoolArray: + bool[] bools = (bool[])field.GetValue(fieldInstance); + writer.WriteUShort((ushort)bools.Length); + for (int j = 0; j < bools.Length; j++) + writer.WriteBool(bools[j]); + break; + case FieldType.ByteArray: + writer.WriteByteArray((byte[])field.GetValue(fieldInstance)); + break; + case FieldType.DoubleArray: + writer.WriteDoubleArray((double[])field.GetValue(fieldInstance)); + break; + case FieldType.SingleArray: + writer.WriteFloatArray((float[])field.GetValue(fieldInstance)); + break; + case FieldType.IntArray: + writer.WriteIntArray((int[])field.GetValue(fieldInstance)); + break; + case FieldType.LongArray: + writer.WriteLongArray((long[])field.GetValue(fieldInstance)); + break; + case FieldType.SByteArray: + writer.WriteSByteArray((sbyte[])field.GetValue(fieldInstance)); + break; + case FieldType.ShortArray: + writer.WriteShortArray((short[])field.GetValue(fieldInstance)); + break; + case FieldType.UIntArray: + writer.WriteUIntArray((uint[])field.GetValue(fieldInstance)); + break; + case FieldType.ULongArray: + writer.WriteULongArray((ulong[])field.GetValue(fieldInstance)); + break; + case FieldType.UShortArray: + writer.WriteUShortArray((ushort[])field.GetValue(fieldInstance)); + break; + case FieldType.StringArray: + string[] strings = (string[])field.GetValue(fieldInstance); + writer.WriteUShort((ushort)strings.Length); + for (int j = 0; j < strings.Length; j++) + writer.WriteString(strings[j]); + break; + case FieldType.Vector3Array: + Vector3[] vector3s = (Vector3[])field.GetValue(fieldInstance); + writer.WriteUShort((ushort)vector3s.Length); + for (int j = 0; j < vector3s.Length; j++) + { + writer.WriteFloat(vector3s[j].x); + writer.WriteFloat(vector3s[j].y); + writer.WriteFloat(vector3s[j].z); + } + break; + case FieldType.Vector2Array: + Vector2[] vector2s = (Vector2[])field.GetValue(fieldInstance); + writer.WriteUShort((ushort)vector2s.Length); + for (int j = 0; j < vector2s.Length; j++) + { + writer.WriteFloat(vector2s[j].x); + writer.WriteFloat(vector2s[j].y); + } + break; + case FieldType.QuaternionArray: + Quaternion[] quaternions = (Quaternion[])field.GetValue(fieldInstance); + writer.WriteUShort((ushort)quaternions.Length); + for (int j = 0; j < quaternions.Length; j++) + { + writer.WriteFloat(quaternions[j].eulerAngles.x); + writer.WriteFloat(quaternions[j].eulerAngles.y); + writer.WriteFloat(quaternions[j].eulerAngles.z); + } + break; + } + } + internal static FieldType GetFieldType(Type type) { if (type == typeof(bool)) diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index e9fc905..2cb942e 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -279,134 +279,7 @@ namespace MLAPI.MonoBehaviours.Core if (syncedVarFields[i].Target && clientId != ownerClientId) continue; writer.WriteByte(i); //FieldIndex - switch (syncedVarFields[i].FieldType) - { - case FieldType.Bool: - writer.WriteBool((bool)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Byte: - writer.WriteByte((byte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Double: - writer.WriteDouble((double)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Single: - writer.WriteFloat((float)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Int: - writer.WriteInt((int)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Long: - writer.WriteLong((long)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByte: - writer.WriteSByte((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Short: - writer.WriteShort((short)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UInt: - writer.WriteUInt((uint)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULong: - writer.WriteULong((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShort: - writer.WriteUShort((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.String: - writer.WriteString((string)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Vector3: - Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteFloat(vector3.x); - writer.WriteFloat(vector3.y); - writer.WriteFloat(vector3.z); - break; - case FieldType.Vector2: - Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteFloat(vector2.x); - writer.WriteFloat(vector2.y); - break; - case FieldType.Quaternion: - Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; - writer.WriteFloat(euler.x); - writer.WriteFloat(euler.y); - writer.WriteFloat(euler.z); - break; - case FieldType.BoolArray: - bool[] bools = (bool[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)bools.Length); - for (int j = 0; j < bools.Length; j++) - writer.WriteBool(bools[j]); - break; - case FieldType.ByteArray: - writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.DoubleArray: - writer.WriteDoubleArray((double[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SingleArray: - writer.WriteFloatArray((float[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.IntArray: - writer.WriteIntArray((int[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.LongArray: - writer.WriteLongArray((long[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByteArray: - writer.WriteSByteArray((sbyte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ShortArray: - writer.WriteShortArray((short[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UIntArray: - writer.WriteUIntArray((uint[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULongArray: - writer.WriteULongArray((ulong[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShortArray: - writer.WriteUShortArray((ushort[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.StringArray: - string[] strings = (string[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)strings.Length); - for (int j = 0; j < strings.Length; j++) - writer.WriteString(strings[j]); - break; - case FieldType.Vector3Array: - Vector3[] vector3s = (Vector3[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)vector3s.Length); - for (int j = 0; j < vector3s.Length; j++) - { - writer.WriteFloat(vector3s[j].x); - writer.WriteFloat(vector3s[j].y); - writer.WriteFloat(vector3s[j].z); - } - break; - case FieldType.Vector2Array: - Vector2[] vector2s = (Vector2[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)vector2s.Length); - for (int j = 0; j < vector2s.Length; j++) - { - writer.WriteFloat(vector2s[j].x); - writer.WriteFloat(vector2s[j].y); - } - break; - case FieldType.QuaternionArray: - Quaternion[] quaternions = (Quaternion[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)quaternions.Length); - for (int j = 0; j < quaternions.Length; j++) - { - writer.WriteFloat(quaternions[j].eulerAngles.x); - writer.WriteFloat(quaternions[j].eulerAngles.y); - writer.WriteFloat(quaternions[j].eulerAngles.z); - } - break; - - } + FieldTypeHelper.WriteFieldType(writer, syncedVarFields[i].FieldInfo, this, syncedVarFields[i].FieldType); } InternalMessageHandler.Send(clientId, "MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", writer.Finalize()); } @@ -453,133 +326,7 @@ namespace MLAPI.MonoBehaviours.Core if (syncedVarFields[i].Dirty == true) { writer.WriteByte(i); //FieldIndex - switch (syncedVarFields[i].FieldType) - { - case FieldType.Bool: - writer.WriteBool((bool)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Byte: - writer.WriteByte((byte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Double: - writer.WriteDouble((double)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Single: - writer.WriteFloat((float)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Int: - writer.WriteInt((int)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Long: - writer.WriteLong((long)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByte: - writer.WriteSByte((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Short: - writer.WriteShort((short)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UInt: - writer.WriteUInt((uint)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULong: - writer.WriteULong((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShort: - writer.WriteUShort((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.String: - writer.WriteString((string)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Vector3: - Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteFloat(vector3.x); - writer.WriteFloat(vector3.y); - writer.WriteFloat(vector3.z); - break; - case FieldType.Vector2: - Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteFloat(vector2.x); - writer.WriteFloat(vector2.y); - break; - case FieldType.Quaternion: - Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; - writer.WriteFloat(euler.x); - writer.WriteFloat(euler.y); - writer.WriteFloat(euler.z); - break; - case FieldType.BoolArray: - bool[] bools = (bool[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)bools.Length); - for (int j = 0; j < bools.Length; j++) - writer.WriteBool(bools[j]); - break; - case FieldType.ByteArray: - writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.DoubleArray: - writer.WriteDoubleArray((double[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SingleArray: - writer.WriteFloatArray((float[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.IntArray: - writer.WriteIntArray((int[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.LongArray: - writer.WriteLongArray((long[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByteArray: - writer.WriteSByteArray((sbyte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ShortArray: - writer.WriteShortArray((short[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UIntArray: - writer.WriteUIntArray((uint[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULongArray: - writer.WriteULongArray((ulong[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShortArray: - writer.WriteUShortArray((ushort[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.StringArray: - string[] strings = (string[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)strings.Length); - for (int j = 0; j < strings.Length; j++) - writer.WriteString(strings[j]); - break; - case FieldType.Vector3Array: - Vector3[] vector3s = (Vector3[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)vector3s.Length); - for (int j = 0; j < vector3s.Length; j++) - { - writer.WriteFloat(vector3s[j].x); - writer.WriteFloat(vector3s[j].y); - writer.WriteFloat(vector3s[j].z); - } - break; - case FieldType.Vector2Array: - Vector2[] vector2s = (Vector2[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)vector2s.Length); - for (int j = 0; j < vector2s.Length; j++) - { - writer.WriteFloat(vector2s[j].x); - writer.WriteFloat(vector2s[j].y); - } - break; - case FieldType.QuaternionArray: - Quaternion[] quaternions = (Quaternion[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)quaternions.Length); - for (int j = 0; j < quaternions.Length; j++) - { - writer.WriteFloat(quaternions[j].eulerAngles.x); - writer.WriteFloat(quaternions[j].eulerAngles.y); - writer.WriteFloat(quaternions[j].eulerAngles.z); - } - break; - } + FieldTypeHelper.WriteFieldType(writer, syncedVarFields[i].FieldInfo, this, syncedVarFields[i].FieldType); syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); syncedVarFields[i].Dirty = false; } @@ -604,134 +351,7 @@ namespace MLAPI.MonoBehaviours.Core if (syncedVarFields[i].Dirty == true) { writer.WriteByte(i); //FieldIndex - switch (syncedVarFields[i].FieldType) - { - case FieldType.Bool: - writer.WriteBool((bool)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Byte: - writer.WriteByte((byte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Double: - writer.WriteDouble((double)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Single: - writer.WriteFloat((float)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Int: - writer.WriteInt((int)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Long: - writer.WriteLong((long)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByte: - writer.WriteSByte((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Short: - writer.WriteShort((short)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UInt: - writer.WriteUInt((uint)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULong: - writer.WriteULong((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShort: - writer.WriteUShort((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.String: - writer.WriteString((string)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Vector3: - Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteFloat(vector3.x); - writer.WriteFloat(vector3.y); - writer.WriteFloat(vector3.z); - break; - case FieldType.Vector2: - Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteFloat(vector2.x); - writer.WriteFloat(vector2.y); - break; - case FieldType.Quaternion: - Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; - writer.WriteFloat(euler.x); - writer.WriteFloat(euler.y); - writer.WriteFloat(euler.z); - break; - case FieldType.BoolArray: - bool[] bools = (bool[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)bools.Length); - for (int j = 0; j < bools.Length; j++) - writer.WriteBool(bools[j]); - break; - case FieldType.ByteArray: - writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.DoubleArray: - writer.WriteDoubleArray((double[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SingleArray: - writer.WriteFloatArray((float[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.IntArray: - writer.WriteIntArray((int[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.LongArray: - writer.WriteLongArray((long[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByteArray: - writer.WriteSByteArray((sbyte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ShortArray: - writer.WriteShortArray((short[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UIntArray: - writer.WriteUIntArray((uint[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULongArray: - writer.WriteULongArray((ulong[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShortArray: - writer.WriteUShortArray((ushort[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.StringArray: - string[] strings = (string[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)strings.Length); - for (int j = 0; j < strings.Length; j++) - writer.WriteString(strings[j]); - break; - case FieldType.Vector3Array: - Vector3[] vector3s = (Vector3[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)vector3s.Length); - for (int j = 0; j < vector3s.Length; j++) - { - writer.WriteFloat(vector3s[j].x); - writer.WriteFloat(vector3s[j].y); - writer.WriteFloat(vector3s[j].z); - } - break; - case FieldType.Vector2Array: - Vector2[] vector2s = (Vector2[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)vector2s.Length); - for (int j = 0; j < vector2s.Length; j++) - { - writer.WriteFloat(vector2s[j].x); - writer.WriteFloat(vector2s[j].y); - } - break; - case FieldType.QuaternionArray: - Quaternion[] quaternions = (Quaternion[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)quaternions.Length); - for (int j = 0; j < quaternions.Length; j++) - { - writer.WriteFloat(quaternions[j].eulerAngles.x); - writer.WriteFloat(quaternions[j].eulerAngles.y); - writer.WriteFloat(quaternions[j].eulerAngles.z); - } - break; - } - + FieldTypeHelper.WriteFieldType(writer, syncedVarFields[i].FieldInfo, this, syncedVarFields[i].FieldType); if (nonTargetDirtyCount == 0) { //Only targeted SyncedVars were changed. Thus we need to set them as non dirty here since it wont be done by the next loop. @@ -750,149 +370,21 @@ namespace MLAPI.MonoBehaviours.Core //It's sync time. This is the NON target receivers packet. using (BitWriter writer = new BitWriter()) { - //Write all indexes - writer.WriteByte(nonTargetDirtyCount); - writer.WriteUInt(networkId); //NetId - writer.WriteUShort(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex - for (byte i = 0; i < syncedVarFields.Count; i++) + //Write all indexes + writer.WriteByte(nonTargetDirtyCount); + writer.WriteUInt(networkId); //NetId + writer.WriteUShort(networkedObject.GetOrderIndex(this)); //Behaviour OrderIndex + for (byte i = 0; i < syncedVarFields.Count; i++) + { + //Writes all the indexes of the dirty syncvars. + if (syncedVarFields[i].Dirty == true && !syncedVarFields[i].Target) { - //Writes all the indexes of the dirty syncvars. - if (syncedVarFields[i].Dirty == true && !syncedVarFields[i].Target) - { - writer.WriteByte(i); //FieldIndex - switch (syncedVarFields[i].FieldType) - { - case FieldType.Bool: - writer.WriteBool((bool)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Byte: - writer.WriteByte((byte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Double: - writer.WriteDouble((double)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Single: - writer.WriteFloat((float)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Int: - writer.WriteInt((int)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Long: - writer.WriteLong((long)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByte: - writer.WriteSByte((sbyte)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Short: - writer.WriteShort((short)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UInt: - writer.WriteUInt((uint)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULong: - writer.WriteULong((ulong)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShort: - writer.WriteUShort((ushort)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.String: - writer.WriteString((string)syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.Vector3: - Vector3 vector3 = (Vector3)syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteFloat(vector3.x); - writer.WriteFloat(vector3.y); - writer.WriteFloat(vector3.z); - break; - case FieldType.Vector2: - Vector2 vector2 = (Vector2)syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteFloat(vector2.x); - writer.WriteFloat(vector2.y); - break; - case FieldType.Quaternion: - Vector3 euler = ((Quaternion)syncedVarFields[i].FieldInfo.GetValue(this)).eulerAngles; - writer.WriteFloat(euler.x); - writer.WriteFloat(euler.y); - writer.WriteFloat(euler.z); - break; - case FieldType.BoolArray: - bool[] bools = (bool[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)bools.Length); - for (int j = 0; j < bools.Length; j++) - writer.WriteBool(bools[j]); - break; - case FieldType.ByteArray: - writer.WriteByteArray((byte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.DoubleArray: - writer.WriteDoubleArray((double[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SingleArray: - writer.WriteFloatArray((float[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.IntArray: - writer.WriteIntArray((int[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.LongArray: - writer.WriteLongArray((long[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.SByteArray: - writer.WriteSByteArray((sbyte[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ShortArray: - writer.WriteShortArray((short[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UIntArray: - writer.WriteUIntArray((uint[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.ULongArray: - writer.WriteULongArray((ulong[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.UShortArray: - writer.WriteUShortArray((ushort[])syncedVarFields[i].FieldInfo.GetValue(this)); - break; - case FieldType.StringArray: - string[] strings = (string[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)strings.Length); - for (int j = 0; j < strings.Length; j++) - writer.WriteString(strings[j]); - break; - case FieldType.Vector3Array: - Vector3[] vector3s = (Vector3[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)vector3s.Length); - for (int j = 0; j < vector3s.Length; j++) - { - writer.WriteFloat(vector3s[j].x); - writer.WriteFloat(vector3s[j].y); - writer.WriteFloat(vector3s[j].z); - } - break; - case FieldType.Vector2Array: - Vector2[] vector2s = (Vector2[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)vector2s.Length); - for (int j = 0; j < vector2s.Length; j++) - { - writer.WriteFloat(vector2s[j].x); - writer.WriteFloat(vector2s[j].y); - } - break; - case FieldType.QuaternionArray: - Quaternion[] quaternions = (Quaternion[])syncedVarFields[i].FieldInfo.GetValue(this); - writer.WriteUShort((ushort)quaternions.Length); - for (int j = 0; j < quaternions.Length; j++) - { - writer.WriteFloat(quaternions[j].eulerAngles.x); - writer.WriteFloat(quaternions[j].eulerAngles.y); - writer.WriteFloat(quaternions[j].eulerAngles.z); - } - break; - - } - syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); - syncedVarFields[i].Dirty = false; - } + writer.WriteByte(i); //FieldIndex + FieldTypeHelper.WriteFieldType(writer, syncedVarFields[i].FieldInfo, this, syncedVarFields[i].FieldType); + syncedVarFields[i].FieldValue = syncedVarFields[i].FieldInfo.GetValue(this); + syncedVarFields[i].Dirty = false; } - + } InternalMessageHandler.Send("MLAPI_SYNC_VAR_UPDATE", "MLAPI_INTERNAL", writer.Finalize(), ownerClientId); // Send to everyone except target. } } From 3f29b7d8ef8e6cf1ef1033baad08f00d841c2989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Thu, 19 Apr 2018 19:15:11 +0200 Subject: [PATCH 41/47] Updated API reference to v1.0.2 --- docs/WebKI.xml | 6 +- docs/WebTOC.xml | 174 +++++++++--------- docs/fti/FTI_100.json | 2 +- docs/fti/FTI_101.json | 2 +- docs/fti/FTI_102.json | 2 +- docs/fti/FTI_103.json | 2 +- docs/fti/FTI_104.json | 2 +- docs/fti/FTI_105.json | 2 +- docs/fti/FTI_107.json | 2 +- docs/fti/FTI_108.json | 2 +- docs/fti/FTI_109.json | 2 +- docs/fti/FTI_110.json | 2 +- docs/fti/FTI_111.json | 2 +- docs/fti/FTI_112.json | 2 +- docs/fti/FTI_113.json | 2 +- docs/fti/FTI_114.json | 2 +- docs/fti/FTI_115.json | 2 +- docs/fti/FTI_116.json | 2 +- docs/fti/FTI_117.json | 2 +- docs/fti/FTI_118.json | 2 +- docs/fti/FTI_119.json | 2 +- docs/fti/FTI_120.json | 2 +- docs/fti/FTI_97.json | 2 +- docs/fti/FTI_98.json | 2 +- docs/fti/FTI_99.json | 2 +- docs/fti/FTI_Files.json | 2 +- .../F_MLAPI_Attributes_SyncedVar_hook.htm | 21 --- ...PI_Attributes_SyncedVar_hookMethodName.htm | 21 +++ .../F_MLAPI_Attributes_SyncedVar_target.htm | 2 +- .../Fields_T_MLAPI_Attributes_SyncedVar.htm | 4 +- docs/html/M_MLAPI_Data_NetId_Equals.htm | 2 +- docs/html/M_MLAPI_Data_NetId_GetClientId.htm | 2 +- docs/html/M_MLAPI_Data_NetId_GetHashCode.htm | 2 +- docs/html/M_MLAPI_Data_NetId_IsHost.htm | 2 +- docs/html/M_MLAPI_Data_NetId_IsInvalid.htm | 2 +- docs/html/M_MLAPI_Data_NetId__ctor.htm | 2 +- docs/html/M_MLAPI_Data_NetId__ctor_1.htm | 2 +- docs/html/M_MLAPI_Data_NetId_op_Equality.htm | 2 +- .../html/M_MLAPI_Data_NetId_op_Inequality.htm | 2 +- ..._NetworkedBehaviour_GetNetworkedObject.htm | 2 +- ...s_Core_NetworkedBehaviour_SendToClient.htm | 2 +- ..._NetworkedBehaviour_SendToClientTarget.htm | 2 +- ...tworkedBehaviour_SendToClientTarget__1.htm | 2 +- ...ore_NetworkedBehaviour_SendToClient__1.htm | 2 +- ..._Core_NetworkedBehaviour_SendToClients.htm | 2 +- ...NetworkedBehaviour_SendToClientsTarget.htm | 2 +- ...tworkedBehaviour_SendToClientsTarget_1.htm | 2 +- ...tworkedBehaviour_SendToClientsTarget_2.htm | 2 +- ...workedBehaviour_SendToClientsTarget__1.htm | 2 +- ...rkedBehaviour_SendToClientsTarget__1_1.htm | 2 +- ...rkedBehaviour_SendToClientsTarget__1_2.htm | 2 +- ...ore_NetworkedBehaviour_SendToClients_1.htm | 2 +- ...ore_NetworkedBehaviour_SendToClients_2.htm | 2 +- ...re_NetworkedBehaviour_SendToClients__1.htm | 2 +- ..._NetworkedBehaviour_SendToClients__1_1.htm | 2 +- ..._NetworkedBehaviour_SendToClients__1_2.htm | 2 +- ...e_NetworkedBehaviour_SendToLocalClient.htm | 2 +- ...orkedBehaviour_SendToLocalClientTarget.htm | 2 +- ...edBehaviour_SendToLocalClientTarget__1.htm | 2 +- ...etworkedBehaviour_SendToLocalClient__1.htm | 2 +- ...tworkedBehaviour_SendToNonLocalClients.htm | 2 +- ...dBehaviour_SendToNonLocalClientsTarget.htm | 2 +- ...haviour_SendToNonLocalClientsTarget__1.htm | 2 +- ...rkedBehaviour_SendToNonLocalClients__1.htm | 2 +- ...s_Core_NetworkedBehaviour_SendToServer.htm | 2 +- ..._NetworkedBehaviour_SendToServerTarget.htm | 2 +- ...tworkedBehaviour_SendToServerTarget__1.htm | 2 +- ...ore_NetworkedBehaviour_SendToServer__1.htm | 2 +- docs/html/P_MLAPI_Data_NetId_ServerNetId.htm | 2 +- docs/html/T_MLAPI_Attributes_SyncedVar.htm | 2 +- .../Fields_T_MLAPI_Attributes_SyncedVar.xml | 2 +- 71 files changed, 179 insertions(+), 179 deletions(-) delete mode 100644 docs/html/F_MLAPI_Attributes_SyncedVar_hook.htm create mode 100644 docs/html/F_MLAPI_Attributes_SyncedVar_hookMethodName.htm diff --git a/docs/WebKI.xml b/docs/WebKI.xml index 951fbb6..379ca96 100644 --- a/docs/WebKI.xml +++ b/docs/WebKI.xml @@ -153,7 +153,7 @@ - + @@ -443,8 +443,8 @@ - + @@ -597,7 +597,7 @@ - + diff --git a/docs/WebTOC.xml b/docs/WebTOC.xml index 41b8588..9f62108 100644 --- a/docs/WebTOC.xml +++ b/docs/WebTOC.xml @@ -1,72 +1,72 @@  - - + + - + - - + + - - + + - + - + - + - - + + - + - + - + - + - + - + - + @@ -95,38 +95,38 @@ - + - + - + - + - + - + - - + + - + @@ -136,18 +136,18 @@ - + - + - + @@ -155,7 +155,7 @@ - + @@ -163,42 +163,42 @@ - + - + - + - + - + - + - + - + - + - + @@ -208,19 +208,19 @@ - + - + - + - + @@ -230,7 +230,7 @@ - + @@ -239,7 +239,7 @@ - + @@ -250,32 +250,32 @@ - + - + - - + + - + - + - + - + @@ -286,13 +286,13 @@ - + - + - + @@ -300,13 +300,13 @@ - + - + - + @@ -319,25 +319,25 @@ - - - - + + + + - - + + - + - + @@ -363,11 +363,11 @@ - + - + - + @@ -397,8 +397,8 @@ - - + + @@ -408,35 +408,35 @@ - - - + + + - - + + - - + + - - + + - - - + + + diff --git a/docs/fti/FTI_100.json b/docs/fti/FTI_100.json index 575612a..cd23df3 100644 --- a/docs/fti/FTI_100.json +++ b/docs/fti/FTI_100.json @@ -1 +1 @@ -{"dictionary":[18939907,20840449,22675457],"duplicate":[20971521],"determines":[5767169,7864321,8257537,8585217,16973826,19660803],"decide":[720897,2031617,20643841],"data":[131073,196609,262145,458753,589826,655361,720898,983042,1114114,1179650,1245186,1310722,1441794,1507330,1572866,1703938,1769474,1835010,1900546,1966082,2031619,2097154,2162691,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3735554,3801090,3932162,3997698,4128770,5636097,5767169,5963777,6094849,6160385,6225921,6291457,6750210,7143426,7208962,7340035,7405570,7471108,7667714,7798786,7864322,7929858,7995396,8060930,8126466,8257540,8388611,8454146,8519683,8585220,8781826,8912899,9043970,9175043,9371651,9437187,9633795,9699331,9830403,10027011,11206659,11468803,12320771,12451843,15663106,16515073,16973825,17170433,17432577,17694722,17956866,18350084,19005443,19070978,19660803,19988481,20643844,21233667,21626883,22020099,22151170],"default":[1],"destroypoolobject":[6553601,18743298,22740993],"disconnects":[1376257,6881281,22675457],"degrees":[1638401,5570561,23330817],"driftcorrectionpercentage":[851969,5046274,23265281],"defined":[8388610,8519682,8912898,9109506,9175042,9306114,9371650,9437186,9502722,9633794,9699330,9830402,9895938,9961474,10027010,10158082,10289154,10551298,10616834,10682370,11206658,11468802,12320770,12451842,13107202,13172738,13565954,13697026],"documentation":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194306,4259842,4325377,4390913,4456449,4521986,4587521,4653058,4718593,4784129,4849665,4915202,4980737,5046273,5111809,5177345,5242882,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471107,7536641,7667713,7733249,7798785,7864321,7929857,7995395,8060929,8126465,8192001,8257537,8323075,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878979,10944514,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927555,11993089,12058625,12124163,12189699,12255233,12320769,12386305,12451841,12517380,12582916,12648452,12713988,12779523,12845059,12910596,12976131,13041667,13107201,13172737,13238273,13303810,13369348,13434884,13500420,13565953,13631491,13697025,13762564,13828099,13893635,13959169,14024707,14090242,14155780,14221316,14286851,14352388,14417924,14483457,14548994,14614531,14680067,14745604,14811139,14876675,14942209,15007745,15073283,15138817,15204355,15269891,15335428,15400963,15466500,15532033,15597571,15663105,15728644,15794179,15859716,15925252,15990785,16056323,16121857,16187395,16252929,16318465,16384001,16449537,16515074,16580609,16646145,16711684,16777217,16842756,16908289,16973825,17039363,17104897,17170433,17235971,17301506,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825796,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808834,18874370,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119554,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430274,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151170,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396354,23461889],"destroypool":[6553601,18415618,22740993],"decrypt":[6684673,16449538,23003137],"double":[13041666,13434882,15204356,15728645],"destination":[851969,5177345,23265281],"deregister":[8192002,9240577],"different":[720897,2949121,20643841],"delay":[393217,786433,851970,1638401,3670017,4784129,23134209,23199745,23265282,23330817],"distance":[1638402,6356993,7536641,23330818],"deregistermessagehandler":[8192002,8847361,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"description":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851969,1376257,1638401,5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6553601,6619137,6684673,6750209,7077889,7274497,7733249,8847361,9568257,9764865,10223617,10747905,14942209,15138817,15532033,15990785,16252929,16384001,16580609,16777217,16973825,17170433,17498113,17563649,17629185,17694722,17891329,18022401,18087937,18350083,18481153,19005443,19070977,19267585,19464193,19595265,19660805,19726337,19988481,20054017,20381697,20447233,20643843,20774913,20840449,21037057,21233667,21299201,21364737,21430274,21561345,21626883,21692417,21757956,21889025,22020099,22151170,22216705,22347777,22478849,22544386,22675460,22740993,22806531,22872065,22937604,23003137,23068675,23134212,23199748,23265284,23330820,23396353,23461889],"dispose":[6750209,15007747,22151169],"decrypts":[6684673,16449537,23003137],"duplicates":[7077889,20971521,22347777],"deserialize":[13959171,15532033,23461889],"destroy":[6553601,18743298,22740993],"dll":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"destroys":[6553602,18415617,18743297,22740994],"deregisters":[8192001,8847361,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"dontdestroyonload":[1376257,4063233,22675457],"deserializes":[13959169,15532033,23461889],"dontdestroy":[1376257,4063234,22675457],"diffie":[720897,3801089,20643841],"decrypted":[16449537]} \ No newline at end of file +{"dictionary":[18219009,20119555,22740993],"duplicate":[17694721],"determines":[5767169,7471105,7602177,7667713,16580610,21037059],"decide":[262145,2097153,19595265],"data":[131073,196610,262146,458753,524289,589825,786433,983042,1114114,1179650,1310722,1441794,1507331,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097155,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3997698,4390914,5111809,5308417,5767169,5898241,6094849,6291457,6553601,6750210,7274498,7340034,7405570,7471108,7536644,7602178,7667716,7929860,7995394,8126466,8192002,8257538,8323074,8388610,8650755,8847363,9043971,9109507,9175042,9240578,9306115,9371651,9437187,9568259,9699331,10027011,10747907,10878979,11010051,11337731,11665411,13172738,13762561,16580609,16908289,17629185,18087937,19005442,19398658,19595268,19660803,19791874,19857412,19922947,20447235,20578307,21037059,23265282],"default":[1],"destroypoolobject":[6488065,15663106,23461889],"disconnects":[393217,5046273,22740993],"degrees":[1245185,4980737,23003137],"driftcorrectionpercentage":[917505,4653058,22937601],"defined":[8650754,8847362,8978434,9109506,9306114,9371650,9437186,9568258,9699330,9764866,9895938,10027010,10092546,10158082,10289154,10616834,10747906,10878978,11010050,11337730,11403266,11665410,11862018,11993090,12124162,12451842,12582914,12976130],"documentation":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259842,4325377,4390913,4456450,4521985,4587521,4653057,4718594,4784130,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439490,5505025,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422530,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536643,7602177,7667713,7733249,7798785,7864321,7929859,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781827,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944515,11010049,11075587,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730947,11796481,11862017,11927554,11993089,12058625,12124161,12189697,12255234,12320769,12386305,12451841,12517379,12582913,12648451,12713988,12779521,12845060,12910596,12976129,13041668,13107204,13172737,13238275,13303811,13369345,13434883,13500419,13565956,13631492,13697028,13762562,13828099,13893633,13959171,14024705,14090243,14155779,14221314,14286849,14352388,14417924,14483460,14548996,14614531,14680068,14745603,14811138,14876675,14942211,15007747,15073282,15138819,15204355,15269892,15335425,15400964,15466499,15532033,15597571,15663105,15728641,15794178,15859716,15925250,15990788,16056321,16121857,16187395,16252929,16318467,16384001,16449537,16515073,16580609,16646145,16711682,16777220,16842756,16908289,16973828,17039361,17170435,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415620,18481153,18546689,18612225,18677761,18743297,18808835,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988484,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774915,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068674,23134209,23199746,23265282,23330817,23396353,23461889],"destroypool":[6488065,15532034,23461889],"decrypt":[7208961,17563650,20905985],"double":[13238274,13565954,14942212,15269893],"destination":[917505,7012353,22937601],"deregister":[8519682,8912897],"different":[262145,3014657,19595265],"delay":[655361,851969,917506,1245185,4915201,6356993,22609921,22872065,22937602,23003137],"distance":[1245186,5505025,5701633,23003138],"deregistermessagehandler":[8519682,11141121,11599873,15728641,17825793,22609921,22872065,22937601,23003137],"description":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,1245185,5111809,5308417,5767169,5832705,5898241,6029313,6094849,6160385,6291457,6488065,6553601,6684673,6750209,7077889,7143425,7208961,7798785,7864321,8716289,11141121,11599873,15728641,16056321,16121857,16252929,16384001,16515073,16580609,16646145,16908289,17039361,17235969,17367041,17432577,17498113,17629185,17760257,17825793,17891329,17956865,18022401,18153473,18219009,18284545,18350081,18481153,18612225,18677761,18874369,18939905,19136515,19202049,19333121,19398658,19464193,19529732,19595267,19660803,19791873,19857411,19922947,20447235,20512769,20578307,20643841,20905985,21037061,21823489,22151169,22282241,22609924,22675460,22740996,22806531,22872068,22937604,23003140,23068673,23134209,23199746,23265282,23330817,23396354,23461889],"dispose":[6750209,15335427,23265281],"decrypts":[7208961,17563649,20905985],"duplicates":[7077889,17694721,23330817],"deserialize":[13893635,18874369,23134209],"destroy":[6488065,15663106,23461889],"dll":[983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,6946817,7012353,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17301505,17563649,17694721,18087937,18415617,18546689,18743297,18808833,19005441,19070977,19136513,19267585,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"destroys":[6488066,15532033,15663105,23461890],"deregisters":[8519681,11141121,11599873,15728641,17825793,22609921,22872065,22937601,23003137],"dontdestroyonload":[393217,3407873,22740993],"deserializes":[13893633,18874369,23134209],"dontdestroy":[393217,3407874,22740993],"diffie":[262145,3670017,19595265],"decrypted":[17563649]} \ No newline at end of file diff --git a/docs/fti/FTI_101.json b/docs/fti/FTI_101.json index 53ddcab..4d42504 100644 --- a/docs/fti/FTI_101.json +++ b/docs/fti/FTI_101.json @@ -1 +1 @@ -{"exposes":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851969,1376257,1638401,5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6553601,6619137,6684673,6750209,7077889,7733249,8847361,9568257,9764865,10223617,10747905,14942209,15532033,16973825,17498113,18350081,19005441,19595265,19660801,19726337,19988481,20381697,20447233,20643841,20840449,21037057,21233665,21299201,21430273,21561345,21626881,21692417,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23461889],"entered":[19398657],"estimated":[7274497,17104897,19267585,22544385],"encryptedbuffer":[16449538],"exchange":[720899,2621441,3080193,3801089,20643843],"examples":[720897,1966081,20643841],"encrypted":[131074,1245187,6684673,17367043,18350082,23003137],"events":[720897,1966081,20643841],"expected":[20971521,21954561],"enabled":[786433,851969,1638401,5373953,5439489,6488065,20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199746,23265282,23330818],"executing":[18284545,19136513,20381699,20709377,21299203,21561347,21692419,23134211,23199747,23265283,23330819],"equals":[5636097,5701633,5767170,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6750209,7733249,7864322,8847361,9568257,9764865,10223617,10747905,14942209,18350081,19005441,19660802,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"equal":[5767169,7864322,8257538,8585218,16973826,19660803],"error":[7602178],"enableproximity":[786433,851969,1638401,5373954,5439490,6488066,23199745,23265281,23330817],"enable":[720899,1638401,2097153,2686977,3801089,4980737,20643843,23330817],"equality":[8257537,16973825,19660801],"enablesceneswitching":[720897,2097154,20643841],"enabletimeresync":[720897,2752514,20643841],"emptied":[720897,2555905,20643841],"example":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"encrypts":[6684673,17367041,23003137],"eventtickrate":[720897,1966082,20643841],"expectedchunkscount":[20971522,21954562],"editor":[1376257,4456449,22675457],"encryption":[655361,720897,2686977,3342337,16777217,20643841,21233665,23003137],"enableencryption":[720897,2686978,20643841],"encoded":[6684674,16449537,17367042,23003138],"encrypt":[6684673,17367042,23003137]} \ No newline at end of file +{"exposes":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,1245185,5111809,5308417,5767169,5832705,5898241,6029313,6094849,6160385,6291457,6488065,6553601,6684673,6750209,7077889,7208961,7798785,7864321,8716289,11141121,11599873,15728641,16580609,17235969,17432577,17629185,17760257,17825793,17956865,18153473,18219009,18284545,18481153,18612225,18677761,18874369,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20512769,20578305,20905985,21037057,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23461889],"entered":[17104897],"estimated":[7143425,17039361,21626881,23396353],"encryptedbuffer":[17563650],"exchange":[262147,2490369,3276801,3670017,19595267],"examples":[262145,2555905,19595265],"encrypted":[131074,983043,7208961,19070979,19857410,20905985],"events":[262145,2555905,19595265],"expected":[17694721,19726337],"enabled":[851969,917505,1245185,4587521,5177345,5242881,17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872066,22937602,23003138],"executing":[17760259,18284547,18481155,18612227,21102593,21233665,21757953,22609923,22872067,22937603,23003139],"equals":[5111809,5308417,5767170,5832705,5898241,6029313,6094849,6160385,6291457,6553601,6750209,7602178,7798785,7864321,8716289,11141121,11599873,15728641,17825793,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20578305,21037058,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23199745,23265281],"equal":[5767169,7471106,7602178,7667714,16580610,21037059],"error":[5570562],"enableproximity":[851969,917505,1245185,4587522,5177346,5242882,22872065,22937601,23003137],"enable":[262147,1245185,1835009,1900545,3670017,5636097,19595267,23003137],"equality":[7471105,16580609,21037057],"enablesceneswitching":[262145,1900546,19595265],"enabletimeresync":[262145,2293762,19595265],"emptied":[262145,2424833,19595265],"example":[983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,6946817,7012353,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17301505,17563649,17694721,18087937,18415617,18546689,18743297,18808833,19005441,19070977,19136513,19267585,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"encrypts":[7208961,19070977,20905985],"eventtickrate":[262145,2555906,19595265],"expectedchunkscount":[17694722,19726338],"editor":[393217,4325377,22740993],"encryption":[262145,524289,1835009,3080193,16515073,19595265,19922945,20905985],"enableencryption":[262145,1835010,19595265],"encoded":[7208962,17563649,19070978,20905986],"encrypt":[7208961,19070978,20905985]} \ No newline at end of file diff --git a/docs/fti/FTI_102.json b/docs/fti/FTI_102.json index f51d933..24a0455 100644 --- a/docs/fti/FTI_102.json +++ b/docs/fti/FTI_102.json @@ -1 +1 @@ -{"false":[7864321,7929857,8060929,8257537,8585217,14155777,14221313,14745601,15335425,15466497,15728641,15925249,16711681,16842753,17825793],"following":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1376257,1638401,5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6553601,6619137,6684673,6750209,7077889,7733249,8847361,9568257,9764865,10223617,10747905,14942209,15532033,16973825,17498113,18350081,19005441,19595265,19660801,19726337,19988481,20381697,20447233,20643841,20840449,21037057,21233665,21299201,21430273,21561345,21626881,21692417,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23461889],"frame":[720897,1966081,20643841],"function":[5767169,7340033,19660801],"flooding":[720897,2818049,20643841],"follow":[1],"fields":[131074,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,1376258,1638402,18350081,19005441,19660801,20643841,21233665,21626881,21757953,22020097,22675457,22937601,23134209,23199745,23265281,23330817],"field":[917506,983042,1048578,1114114,1179650,1245186,1310722,1441794,1507330,1572866,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5832706,6029314,6356994,6488066,6881282,7012354,7536642],"first":[6684674,8257537,8585217,16449537,17367041,23003138],"finalize":[5636097,5701633,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6750210,7733249,8847361,9764865,10223617,10747905,14942209,15663107,16515076,18350081,19005441,19070979,20643841,21233665,21430273,21626881,22020097,22151170,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"float":[3014657,3670017,4390913,4587521,4784129,5046273,5570561,6029313,6356993,7012353,7536641,13828097,14417921,16187393,16646145,16842753,21495809,22085633]} \ No newline at end of file +{"false":[7471105,7602177,7667713,9175041,9240577,14548993,14680065,15269889,15400961,15859713,15990785,16842753,16973825,18415617,19988481],"following":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,1245185,5111809,5308417,5767169,5832705,5898241,6029313,6094849,6160385,6291457,6488065,6553601,6684673,6750209,7077889,7208961,7798785,7864321,8716289,11141121,11599873,15728641,16580609,17235969,17432577,17629185,17760257,17825793,17956865,18153473,18219009,18284545,18481153,18612225,18677761,18874369,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20512769,20578305,20905985,21037057,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23461889],"frame":[262145,2555905,19595265],"function":[5767169,9043969,21037057],"flooding":[262145,2686977,19595265],"follow":[1],"fields":[131074,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,1245186,19529729,19595265,19660801,19857409,19922945,20447233,20578305,21037057,22609921,22675457,22740993,22872065,22937601,23003137],"field":[983042,1048578,1114114,1179650,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5177346,5242882,5373954,5439490,5505026,5636098,5701634,5963778,6225922,6356994,6422530,6619138,6815746,6881282,7012354],"first":[7208962,7471105,7667713,17563649,19070977,20905986],"finalize":[5111809,5308417,5832705,5898241,6029313,6094849,6160385,6291457,6553601,6750210,7864321,8716289,11141121,11599873,13172739,13762564,15728641,17825793,19136513,19529729,19595265,19660801,19791875,19857409,19922945,20447233,20578305,22609921,22740993,22806529,22872065,22937601,23003137,23199745,23265282],"float":[2621441,4521985,4653057,4915201,4980737,5373953,5505025,5701633,5963777,6356993,6619137,14090241,14483457,15466497,15859713,20971521,21299201,21364737]} \ No newline at end of file diff --git a/docs/fti/FTI_103.json b/docs/fti/FTI_103.json index 5d7747d..acb91c1 100644 --- a/docs/fti/FTI_103.json +++ b/docs/fti/FTI_103.json @@ -1 +1 @@ -{"getcomponent":[7733251,8847363,9568259,9764867,10223619,10747907,14942211,21757955,22675459,23068675,23134211,23199747,23265283,23330819],"getmessageunordered":[7077889,20119555,22347777],"getmessageordered":[7077889,18808835,22347777],"getcomponentsinparent":[7733253,8847365,9568261,9764869,10223621,10747909,14942213,21757957,22675461,23068677,23134213,23199749,23265285,23330821],"getcomponentinchildren":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820],"gethashcode":[5636097,5701633,5767170,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6750209,7340034,7733249,8847361,9568257,9764865,10223617,10747905,14942209,18350081,19005441,19660802,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"general":[7602177],"getfinalizesize":[6750209,16908290,22151169],"generic":[9109505,9175041,9633793,9895937,16121857,18808834,20119554,20971521,21954561],"getcomponentinparent":[7733250,8847362,9568258,9764866,10223618,10747906,14942210,21757954,22675458,23068674,23134210,23199746,23265282,23330818],"getinstanceid":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"gains":[8716289,8847361,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"getclientid":[5767169,7143426,19660801],"gameobject":[262145,3735554,3932163,9568257,11730945,15990785,18874370,20381697,20447233,20840449,21037057,21299201,21561345,21626881,21692417,21757955,22675457,23068673,23134209,23199745,23265281,23330817],"getparameterautosend":[10223617,11927556,23199745],"getcomponentsinchildren":[7733254,8847366,9568262,9764870,10223622,10747910,14942214,21757958,22675462,23068678,23134214,23199750,23265286,23330822],"guitext":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"given":[6553601,6619137,6684674,6750209,7274498,8192001,8323073,8388609,8847366,9568257,9699329,9764870,10158081,10223622,10354689,10616833,14942214,16449537,16515073,16646145,17104897,17367041,17891330,18874369,19070977,19267586,19529729,20054018,21757953,22151169,22544386,22740993,22872065,23003138,23134214,23199750,23265286,23330822],"getconfig":[5963777,7995396,20643841],"guielement":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"games":[720897,3276801,20643841],"guitexture":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"gettype":[5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6750209,7733249,8847361,9568257,9764865,10223617,10747905,14942209,18350081,19005441,19660801,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"getnetworkedobject":[8323076,8847361,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"getchunkedmessage":[7077889,17432578,22347777],"gets":[1376258,4063233,4849665,5767169,5963777,6684673,6750209,7143425,7995393,8323073,8519681,8650753,8716289,8847370,8978433,9109505,9502721,9633793,9699329,9764873,10158081,10223625,14942217,16908289,17367041,18153473,18219009,18284545,18546689,18612225,18677761,18939905,19136513,19202049,19333121,19464196,19660801,19791873,19857409,19922945,20054018,20185089,20250625,20316161,20381704,20447240,20512769,20578305,20643841,20709377,20840453,20905985,21037058,21102593,21299209,21561352,21692424,21757960,22085633,22151169,22282241,22413313,22675463,23003137,23068674,23134226,23199762,23265297,23330833],"getcomponents":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820]} \ No newline at end of file +{"getcomponent":[7798787,7864323,8716291,11141123,11599875,15728643,17825795,22609923,22675459,22740995,22806531,22872067,22937603,23003139],"getmessageunordered":[7077889,16711683,23330817],"getmessageordered":[7077889,15794179,23330817],"getcomponentsinparent":[7798789,7864325,8716293,11141125,11599877,15728645,17825797,22609925,22675461,22740997,22806533,22872069,22937605,23003141],"getcomponentinchildren":[7798788,7864324,8716292,11141124,11599876,15728644,17825796,22609924,22675460,22740996,22806532,22872068,22937604,23003140],"gethashcode":[5111809,5308417,5767170,5832705,5898241,6029313,6094849,6160385,6291457,6553601,6750209,7798785,7864321,8716289,9043970,11141121,11599873,15728641,17825793,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20578305,21037058,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23199745,23265281],"general":[5570561],"getfinalizesize":[6750209,14024706,23265281],"generic":[9109505,9699329,9764865,11403265,15794178,16711682,17694721,19726337,20840449],"getcomponentinparent":[7798786,7864322,8716290,11141122,11599874,15728642,17825794,22609922,22675458,22740994,22806530,22872066,22937602,23003138],"getinstanceid":[7798785,7864321,8716289,11141121,11599873,15728641,17825793,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"gains":[8454145,11141121,11599873,15728641,17825793,22609921,22872065,22937601,23003137],"getclientid":[5767169,7340034,21037057],"gameobject":[458753,3997699,4390914,7798785,9961473,15925250,16056321,17760257,17956865,18153473,18219009,18284545,18481153,18612225,19660801,22609921,22675459,22740993,22806529,22872065,22937601,23003137],"getparameterautosend":[10944516,15728641,22872065],"getcomponentsinchildren":[7798790,7864326,8716294,11141126,11599878,15728646,17825798,22609926,22675462,22740998,22806534,22872070,22937606,23003142],"guitext":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"given":[6488065,6684673,6750209,7143426,7208962,7798785,8519681,8650753,8781825,9437185,9895937,10158081,10223617,11141126,11599878,13762561,15728646,15925249,16449537,17039362,17498114,17563649,17825798,19070977,19791873,20512769,20905986,21299201,21626881,22151170,22609926,22675457,22872070,22937606,23003142,23265281,23396354,23461889],"getconfig":[5898241,7929860,19595265],"guielement":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"games":[262145,2883585,19595265],"guitexture":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"gettype":[5111809,5308417,5767169,5832705,5898241,6029313,6094849,6160385,6291457,6553601,6750209,7798785,7864321,8716289,11141121,11599873,15728641,17825793,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20578305,21037057,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23199745,23265281],"getnetworkedobject":[8781828,11141121,11599873,15728641,17825793,22609921,22872065,22937601,23003137],"getchunkedmessage":[7077889,18087938,23330817],"gets":[393218,3407873,4128769,5767169,5898241,6750209,7208961,7340033,7929857,8060929,8454145,8585217,8781825,9437185,9699329,9895937,10878977,11141129,11403265,11599882,11993089,14024705,15728649,17760264,17825801,17956866,18153480,18219013,18284552,18481160,18546689,18612233,18743297,19070977,19267585,19595265,20054017,20119553,20185089,20250625,20316161,20381697,20905985,21037057,21102593,21233665,21364737,21430273,21495809,21561345,21692417,21757953,21823492,21889025,22020097,22151170,22216705,22347777,22413313,22478849,22544385,22609938,22675464,22740999,22806530,22872082,22937617,23003153,23265281],"getcomponents":[7798788,7864324,8716292,11141124,11599876,15728644,17825796,22609924,22675460,22740996,22806532,22872068,22937604,23003140]} \ No newline at end of file diff --git a/docs/fti/FTI_104.json b/docs/fti/FTI_104.json index fe7018d..8b99162 100644 --- a/docs/fti/FTI_104.json +++ b/docs/fti/FTI_104.json @@ -1 +1 @@ -{"hingejoint":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"header":[17432577],"history":[720897,3014657,20643841],"handleobjectspawning":[720897,2424834,20643841],"hosts":[720897,3211265,17694721,20643842],"handlerid":[9240577],"hierarchy":[18350081,19005441,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"hostid":[589826,1310723,8781826,19660802],"hideflags":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"hellman":[720897,3801089,20643841],"handshake":[720897,1572865,20643841],"handler":[8192001,8847362,9240577,9764866,10223618,14942210,23134210,23199746,23265282,23330818],"hasmissingparts":[7077889,21954562,22347777],"hasduplicates":[7077889,20971522,22347777],"handle":[720897,2424833,20643841],"hook":[327681,1048578,22937601],"hashing":[7340033],"hte":[589825,2162689,19660801],"hash":[5767169,5963779,7340035,7471109,7995393,13303811,19660801,20643843],"handlers":[8519681,8650753,8847375,9109505,9502721,9633793,9699329,9764879,9830401,9961473,10027009,10158081,10223631,10289153,11534337,11993089,12058625,12320769,12451841,13107201,13172737,14942223,18022402,19464198,20054018,21364738,22216706,23134223,23199759,23265295,23330831],"helper":[16384002,16777217,22347777,23003137,23461889],"host":[458754,3604481,4128769,7929857,8781826,10747906,10878977,11862017,17694721,19136513,20316161,20381697,20840449,21299201,21561345,21692417,22020099,22675459,23134209,23199745,23265281,23330817]} \ No newline at end of file +{"hingejoint":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"header":[18087937],"history":[262145,2621441,19595265],"handleobjectspawning":[262145,3342338,19595265],"hosts":[262145,3145729,19398657,19595266],"handlerid":[8912897],"hierarchy":[19136513,19529729,19595265,19660801,19857409,19922945,20447233,20512769,20578305,20905985,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"hostid":[196610,2162691,8257538,21037058],"hookmethodname":[327681,1048578,19529729],"hideflags":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"hellman":[262145,3670017,19595265],"handshake":[262145,1769473,19595265],"handler":[8519681,8912897,11141122,11599874,15728642,17825794,22609922,22872066,22937602,23003138],"hasmissingparts":[7077889,19726338,23330817],"hasduplicates":[7077889,17694722,23330817],"handle":[262145,3342337,19595265],"hashing":[9043969],"hte":[196609,1507329,21037057],"hash":[5767169,5898243,7536645,7929857,9043971,12255235,19595267,21037057],"handlers":[8060929,9437185,9568257,9699329,9895937,10027009,10092545,10878977,11141135,11206657,11337729,11403265,11599887,11665409,11862017,11993089,12058625,12124161,12386305,12976129,15728655,16646146,17825807,17891330,18939906,21823494,22151170,22609935,22872079,22937615,23003151],"helper":[16252930,16515073,20905985,23134209,23330817],"host":[786434,3473409,3866625,7864322,8257538,9175041,11075585,11796481,17760257,18219009,18284545,18481153,18612225,19398657,20316161,20447235,21233665,22609921,22740995,22872065,22937601,23003137]} \ No newline at end of file diff --git a/docs/fti/FTI_105.json b/docs/fti/FTI_105.json index c1656d9..06fde47 100644 --- a/docs/fti/FTI_105.json +++ b/docs/fti/FTI_105.json @@ -1 +1 @@ -{"inheritance":[18350081,19005441,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"include":[720897,1966081,20643841],"isactiveandenabled":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"index":[11927555,12845059,17760257],"invalid":[5767169,8060930,8781825,19660801],"isinvalid":[5767169,8060930,8781826,19660801],"ienumerator":[7733250,8847362,9568258,9764866,10223618,10747906,14942210,21757954,22675458,23068674,23134210,23199746,23265282,23330818],"isdefaultattribute":[5701633,5898241,22806529,22937601],"isclient":[18284546,19333122,20381697,20840449,21299201,21561345,21692417,22675457,23134209,23199745,23265281,23330817],"isowner":[19202050,20250626,20381697,20447233,21299201,21561345,21692417,21757953,23134209,23199745,23265281,23330817],"invokes":[7274498,16646145,17104897,19267586,22544386],"invoked":[8519681,8847374,9109505,9240577,9502721,9633793,9699329,9764878,9830401,9961473,10027009,10158081,10223630,10289153,12320769,12451841,13107201,13172737,14942222,18022402,19464198,20054018,21364738,22216706,23134222,23199758,23265294,23330830],"isserver":[20381697,20578306,20709378,20840449,21299201,21561345,21692417,22675457,23134209,23199745,23265281,23330817],"identify":[15990785,21757953],"idisposable":[15007745,22151169],"int16":[13893633,14352385,14614531,15335428],"inside":[720897,2555905,7077889,20643841,20971521,22347777],"inequality":[8585217,16973825,19660801],"interpolateserver":[1638401,5111810,23330817],"isplayerobject":[19857410,20447233,21757953],"instance":[5963777,6815745,6946817,7208961,7340033,7405569,7667713,7798785,7995393,8126465,8257537,8323073,8454145,8585217,8781825,8847361,9043969,9109507,9306115,9502723,9764865,9895939,9961475,10092545,10158083,10223617,10289155,10485761,10551299,10616835,10682371,11141121,11337729,11599873,11796481,12255233,13107203,13172739,13565955,13697027,13959169,14483461,14548993,14942209,15532033,16973826,17170434,18153473,18350081,18743297,19005441,19660804,20381698,20643842,20840449,21102593,21233665,21299202,21430273,21561346,21626881,21692418,21757953,21823489,22020097,22675458,22806529,22937601,23068673,23134212,23199748,23265284,23330820,23461889],"initializes":[6815745,6946817,7208961,7405569,7667713,7798785,8126465,8454145,8781825,9043969,10092545,10485761,11141121,11337729,11599873,11796481,12255233,14548993,17170434,18350081,19005441,19660802,20643841,21233665,21430273,21626881,21757953,22020097,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"isspawned":[20447233,20512770,21757953],"int":[1572865,1966081,2228225,2293761,2359297,2555905,2818049,3538945,4128769,7340033,8192001,9240577,9502721,9895937,10158081,10616833,10682369,11927553,12517377,12648449,12713985,12845057,13303809,13369345,13434881,13500417,13762561,14155777,14352385,14417921,15073281,15859714,17235969,17432577,17760257,18808833,20119553,22282241],"int32":[1572865,1966081,2228225,2293761,2359297,2555905,2818049,3538945,4128769,7340033,8192001,8847365,9240577,9502722,9764869,9895938,10158082,10223622,10616834,10682370,11927555,12517380,12648452,12713988,12845059,13303811,13369348,13434884,13500420,13762564,14155780,14352388,14417924,14942213,15073281,15859717,17235971,17432577,17629186,17760257,17891329,18087937,18808834,19464193,20054017,20119554,22282241,23134213,23199750,23265285,23330821],"invokerepeating":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"interpolate":[1638401,5111809,23330817],"isinvoking":[7733250,8847362,9568258,9764866,10223618,10747906,14942210,21757954,22675458,23068674,23134210,23199746,23265282,23330818],"int64":[12124161,12648449,14811139,15466500,16515073,16908289],"internal":[720897,1966081,20643841],"implements":[15007745],"invoke":[327681,1048577,1376260,4325377,5505025,5832705,6881281,7733249,8847361,9568257,9764865,10223617,10747905,14942209,16646145,17104897,21757953,22675461,22937601,23068673,23134209,23199745,23265281,23330817],"isordered":[7077889,16121858,22347777],"interpolation":[1638401,4980737,23330817],"interpolateposition":[1638401,4980738,23330817],"islocalplayer":[18677762,19791874,20381697,20447233,21299201,21561345,21692417,21757953,23134209,23199745,23265281,23330817],"inspector":[1376257,4456449,22675457],"isclientconnected":[19922946,20840449,22675457],"instances":[1638401,5308417,5963777,7471105,20643841,23330817],"inherits":[15990785,23134209],"inherited":[786433,851969,1638401,5636102,5701640,5767170,5898248,5963782,6094854,6160390,6225926,6291462,6422534,6750212,7733306,8847418,9568312,9764955,10223707,10747962,14942299,18350086,19005446,19595265,19660802,19726337,20381722,20447258,20643846,20840474,21037082,21233670,21299234,21430278,21561378,21626886,21692450,21758034,22020102,22151172,22675540,22806537,22937609,23068756,23134292,23199870,23265406,23330942],"ispooledobject":[20185090,20447233,21757953],"ishost":[5767169,7929858,8781826,19136514,19660801,20316162,20381697,20840449,21299201,21561345,21692417,22675457,23134209,23199745,23265281,23330817],"identifier":[7143425,8781826,9043969,17956865],"instead":[6553601,18743297,22740993]} \ No newline at end of file +{"inheritance":[19136513,19529729,19595265,19660801,19857409,19922945,20447233,20512769,20578305,20905985,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"include":[262145,2555905,19595265],"isactiveandenabled":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"index":[10944515,11730947,22085633],"invalid":[5767169,8257537,9240578,21037057],"isinvalid":[5767169,8257538,9240578,21037057],"ienumerator":[7798786,7864322,8716290,11141122,11599874,15728642,17825794,22609922,22675458,22740994,22806530,22872066,22937602,23003138],"isdefaultattribute":[5832705,6029313,19136513,19529729],"isclient":[17760257,18219009,18284545,18481153,18612225,20185090,21102594,22609921,22740993,22872065,22937601,23003137],"isowner":[17760257,18153473,18284545,18481153,18612225,21561346,22413314,22609921,22675457,22872065,22937601,23003137],"invokes":[7143426,17039362,21299201,21626881,23396354],"invoked":[8912897,9437185,9568257,9699329,9895937,10027009,10092545,10878977,11141134,11337729,11403265,11599886,11665409,11862017,11993089,12124161,12976129,15728654,16646146,17825806,17891330,18939906,21823494,22151170,22609934,22872078,22937614,23003150],"isserver":[17760257,18219009,18284545,18481153,18612225,20381698,21757954,22609921,22740993,22872065,22937601,23003137],"identify":[16056321,22675457],"idisposable":[15335425,23265281],"int16":[13959169,14352385,18808835,19988484],"inside":[262145,2424833,7077889,17694721,19595265,23330817],"inequality":[7667713,16580609,21037057],"interpolateserver":[1245185,6225922,23003137],"isplayerobject":[18153473,22478850,22675457],"instance":[5898241,6946817,7274497,7405569,7471105,7667713,7733249,7929857,7995393,8126465,8192001,8257537,8323073,8388609,8781825,8978435,9043969,9502721,9764867,9895939,10092547,10158083,10289155,10354689,10485761,10616835,10813441,11141121,11403267,11599873,11862019,11993091,12124163,12189697,12320769,12451843,12582915,12779521,12976131,13893633,14286853,15073281,15663105,15728641,16580610,16908290,17760258,17825793,18219009,18284546,18481154,18612226,18874369,19136513,19529729,19595266,19660801,19857409,19922945,20447233,20578305,21037060,21168129,21889025,22020097,22609924,22675457,22740994,22806529,22872068,22937604,23003140,23134209,23199745],"initializes":[6946817,7274497,7405569,7733249,7995393,8126465,8192001,8257537,8323073,8388609,9502721,10354689,10485761,10813441,12189697,12320769,12779521,15073281,16908290,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20578305,21037058,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23199745],"isspawned":[18153473,18546690,22675457],"int":[1769473,2031617,2228225,2424833,2555905,2686977,2752513,3604481,3866625,8519681,8912897,9043969,9764865,9895937,10158081,10289153,10944513,11730945,11993089,12255233,12845057,13041665,13107201,13565953,13631489,13697025,14352385,14483457,14417921,14680065,14745601,15794177,16318465,16711681,16777218,18087937,21495809,22085633],"int32":[1769473,2031617,2228225,2424833,2555905,2686977,2752513,3604481,3866625,8519681,8912897,9043969,9764866,9895938,10158082,10289154,10944515,11141125,11599877,11730947,11993090,12255235,12845060,13041668,13107204,13565956,13631492,13697028,14352388,14417924,14483460,14680068,14745601,15728646,15794178,16318467,16711682,16777221,17498113,17825797,18087937,19333121,20643842,21495809,21823489,22085633,22151169,22609925,22872070,22937605,23003141],"invokerepeating":[7798785,7864321,8716289,11141121,11599873,15728641,17825793,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"interpolate":[1245185,6225921,23003137],"isinvoking":[7798786,7864322,8716290,11141122,11599874,15728642,17825794,22609922,22675458,22740994,22806530,22872066,22937602,23003138],"int64":[12648449,13107201,13762561,14024705,15204355,16842756],"internal":[262145,2555905,19595265],"implements":[15335425],"invoke":[327681,393220,1048577,4063233,4194305,5046273,6881281,7798785,7864321,8716289,11141121,11599873,15728641,17825793,19529729,21299201,21626881,22609921,22675457,22740997,22806529,22872065,22937601,23003137],"isordered":[7077889,20840450,23330817],"interpolation":[1245185,5636097,23003137],"interpolateposition":[1245185,5636098,23003137],"islocalplayer":[17760257,18153473,18284545,18481153,18612225,21430274,22347778,22609921,22675457,22872065,22937601,23003137],"inspector":[393217,4325377,22740993],"isclientconnected":[18219009,20250626,22740993],"instances":[1245185,4849665,5898241,7536641,19595265,23003137],"inherits":[16056321,22609921],"inherited":[851969,917505,1245185,5111814,5308422,5767170,5832712,5898246,6029320,6094854,6160390,6291462,6553606,6750212,7798840,7864378,8716346,11141211,11599930,15728731,17235969,17432577,17760282,17825883,17956890,18153498,18219034,18284578,18481186,18612258,19136521,19529737,19595270,19660806,19857414,19922950,20447238,20578310,21037058,22610004,22675538,22741076,22806612,22872190,22937726,23003262,23199750,23265284],"ispooledobject":[18153473,22544386,22675457],"ishost":[5767169,8257538,9175042,17760257,18219009,18284545,18481153,18612225,20316162,21037057,21233666,22609921,22740993,22872065,22937601,23003137],"identifier":[7340033,8257538,8388609,19005441],"instead":[6488065,15663105,23461889]} \ No newline at end of file diff --git a/docs/fti/FTI_107.json b/docs/fti/FTI_107.json index 1df37c2..a433e22 100644 --- a/docs/fti/FTI_107.json +++ b/docs/fti/FTI_107.json @@ -1 +1 @@ -{"keys":[1376257,4456449,22675457],"key":[655361,720901,2621442,3080194,3342337,3801089,6684674,16449540,17367044,20643845,21233665,23003138],"known":[12517379,12648451,12713987,13369347,13434883,13500419,13762563,14155779,14221315,14352387,14417923,14745603,15335427,15466499,15728643,15859715,15925251,16711683,16842755,17825795]} \ No newline at end of file +{"keys":[393217,4325377,22740993],"key":[262149,524289,2490370,3080193,3276802,3670017,7208962,17563652,19070980,19595269,19922945,20905986],"known":[12845059,13041667,13107203,13565955,13631491,13697027,14352387,14417923,14483459,14548995,14680067,15269891,15400963,15859715,15990787,16777219,16842755,16973827,18415619,19988483]} \ No newline at end of file diff --git a/docs/fti/FTI_108.json b/docs/fti/FTI_108.json index 05a6934..68462dd 100644 --- a/docs/fti/FTI_108.json +++ b/docs/fti/FTI_108.json @@ -1 +1 @@ -{"large":[7077889,17432578,22347777],"local":[8323073,8716289,8847362,9764866,10223618,14942210,19202049,20250625,20381697,20447233,20840449,21168129,21299201,21561345,21692417,21757953,22675457,23134211,23199747,23265283,23330819],"logic":[720897,2752513,20643841],"loose":[8847361,8978433,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"library":[720897,2424833,15990785,20643841,22675457],"list":[720898,1835010,2490371,2883586,3145730,3211266,3276803,7077895,7733253,8847369,9109507,9175043,9568261,9633795,9764873,9895939,10223625,10747909,14942217,16121860,17170433,17432579,17629187,17891329,18022401,18087937,18481153,18808838,19070977,19267585,19464195,20054017,20119558,20643842,20774913,20971525,21364737,21757957,21889025,21954565,22216705,22347783,22478849,22609922,22675461,23068677,23134217,23199753,23265289,23330825],"longer":[19398657],"long":[12124161,12648449,14811137,15466497,16515073,16908289],"listen":[458754,3473409,4128769,22020098],"locate":[19398657],"looking":[19398657],"link":[1],"lerp":[851969,5046273,23265281],"lag":[720897,3014657,15990785,16580609,20643841,22544385,23068673],"light":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"load":[7602177],"lagcompensationmanager":[7274498,16580609,16646146,17104898,17498115,19267586,22544388,22609922]} \ No newline at end of file +{"large":[7077889,18087938,23330817],"local":[8454145,8781825,11141122,11599874,15728642,17760257,17825794,18153473,18219009,18284545,18481153,18612225,20709377,21561345,22413313,22609923,22675457,22740993,22872067,22937603,23003139],"logic":[262145,2293761,19595265],"loose":[8585217,11141121,11599873,15728641,17825793,22609921,22872065,22937601,23003137],"library":[262145,3342337,16056321,19595265,22740993],"list":[262146,1638402,2818051,2883587,2949122,3145730,3211266,7077895,7798789,7864325,8716293,9109507,9699331,9764867,11141129,11403267,11599881,15728649,15794182,16646145,16711686,16908289,17039361,17367041,17498113,17694725,17825801,17891329,18087939,18350081,18939905,19333121,19464193,19595266,19726341,19791873,20643843,20840452,21823491,21954562,22151169,22282241,22609929,22675461,22740997,22806533,22872073,22937609,23003145,23330823],"longer":[17104897],"long":[12648449,13107201,13762561,14024705,15204353,16842753],"listen":[786434,3801089,3866625,20447234],"locate":[17104897],"looking":[17104897],"link":[1],"lerp":[917505,4653057,22937601],"lag":[262145,2621441,16056321,16384001,19595265,22806529,23396353],"light":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"load":[5570561],"lagcompensationmanager":[7143426,16384001,17039362,18677763,21299202,21626882,21954562,23396356]} \ No newline at end of file diff --git a/docs/fti/FTI_109.json b/docs/fti/FTI_109.json index 2f5b930..380e044 100644 --- a/docs/fti/FTI_109.json +++ b/docs/fti/FTI_109.json @@ -1 +1 @@ -{"marked":[1376257,4063233,22675457],"meta":[589826,2162691,19660802],"messagetype":[196612,1114115,1703938,2883586,6291459,7667716,8192001,8388611,8519683,8912899,9109507,9175043,9240577,9306115,9371651,9437187,9502723,9633795,9699331,9830403,9895939,9961475,10027011,10158083,10289155,10551299,10616835,10682371,11206659,11468803,12320771,12451843,13107203,13172739,13565955,13697027,17694721,19005447],"myclientid":[20840449,21168130,22675457],"miliseconds":[21037057,22085633,23068673],"mlapi":[65537,131074,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917509,983045,1048581,1114117,1179653,1245189,1310725,1376258,1441797,1507333,1572869,1638402,1703941,1769477,1835013,1900549,1966085,2031621,2097157,2162693,2228229,2293765,2359301,2424837,2490373,2555909,2621445,2686981,2752517,2818053,2883589,2949125,3014661,3080197,3145733,3211269,3276805,3342341,3407877,3473413,3538949,3604485,3670021,3735557,3801093,3866629,3932165,3997701,4063237,4128773,4194310,4259846,4325381,4390917,4456453,4521990,4587525,4653062,4718597,4784133,4849669,4915206,4980741,5046277,5111813,5177349,5242886,5308421,5373957,5439493,5505029,5570565,5636098,5701634,5767170,5832709,5898242,5963778,6029317,6094850,6160386,6225922,6291458,6356997,6422530,6488069,6553602,6619138,6684674,6750210,6815749,6881285,6946821,7012357,7077890,7143429,7208965,7274498,7340037,7405573,7471111,7536645,7602177,7667717,7733250,7798789,7864325,7929861,7995399,8060933,8126469,8192005,8257543,8323079,8388613,8454149,8519685,8585223,8650757,8716293,8781829,8847362,8912901,8978437,9043973,9109509,9175045,9240581,9306117,9371653,9437189,9502725,9568258,9633797,9699333,9764866,9830405,9895941,9961477,10027013,10092549,10158085,10223618,10289157,10354693,10420229,10485765,10551301,10616837,10682373,10747906,10813445,10878983,10944518,11010053,11075589,11141125,11206661,11272197,11337733,11403269,11468805,11534341,11599877,11665413,11730949,11796485,11862021,11927559,11993093,12058629,12124167,12189703,12255237,12320773,12386309,12451845,12517384,12582920,12648456,12713992,12779527,12845063,12910600,12976135,13041671,13107205,13172741,13238277,13303814,13369352,13434888,13500424,13565957,13631495,13697029,13762568,13828103,13893639,13959173,14024711,14090246,14155784,14221320,14286855,14352392,14417928,14483461,14548998,14614535,14680071,14745608,14811143,14876679,14942210,15007749,15073287,15138818,15204359,15269895,15335432,15400967,15466504,15532034,15597575,15663109,15728648,15794183,15859720,15925256,15990786,16056327,16121861,16187399,16252930,16318469,16384002,16449541,16515078,16580610,16646149,16711688,16777218,16842760,16908293,16973826,17039367,17104901,17170434,17235975,17301510,17367045,17432581,17498114,17563650,17629186,17694723,17760261,17825800,17891330,17956869,18022402,18087938,18153477,18219013,18284549,18350086,18415621,18481154,18546693,18612229,18677765,18743302,18808838,18874374,18939909,19005447,19070978,19136517,19202053,19267586,19333125,19398657,19464194,19529733,19595266,19660805,19726338,19791877,19857413,19922949,19988482,20054018,20119558,20185093,20250629,20316165,20381698,20447234,20512773,20578309,20643846,20709381,20774914,20840450,20905989,20971525,21037058,21102597,21168133,21233670,21299202,21364738,21430279,21495813,21561346,21626886,21692418,21757958,21823493,21889026,21954565,22020102,22085637,22151175,22216706,22282245,22347782,22413317,22478850,22544390,22609925,22675462,22740998,22806534,22872070,22937606,23003142,23068678,23134217,23199751,23265287,23330823,23396359,23461894],"messagetypes":[720898,2883587,20643842],"monobehaviours":[393217,524289,786433,851969,1376257,1638401,3670018,3866626,4063234,4194307,4259843,4325378,4390914,4456450,4521987,4587522,4653059,4718594,4784130,4849666,4915203,4980738,5046274,5111810,5177346,5242883,5308418,5373954,5439490,5505026,5570562,5832706,6029314,6356994,6488066,6881282,7012354,7536642,7733249,8192002,8323076,8388610,8519682,8650754,8716290,8847361,8912898,8978434,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568257,9633794,9699330,9764865,9830402,9895938,9961474,10027010,10092546,10158082,10223617,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747905,10813442,10878980,10944515,11010050,11075586,11141122,11206658,11272194,11403266,11337730,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927556,11993090,12058626,12255234,12320770,12386306,12451842,12845060,13107202,13172738,13303811,13565954,13697026,14942209,15990785,16252929,17629185,17891329,18022401,18087937,18153474,18219010,18284546,18546690,18612226,18677762,18743297,18939906,19136514,19202050,19333122,19464193,19791874,19857410,19922946,20054017,20185090,20250626,20316162,20381697,20447233,20512770,20578306,20709378,20774913,20840449,20905986,21037057,21102594,21168130,21299201,21364737,21495810,21561345,21692417,21757955,21823490,21889025,22085634,22216705,22282242,22413314,22478849,22675459,23068675,23134214,23199748,23265284,23330820],"maxreceiveeventspertickrate":[720897,2818050,20643841],"messagechunker":[7077891,16121858,16384001,17432578,18808835,20119555,20971522,21954562,22347780],"main":[15990785,16580611,22544385,22675457,22740993,22872065],"mindegrees":[1638401,5570562,23330817],"multiple":[8519681,8847368,9109505,9175041,9371649,9502721,9633793,9764872,9895937,10223624,10682369,14942216,17629188,19464196,23134216,23199752,23265288,23330824],"messagebuffersize":[720897,2359298,20643841],"maximize":[720897,2752513,20643841],"messages":[720899,1441793,2555905,2818049,16384001,20643843,22347777],"meters":[1638401,6029313,23330817],"message":[720899,2359298,3538945,6684674,8192001,8388609,8650753,8847363,9240578,9699329,9764867,10158081,10223619,10616833,11534337,11993089,12058625,14942211,16449537,17367041,17432578,17694721,19005441,20643843,23003138,23134211,23199747,23265283,23330819],"managing":[16580610,22740993,22872065],"method":[327681,1048577,6553601,7143425,7340033,7471105,7864321,7929857,7995393,8060929,8192001,8323073,8388609,8519681,8650753,8716289,8912897,8978433,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10158081,10289153,10354689,10420225,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11403265,11468801,11534337,11665409,11730945,11862017,11927553,11993089,12058625,12124161,12189697,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17629185,17760257,17825793,17891329,18022401,18087937,18415617,18481153,18743298,18808833,18874369,19070977,19267585,19464193,19529729,20054017,20119553,20774913,20971521,21364737,21889025,21954561,22216705,22478849,22740993,22937601],"missing":[4194305,4259841,4521985,4653057,4915201,5242881,7077889,7471106,7995394,8323074,10878978,10944513,11927554,12124162,12189698,12517379,12582915,12648451,12713987,12779522,12845058,12910595,12976130,13041666,13303809,13369347,13434883,13500419,13631490,13762563,13828098,13893634,14024706,14090241,14155779,14221315,14286850,14352387,14417923,14548993,14614530,14680066,14745603,14811138,14876674,15073282,15204354,15269890,15335427,15400962,15466499,15597570,15728643,15794178,15859715,15925251,16056322,16187394,16515073,16711683,16842755,17039362,17235970,17301505,17825795,18808833,18874369,20119553,21430273,21954562,22151169,22347777,23396353],"methods":[5636098,5701634,5767170,5898242,5963778,6094850,6160386,6225922,6291458,6422530,6553602,6619138,6684674,6750210,7077890,7274498,7733250,8847362,9568258,9764866,10223618,10747906,14942210,15138818,15532034,18350081,19005441,19660801,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"minimum":[393217,786433,851969,1638401,3670017,23134209,23199745,23265281,23330817],"messagehandler":[9240578],"make":[720897,2424833,20643841],"messagehandlerid":[8192001],"match":[5701633,5898241,22806529,22937601],"max":[720899,2228225,2359297,2818049,20643843],"min":[1638402,5570561,6029313,23330818],"monobehaviour":[6553601,7733262,8847374,9568270,9764878,10223630,10747918,14942222,15990785,18743297,20381698,20447234,20840450,21037058,21299202,21561346,21692418,21757970,22675474,22740993,23068690,23134227,23199761,23265297,23330833],"memberwiseclone":[5636097,5701633,5898241,5963777,6094849,6160385,6225921,6291457,6422529,7733249,8847361,9764865,10223617,10747905,14942209,18350081,19005441,20643841,21233665,21430273,21626881,22020097,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"minmeters":[1638401,6029314,23330817],"maxconnections":[720897,2228226,20643841],"misspelled":[19398657],"members":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851969,1376257,1638401,5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6553601,6619137,6684673,6750209,7077889,7733249,8847361,9568257,9764865,10223617,10747905,14942209,15532033,16973825,17498113,18350081,19005441,19595265,19660801,19726337,19988481,20381697,20447233,20643841,20840449,21037057,21233665,21299201,21430273,21561345,21626881,21692417,21757953,22020097,22151169,22347777,22544385,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23461889]} \ No newline at end of file +{"marked":[393217,3407873,22740993],"meta":[196610,1507331,21037058],"messagetype":[589828,1114114,1310723,2949122,5308419,7405572,8519681,8650755,8847363,8912897,8978435,9109507,9306115,9371651,9437187,9568259,9699331,9764867,9895939,10027011,10092547,10158083,10289155,10616835,10747907,10878979,11010051,11337731,11403267,11665411,11862019,11993091,12124163,12451843,12582915,12976131,19398657,20578311],"myclientid":[18219009,20709378,22740993],"miliseconds":[17956865,21364737,22806529],"mlapi":[65537,131074,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983045,1048581,1114117,1179653,1245186,1310725,1376261,1441797,1507333,1572869,1638405,1703941,1769477,1835013,1900549,1966085,2031621,2097157,2162693,2228229,2293765,2359301,2424837,2490373,2555909,2621445,2686981,2752517,2818053,2883589,2949125,3014661,3080197,3145733,3211269,3276805,3342341,3407877,3473413,3538949,3604485,3670021,3735557,3801093,3866629,3932165,3997701,4063237,4128773,4194309,4259846,4325381,4390917,4456454,4521989,4587525,4653061,4718598,4784134,4849669,4915205,4980741,5046277,5111810,5177349,5242885,5308418,5373957,5439494,5505029,5570561,5636101,5701637,5767170,5832706,5898242,5963781,6029314,6094850,6160386,6225925,6291458,6356997,6422534,6488066,6553602,6619141,6684674,6750210,6815749,6881285,6946821,7012357,7077890,7143426,7208962,7274501,7340037,7405573,7471111,7536647,7602181,7667719,7733253,7798786,7864322,7929863,7995397,8060933,8126469,8192005,8257541,8323077,8388613,8454149,8519685,8585221,8650757,8716290,8781831,8847365,8912901,8978437,9043973,9109509,9175045,9240581,9306117,9371653,9437189,9502725,9568261,9633797,9699333,9764869,9830405,9895941,9961477,10027013,10092549,10158085,10223621,10289157,10354693,10420229,10485765,10551301,10616837,10682373,10747909,10813445,10878981,10944519,11010053,11075591,11141122,11206661,11272197,11337733,11403269,11468805,11534341,11599874,11665413,11730951,11796485,11862021,11927558,11993093,12058629,12124165,12189701,12255238,12320773,12386309,12451845,12517383,12582917,12648455,12713992,12779525,12845064,12910600,12976133,13041672,13107208,13172741,13238279,13303815,13369349,13434887,13500423,13565960,13631496,13697032,13762566,13828103,13893637,13959175,14024709,14090247,14155783,14221318,14286853,14352392,14417928,14483464,14549000,14614535,14680072,14745607,14811142,14876679,14942215,15007751,15073286,15138823,15204359,15269896,15335429,15400968,15466503,15532037,15597575,15663110,15728642,15794182,15859720,15925254,15990792,16056322,16121858,16187399,16252930,16318471,16384002,16449541,16515074,16580610,16646146,16711686,16777224,16842760,16908290,16973832,17039362,17104897,17170439,17235970,17301509,17367042,17432578,17498114,17563653,17629186,17694725,17760258,17825794,17891330,17956866,18022402,18087941,18153474,18219010,18284546,18350082,18415624,18481154,18546693,18612226,18677762,18743301,18808839,18874370,18939906,19005445,19070981,19136518,19202050,19267589,19333122,19398659,19464194,19529734,19595270,19660806,19726341,19791874,19857414,19922950,19988488,20054021,20119557,20185093,20250629,20316165,20381701,20447238,20512774,20578311,20643842,20709381,20774919,20840453,20905990,20971525,21037061,21102597,21168133,21233669,21299205,21364741,21430277,21495813,21561349,21626885,21692421,21757957,21823490,21889029,21954565,22020101,22085637,22151170,22216709,22282242,22347781,22413317,22478853,22544389,22609929,22675462,22740998,22806534,22872071,22937607,23003143,23068679,23134214,23199751,23265287,23330822,23396358,23461894],"messagetypes":[262146,2949123,19595266],"monobehaviours":[393217,655361,720897,851969,917505,1245185,3407874,3932162,4063234,4128770,4194306,4259843,4325378,4456451,4521986,4587522,4653058,4718595,4784131,4849666,4915202,4980738,5046274,5177346,5242882,5373954,5439491,5505026,5636098,5701634,5963778,6225922,6356994,6422531,6619138,6815746,6881282,7012354,7798785,7864321,8060930,8454146,8519682,8585218,8650754,8716289,8781828,8847362,8912898,8978434,9109506,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944516,11010050,11075588,11141121,11206658,11272194,11337730,11403266,11468802,11534338,11599873,11665410,11730948,11796482,11862018,11927555,11993090,12058626,12124162,12189698,12255235,12320770,12386306,12451842,12582914,12779522,12976130,15663105,15728641,16056321,16121857,16646145,17367041,17498113,17760257,17825793,17891329,17956865,18153473,18219009,18284545,18350081,18481153,18546690,18612225,18743298,18939905,19267586,19333121,20054018,20119554,20185090,20250626,20316162,20381698,20643841,20709378,20971522,21102594,21168130,21233666,21364738,21430274,21495810,21561346,21692418,21757954,21823489,21889026,22020098,22151169,22216706,22282241,22347778,22413314,22478850,22544386,22609926,22675459,22740995,22806531,22872068,22937604,23003140],"maxreceiveeventspertickrate":[262145,2686978,19595265],"messagechunker":[7077891,15794179,16252929,16711683,17694722,18087938,19726338,20840450,23330820],"main":[16056321,16384003,20512769,22740993,23396353,23461889],"mindegrees":[1245185,4980738,23003137],"multiple":[9109505,9371649,9699329,9764865,10289153,10878977,11141128,11403265,11599880,11993089,15728648,17825800,20643844,21823492,22609928,22872072,22937608,23003144],"messagebuffersize":[262145,2228226,19595265],"maximize":[262145,2293761,19595265],"messages":[262147,2359297,2424833,2686977,16252929,19595267,23330817],"meters":[1245185,5373953,23003137],"message":[262147,2228226,3604481,7208962,8060929,8519681,8650753,8912898,9437185,9895937,10158081,11141123,11206657,11599875,12058625,12386305,15728643,17563649,17825795,18087938,19070977,19398657,19595267,20578305,20905986,22609923,22872067,22937603,23003139],"managing":[16384002,20512769,23461889],"method":[327681,1048577,6488065,7340033,7536641,7602177,7929857,8060929,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10420225,10551297,10616833,10682369,10747905,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12255233,12386305,12451841,12517377,12582913,12648449,12713985,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663106,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16646145,16711681,16777217,16842753,16973825,17039361,17170433,17367041,17498113,17563649,17694721,17891329,18087937,18350081,18415617,18808833,18939905,19070977,19333121,19464193,19529729,19726337,19791873,19988481,20643841,20774913,20840449,21299201,21626881,21823489,22085633,22151169,22282241,23461889],"missing":[4259841,4456449,4718593,4784129,5439489,6422529,7077889,7536642,7929858,8781826,10944514,11075586,11730946,11927553,12255233,12517378,12648450,12713987,12845059,12910595,13041667,13107203,13238274,13303810,13434882,13500418,13565955,13631491,13697027,13762561,13828098,13959170,14090242,14155778,14221313,14352387,14417923,14483459,14548995,14614530,14680067,14745602,14811137,14876674,14942210,15007746,15073281,15138818,15204354,15269891,15400963,15466498,15597570,15794177,15859715,15925249,15990787,16187394,16318466,16711681,16777219,16842755,16973827,17170434,18415619,18808834,19726338,19988483,20774914,23068673,23199745,23265281,23330817],"methods":[5111810,5308418,5767170,5832706,5898242,6029314,6094850,6160386,6291458,6488066,6553602,6684674,6750210,7077890,7143426,7208962,7798786,7864322,8716290,11141122,11599874,15728642,17825794,18022402,18874370,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20512769,20578305,20905985,21037057,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"minimum":[655361,851969,917505,1245185,6356993,22609921,22872065,22937601,23003137],"messagehandler":[8912898],"make":[262145,3342337,19595265],"messagehandlerid":[8519681],"match":[5832705,6029313,19136513,19529729],"max":[262147,2031617,2228225,2686977,19595267],"min":[1245186,4980737,5373953,23003138],"monobehaviour":[6488065,7798798,7864334,8716302,11141134,11599886,15663105,15728654,16056321,17760258,17825806,17956866,18153474,18219010,18284546,18481154,18612226,22609939,22675474,22741010,22806546,22872081,22937617,23003153,23461889],"memberwiseclone":[5111809,5308417,5832705,5898241,6029313,6094849,6160385,6291457,6553601,7864321,8716289,11141121,11599873,15728641,17825793,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20578305,22609921,22740993,22806529,22872065,22937601,23003137,23199745],"minmeters":[1245185,5373954,23003137],"maxconnections":[262145,2031618,19595265],"misspelled":[17104897],"members":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,1245185,5111809,5308417,5767169,5832705,5898241,6029313,6094849,6160385,6291457,6488065,6553601,6684673,6750209,7077889,7208961,7798785,7864321,8716289,11141121,11599873,15728641,16580609,17235969,17432577,17629185,17760257,17825793,17956865,18153473,18219009,18284545,18481153,18612225,18677761,18874369,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20512769,20578305,20905985,21037057,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23134209,23199745,23265281,23330817,23396353,23461889]} \ No newline at end of file diff --git a/docs/fti/FTI_110.json b/docs/fti/FTI_110.json index 8976510..7c89fec 100644 --- a/docs/fti/FTI_110.json +++ b/docs/fti/FTI_110.json @@ -1 +1 @@ -{"networkscenemanager":[6619139,16580609,19529730,22872068],"netwokrtime":[720897,2752513,20643841],"networkedprefab":[262147,524289,2490370,3407874,3866625,3932162,6225923,7405572,17694722,21626887,21757953],"networkstart":[8650754,8847361,9764866,10223618,11534338,11993090,12058626,14942210,23134209,23199746,23265282,23330818],"networkedtransform":[1638403,4980738,5111810,5308418,5570562,6029314,6356994,6488066,7012354,7536642,11993090,12255236,14942211,16252929,21692419,23134209,23330822],"networkingmanager":[1376260,4063235,4325378,4456450,4718594,4849666,5505026,5832706,6881282,10747907,10813442,10878980,11010050,11272194,11337732,11403266,11665410,11862018,15990785,18939906,19333122,19922946,20316162,20578306,20840452,21168130,21495810,21823493,22675464],"nullable":[10878984],"networkid":[8323076,8847361,9764865,10223617,14942209,18153475,20381698,20447233,20905986,21299202,21561346,21692418,21757953,23134211,23199747,23265283,23330819],"networkedbehaviour":[393219,786433,851969,1638401,3670018,8192002,8323076,8388610,8519683,8650754,8716290,8847377,8912898,8978434,9109507,9175042,9240578,9306114,9371650,9437186,9502723,9633795,9699331,9764912,9830403,9895938,9961475,10027011,10092548,10158083,10223664,10289155,10551298,10616834,10682370,11206658,11468802,12320771,12451843,13107203,13172739,13565954,13697026,14942256,15990785,17629186,17891330,18022404,18153475,18284546,18546690,19136514,19464200,19791874,20054020,20250626,20381701,20709378,20774914,21102595,21299210,21364740,21561354,21692426,21889026,22216708,22478850,23134230,23199805,23265341,23330877],"networkedobjec":[655361,3145729,21233665],"namespace":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917506,983042,1048578,1114114,1179650,1245186,1310722,1376257,1441794,1507330,1572866,1638401,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636097,5701633,5767169,5832706,5898241,5963777,6029314,6094849,6160385,6225921,6291457,6356994,6422529,6488066,6553601,6619137,6684673,6750209,6815746,6881282,6946818,7012354,7077889,7143426,7208962,7274497,7340034,7405570,7471106,7536642,7667714,7733249,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847361,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568257,9633794,9699330,9764865,9830402,9895938,9961474,10027010,10092546,10158082,10223617,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747905,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11403266,11337730,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942209,15007746,15073282,15138817,15204354,15269890,15335426,15400962,15466498,15532033,15597570,15663106,15728642,15794178,15859714,15925250,15990785,16056322,16121858,16187394,16252929,16318466,16384001,16449538,16515074,16580609,16646146,16711682,16777217,16842754,16908290,16973825,17039362,17104898,17170433,17235970,17301506,17367042,17432578,17498113,17563649,17629185,17694721,17760258,17825794,17891329,17956866,18022401,18087937,18153474,18219010,18284546,18350082,18415618,18481153,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070977,19136514,19202050,19267585,19333122,19464193,19529730,19595265,19660802,19726337,19791874,19857410,19922946,19988481,20054017,20119554,20185090,20250626,20316162,20381697,20447233,20512770,20578306,20643842,20709378,20774913,20840449,20905986,20971522,21037057,21102594,21168130,21233666,21299201,21364737,21430274,21495810,21561345,21626882,21692417,21757954,21823490,21889025,21954562,22020098,22085634,22151170,22216705,22282242,22347778,22413314,22478849,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890],"networkingmanagercomponents":[6422529,6553601,6619137,6684673,6750209,7077889,7274497,12124164,12189700,12517381,12582917,12648453,12713989,12779524,12910597,12976132,13041668,13238274,13369349,13434885,13500421,13631492,13762565,13828100,13893636,13959170,14024708,14090243,14155781,14221317,14286852,14352389,14417925,14483458,14548995,14614532,14680068,14745605,14811140,14876676,15007746,15073284,15138817,15204356,15269892,15335429,15400964,15466501,15532033,15597572,15663106,15728645,15794180,15859717,15925253,16056324,16121858,16187396,16318466,16384001,16449538,16515075,16580609,16646146,16711685,16777217,16842757,16908290,17039364,17104898,17235972,17301507,17367042,17432578,17498113,17760258,17825797,18415618,18481153,18743298,18808835,18874371,19070977,19267585,19529730,20119555,20971522,21430276,21954562,22151172,22347779,22544387,22609922,22740995,22872067,23003139,23396356,23461891],"networkpoolmanager":[6553603,16580609,17760258,18415618,18743298,18874371,22740996],"new":[6815745,6946817,7208961,7405569,7667713,7798785,8126465,8454145,8781825,9043969,10092545,10420225,10485761,11141121,11337729,11599873,11796481,12255233,13959169,14548993,16318465,17170434,18350081,19005441,19660802,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"net":[17956865],"networkedclient":[655364,3145730,3342338,3735554,3997699,6094851,8454148,17694722,18939906,21233672],"networktransport":[720897,2293761,17694721,18350081,20643841],"needed":[720897,2752513,20643841],"networkedprefabs":[720897,2490370,20643841],"networkednavmeshagent":[851971,4587522,4784130,5046274,5177346,5439490,9764867,11534338,11796484,16252929,21561347,23134209,23265286],"networkconfig":[720899,1376257,1441794,1572866,1769474,1835010,1900546,1966082,2031618,2097154,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3211266,3276802,3538946,3801090,4718596,5963779,7471108,7995396,8126468,17694721,20643846,22675457],"networktime":[20840449,21495810,22675457],"newownerclientid":[10420226],"networkedprefabname":[524289,3866626,21757953],"networkedanimator":[786435,4194307,4259843,4390914,4521987,4653059,4915203,5242883,5373954,10223619,10944515,11141124,11927556,12058626,12386306,12845060,13303811,16252929,18087938,21299203,22413314,23134209,23199750],"networking":[8650753,8847361,23134209],"null":[10878978],"networked":[720897,3276801,6553601,15990786,17760257,20643841,21757953,22740993,23134209],"networkedobject":[524291,3145730,3866626,6553601,8323074,9568259,10354690,10420226,10485764,11075586,11730946,15990785,18153473,18219011,18546689,18612226,18677762,18743300,19202050,19857410,20185090,20381700,20447236,20512770,20905986,21102597,21299204,21561348,21692420,21757959,22740993,23134212,23199748,23265284,23330820],"networkedtransport":[720897,1835009,20643841],"netobject":[18743298],"networkview":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"navmeshagents":[16252929,23265281],"networkingconfiguration":[1376257,4718593,5963778,7471105,7995393,20643842,22675457],"network":[9568258,10354689,11730945,16580610,20447234,20512769,20905985,21757956,22740993,22872065],"netid":[589827,1310722,1507330,2162690,5767173,7143426,7340035,7864325,7929858,8060930,8257546,8585226,8781829,9043973,16973831,17170438,17694721,17956868,19660813,19988483]} \ No newline at end of file +{"networkscenemanager":[6684675,16384001,16449538,20512772],"netwokrtime":[262145,2293761,19595265],"networkedprefab":[458755,720897,2818050,3538946,3997698,6291459,6815745,7995396,19398658,19660807,22675457],"networkstart":[8060930,11141122,11206658,11599873,12058626,12386306,15728642,17825794,22609921,22872066,22937602,23003138],"networkedtransform":[1245187,4849666,4980738,5242882,5373954,5505026,5636098,5701634,5963778,6225922,12058626,12320772,16121857,17825795,18481155,22609921,23003142],"networkingmanager":[393220,3407875,3932162,4063234,4128770,4194306,4325378,5046274,6881282,7864323,10420226,10485764,10551298,10682370,11075588,11272194,11534338,11796482,16056321,18219012,20119554,20185090,20250626,20316162,20381698,20709378,20971522,21168133,22741000],"nullable":[11075592],"networkid":[8781828,11141121,11599873,15728641,17760258,17825793,18153473,18284546,18481154,18612226,18743298,22020099,22609923,22675457,22872067,22937603,23003139],"networkedbehaviour":[655363,851969,917505,1245185,6356994,8060930,8454146,8519682,8585218,8650754,8781828,8847362,8912898,8978434,9109506,9306114,9371650,9437187,9502724,9568259,9699331,9764866,9895939,10027011,10092547,10158082,10289154,10616834,10747906,10878979,11010050,11141168,11337731,11403267,11599889,11665411,11862019,11993091,12124163,12451842,12582914,12976131,15728688,16056321,16646148,17367042,17498114,17760261,17825840,17891332,18284554,18350082,18481162,18612234,18939908,20643842,21102594,21233666,21430274,21561346,21757954,21823496,21889027,22020099,22151172,22216706,22282242,22609942,22872125,22937661,23003197],"networkedobjec":[524289,3211265,19922945],"namespace":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983042,1048578,1114114,1179650,1245185,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111809,5177346,5242882,5308417,5373954,5439490,5505026,5636098,5701634,5767169,5832705,5898241,5963778,6029313,6094849,6160385,6225922,6291457,6356994,6422530,6488065,6553601,6619138,6684673,6750209,6815746,6881282,6946818,7012354,7077889,7143425,7208961,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798785,7864321,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716289,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141121,11206658,11272194,11337730,11403266,11468802,11534338,11599873,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728641,15794178,15859714,15925250,15990786,16056321,16121857,16187394,16252929,16318466,16384001,16449538,16515073,16580609,16646145,16711682,16777218,16842754,16908289,16973826,17039361,17170434,17235969,17301506,17367041,17432577,17498113,17563650,17629185,17694722,17760257,17825793,17891329,17956865,18022401,18087938,18153473,18219009,18284545,18350081,18415618,18481153,18546690,18612225,18677761,18743298,18808834,18874369,18939905,19005442,19070978,19136514,19202049,19267586,19333121,19398657,19464193,19529730,19595266,19660802,19726338,19791873,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643841,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823489,21889026,21954562,22020098,22085634,22151169,22216706,22282241,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890],"networkingmanagercomponents":[6160385,6488065,6684673,6750209,7077889,7143425,7208961,12517380,12648452,12713989,12845061,12910597,13041669,13107205,13172738,13238276,13303812,13369346,13434884,13500420,13565957,13631493,13697029,13762563,13828100,13893634,13959172,14024706,14090244,14155780,14221315,14286850,14352389,14417925,14483461,14548997,14614532,14680069,14745604,14811139,14876676,14942212,15007748,15073283,15138820,15204356,15269893,15335426,15400965,15466500,15532034,15597572,15663106,15794179,15859717,15925251,15990789,16187396,16252929,16318468,16384001,16449538,16515073,16711683,16777221,16842757,16973829,17039361,17170436,17301506,17563650,17694722,18022401,18087938,18415621,18677761,18808836,18874369,19070978,19464193,19726338,19791873,19988485,20512771,20774916,20840450,20905987,21299202,21626882,21954562,22085634,23068676,23134211,23199748,23265284,23330819,23396355,23461891],"networkpoolmanager":[6488067,15532034,15663106,15925251,16384001,22085634,23461892],"new":[6946817,7274497,7405569,7733249,7995393,8126465,8192001,8257537,8323073,8388609,9502721,9633793,10354689,10485761,10813441,12189697,12320769,12779521,13893633,15073281,16908290,17301505,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20578305,21037058,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23199745,23265281],"net":[19005441],"networkedclient":[524292,3080194,3211266,3735555,4390914,6094851,8323076,19398658,19922952,20119554],"networktransport":[262145,2752513,19398657,19595265,19857409],"needed":[262145,2293761,19595265],"networkedprefabs":[262145,2818050,19595265],"networkednavmeshagent":[917507,4653058,4915202,5177346,6619138,7012354,11141123,12386306,12779524,16121857,18284547,22609921,22937606],"networkconfig":[262147,393217,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3145730,3276802,3342338,3604482,3670018,3932164,5898243,7536644,7929860,8126468,19398657,19595270,22740993],"networktime":[18219009,20971522,22740993],"newownerclientid":[9633794],"networkedprefabname":[720897,6815746,22675457],"networkedanimator":[851971,4259843,4456451,4521986,4587522,4718595,4784131,5439491,6422531,10944516,11206658,11468802,11730948,11927555,12189700,12255235,15728643,16121857,18612227,19333122,21692418,22609921,22872070],"networking":[8060929,11599873,22609921],"null":[11075586],"networked":[262145,2883585,6488065,16056322,19595265,22085633,22609921,22675457,23461889],"networkedobject":[720899,3211266,6488065,6815746,7798787,8781826,9633794,9830402,9961474,10223618,10354692,15663108,16056321,17760260,18153476,18284548,18481156,18546690,18612228,18743298,19267587,20054018,21889029,22020097,22216705,22347778,22413314,22478850,22544386,22609924,22675463,22872068,22937604,23003140,23461889],"networkedtransport":[262145,1638401,19595265],"netobject":[15663106],"networkview":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"navmeshagents":[16121857,22937601],"networkingconfiguration":[393217,3932161,5898242,7536641,7929857,19595266,22740993],"network":[7798786,9961473,10223617,16384002,18153474,18546689,18743297,20512769,22675460,23461889],"netid":[196611,1441794,1507330,2162690,5767173,7340034,7471114,7602181,7667722,8257541,8388613,9043971,9175042,9240578,16580615,16908294,17629187,19005444,19398657,21037069]} \ No newline at end of file diff --git a/docs/fti/FTI_111.json b/docs/fti/FTI_111.json index 6c76c5a..c8fe6f5 100644 --- a/docs/fti/FTI_111.json +++ b/docs/fti/FTI_111.json @@ -1 +1 @@ -{"ownerclientid":[18219010,18546690,20381697,20447233,21299201,21561345,21692417,21757953,23134209,23199745,23265281,23330817],"obj":[7864322],"ongainedownership":[8716290,8847361,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"outside":[1376257,4456449,22675457],"optional":[7995393,10878978,12517377,12648449,12713985,13369345,13434881,13500417,13762561,14155777,14221313,14352385,14417921,14745601,15335425,15466497,15728641,15859713,15925249,16711681,16842753,17760257,17825793,18808834,20119554],"ownedobjects":[655361,3145730,21233665],"onserverstarted":[1376257,4325378,22675457],"objects":[6553601,17498113,17760257,18415617,22544385,22609921,22740993],"onlostownership":[8847361,8978434,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"ownership":[8716289,8847362,8978433,9568257,9764866,10223618,11075585,14942210,21757953,23134210,23199746,23265282,23330818],"onclientdisconnectcallback":[1376257,6881282,22675457],"operators":[16973826,19660801],"overrides":[5767170,9764865,10223617,14942209,19660802,23199745,23265281,23330817],"owns":[8847362,9764866,10223618,12320769,13172737,14942210,18153473,18546689,20381699,21102593,21299203,21364738,21561347,21692419,23134213,23199749,23265285,23330821],"override":[7340033,7864321,11534337,11993089,12058625,15990785,23134209],"object":[720897,2424833,5636102,5701636,5767172,5898244,5963782,6094854,6160390,6225926,6291462,6422534,6553603,6750212,7340033,7733262,7864325,8323073,8716289,8847383,8978433,9437185,9568271,9764887,9830401,10223639,10289153,10354690,10420225,10551297,10747918,11075585,12320769,13172737,14942231,15990785,17694722,17760257,18350088,18415617,18612225,18677762,18874371,19005447,19202049,19660804,19791874,19857410,20185089,20250625,20381701,20447243,20512769,20643849,20840450,20905985,21037058,21233671,21299205,21364738,21430279,21561349,21626887,21692421,21757980,21889026,22020103,22151173,22216706,22347777,22544385,22675474,22740996,22806533,22872065,22937605,23003137,23068691,23134238,23199774,23265310,23330846,23396353,23461889],"operator":[8257538,8585218],"order":[7077891,16121858,18808833,20119553,22347779],"original":[7077890,13959169,15532033,18808833,20119553,22347778,23461889],"obsolete":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,20381713,20447249,20840465,21037073,21299217,21561361,21692433,21757970,22675474,23068690,23134226,23199762,23265298,23330834],"owned":[655361,3145729,19202049,20250625,20381697,20447233,21233665,21299201,21561345,21692417,21757953,23134209,23199745,23265281,23330817],"owner":[327681,917505,8847364,9437185,9568258,9764868,9830401,10223620,10289153,10354689,10420226,10551297,14942212,18219009,20447233,21757955,21889026,22216706,22937601,23134212,23199748,23265284,23330820],"overload":[8388609,8519681,8781825,8912897,9043969,9109505,9175041,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10158081,10289153,10551297,10616833,10682369,10944513,11206657,11468801,12320769,12451841,12582913,12910593,13107201,13172737,13303809,13565953,13697025,15663105,16515073,16646145,17104897,17170433,17629185,17891329,18022401,18087937,18481153,19070977,19267585,19464193,20054017,20774913,21364737,21889025,22216705,22478849],"onclientconnectedcallback":[1376257,5832706,22675457],"occur":[720897,1966081,20643841],"occurred":[7602177]} \ No newline at end of file +{"ownerclientid":[17760257,18153473,18284545,18481153,18612225,19267586,22216706,22609921,22675457,22872065,22937601,23003137],"obj":[7602178],"ongainedownership":[8454146,11141121,11599873,15728641,17825793,22609921,22872065,22937601,23003137],"outside":[393217,4325377,22740993],"optional":[7929857,11075586,12845057,13041665,13107201,13565953,13631489,13697025,14352385,14417921,14483457,14548993,14680065,15269889,15400961,15794178,15859713,15990785,16711682,16777217,16842753,16973825,18415617,19988481,22085633],"ownedobjects":[524289,3211266,19922945],"onserverstarted":[393217,4063234,22740993],"objects":[6488065,15532033,18677761,21954561,22085633,23396353,23461889],"onlostownership":[8585218,11141121,11599873,15728641,17825793,22609921,22872065,22937601,23003137],"ownership":[7798785,8454145,8585217,9830401,11141122,11599874,15728642,17825794,22609922,22675457,22872066,22937602,23003138],"onclientdisconnectcallback":[393217,5046274,22740993],"operators":[16580610,21037057],"overrides":[5767170,11141121,15728641,17825793,21037058,22872065,22937601,23003137],"owns":[11141122,11337729,11599874,11862017,15728642,16646146,17760259,17825794,18284547,18481155,18612227,21889025,22020097,22216705,22609925,22872069,22937605,23003141],"override":[7602177,9043969,11206657,12058625,12386305,16056321,22609921],"object":[262145,3342337,5111814,5308422,5767172,5832708,5898246,6029316,6094854,6160390,6291462,6488067,6553606,6750212,7602181,7798799,7864334,8454145,8585217,8716302,8781825,9043969,9306113,9568257,9633793,9830401,10092545,10223618,10616833,11141143,11337729,11599895,11862017,15532033,15728663,15925251,16056321,16646146,17367042,17760261,17825815,17891330,17956866,18153483,18219010,18284549,18481157,18546689,18612229,18743297,19136517,19398658,19529733,19595273,19660807,19857416,19922951,20054017,20447239,20512769,20578311,20905985,21037060,21430274,21561345,22085633,22347778,22413313,22478850,22544385,22609950,22675484,22741010,22806547,22872094,22937630,23003166,23068673,23134209,23199751,23265285,23330817,23396353,23461892],"operator":[7471106,7667714],"order":[7077891,15794177,16711681,20840450,23330819],"original":[7077890,13893633,15794177,16711681,18874369,23134209,23330818],"obsolete":[7798785,7864321,8716289,11141121,11599873,15728641,17760273,17825793,17956881,18153489,18219025,18284561,18481169,18612241,22609938,22675474,22741010,22806546,22872082,22937618,23003154],"owned":[524289,3211265,17760257,18153473,18284545,18481153,18612225,19922945,21561345,22413313,22609921,22675457,22872065,22937601,23003137],"owner":[327681,1376257,7798786,9306113,9568257,9633794,10092545,10223617,10616833,11141124,11599876,15728644,17367042,17825796,17891330,18153473,19267585,19529729,22609924,22675459,22872068,22937604,23003140],"overload":[8257537,8388609,8650753,8847361,8978433,9109505,9306113,9371649,9437185,9568257,9699329,9764865,9895937,10027009,10092545,10158081,10289153,10616833,10747905,10878977,11010049,11337729,11403265,11665409,11862017,11927553,11993089,12124161,12255233,12451841,12582913,12713985,12910593,12976129,13172737,13762561,16646145,16908289,17039361,17367041,17498113,17891329,18350081,18939905,19333121,19464193,19791873,20643841,21299201,21626881,21823489,22151169,22282241],"onclientconnectedcallback":[393217,4194306,22740993],"occur":[262145,2555905,19595265],"occurred":[5570561]} \ No newline at end of file diff --git a/docs/fti/FTI_112.json b/docs/fti/FTI_112.json index fab3355..16f5ec2 100644 --- a/docs/fti/FTI_112.json +++ b/docs/fti/FTI_112.json @@ -1 +1 @@ -{"port":[458754,720897,2293761,4128771,20643841,22020098],"prevent":[720897,2818049,20643841],"parameters":[7471105,7864321,7995393,8192001,8257537,8323073,8388609,8519681,8585217,8781825,8912897,9043969,9109506,9175041,9240577,9306114,9371649,9437185,9502722,9633793,9699329,9830401,9895938,9961474,10027009,10158082,10289154,10354689,10420225,10551298,10616834,10682370,10878977,10944513,11206657,11468801,11927553,12320769,12451841,12517377,12582913,12648449,12713985,12845057,12910593,13107202,13172738,13303809,13369345,13434881,13500417,13565954,13697026,13762561,13959170,14024705,14155777,14221313,14286849,14352385,14417921,14483458,14548993,14614529,14745601,14811137,15204353,15335425,15400961,15466497,15597569,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16449537,16515073,16646145,16711681,16842753,17039361,17104897,17235969,17367041,17432577,17760257,17825793,18415617,18743297,18808833,18874369,19529729,20119553,20971521,21954561],"prototyping":[786433,851969,1638401,4194307,4259843,4390914,4521987,4587522,4653059,4784130,4915203,4980738,5046274,5111810,5177346,5242883,5308418,5373954,5439490,5570562,6029314,6356994,6488066,7012354,7536642,9764865,10223617,10944515,11141122,11534338,11796482,11927556,11993090,12058626,12255234,12386306,12845060,13303811,14942209,16252929,18087937,21299201,21561345,21692417,22413314,23134211,23199747,23265283,23330819],"percentage":[851969,5046273,23265281],"param4":[786433,4194307,23199745],"points":[21037058,22085633,22282241,23068674],"public":[720897,917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080194,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8454145,8585217,8650753,8716289,8781825,8978433,9043969,10354689,10420225,10485761,10813441,10878977,10944513,11010049,11075585,11141121,11272193,11403265,11337729,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12386305,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13238273,13303809,13369345,13434881,13500417,13631489,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643842,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"param3":[786433,5242883,23199745],"prefab":[262146,3932163,17760257,21626882],"pos":[10878979],"proximityrange":[786433,851969,1638401,4390914,4587522,6356994,23199745,23265281,23330817],"poolid":[18612227,20447234,21757954],"pending":[720897,3538945,20643841],"persists":[7602177],"private":[720897,2621441,20643841],"particlesystem":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"param":[7471105,7995393,8323073,10878978,10944513,11927553,12517377,12582913,12648449,12713985,12845058,12910593,13303809,13369345,13434881,13500417,13762561,14024705,14155778,14221314,14286849,14352385,14417921,14548993,14614529,14745602,14811137,15204353,15335426,15400961,15466498,15597569,15728642,15794177,15859713,15925250,16056321,16187393,16515073,16711682,16842754,17039361,17235969,17825794],"purposes":[16777217,23003137],"param1":[786433,4653059,23199745],"playerprefab":[262146,3407875,21626882],"probably":[720897,2752513,20643841],"protocolversion":[720897,2949122,20643841],"part":[6553601,18612225,18743297,20185089,20447234,21757954,22740993],"personal":[18677761,19791873,20381697,20447233,21299201,21561345,21692417,21757953,23134209,23199745,23265281,23330817],"poolname":[17760258,18415618,18874370],"prototype":[16252931,23199745,23265281,23330817],"position":[720897,1638401,3014657,6553601,7536641,18874372,20643841,22740993,23330817],"parts":[5963777,7077889,7995393,20643841,21954562,22347777],"param2":[786433,4915203,23199745],"player":[18677761,19202049,19791873,19857409,20250625,20381698,20447235,21299202,21561346,21692418,21757955,23134210,23199746,23265282,23330818],"properties":[17498114,19595266,19660801,19726338,19988482,20381698,20447234,20840450,21037058,21299202,21561346,21692418,21757953,22544385,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"param0":[786433,4259843,23199745],"proximity":[786434,851970,1638402,4390913,4587521,5373953,5439489,6356993,6488065,23199746,23265282,23330818],"protected":[8192001,8323073,8388609,8519681,8912897,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10551297,10616833,10682369,11206657,11468801,12320769,12451841,13107201,13172737,13565953,13697025,18284545,19136513,20709377],"pool":[6553604,17760259,18415618,18743297,18874370,20185089,20447233,21757953,22740996],"protocol":[720897,2949121,20643841],"particleemitter":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"page":[7602177,19398660],"process":[720897,2818049,20643841],"param5":[786433,4521987,23199745],"prefabs":[720897,2490369,20643841],"property":[17956866,18153474,18219010,18284546,18546690,18612226,18677762,18939906,19136514,19202050,19333122,19791874,19857410,19922946,20185090,20250626,20316162,20512770,20578306,20709378,20905986,21102594,21168130,21495810,21823490,22085634,22282242,22413314,22609922],"properly":[7077890,18808833,20119553,22347778],"processed":[720897,2555905,20643841],"playerobject":[655362,3735555,21233666],"pools":[16580609,22740993],"preliminary":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"passthrough":[196610,720897,1441793,1703939,19005442,20643841]} \ No newline at end of file +{"port":[262145,786434,2752513,3866627,19595265,20447234],"prevent":[262145,2686977,19595265],"parameters":[7471105,7536641,7602177,7667713,7929857,8257537,8388609,8519681,8650753,8781825,8847361,8912897,8978434,9109505,9306113,9371649,9437185,9568257,9633793,9699329,9764866,9895938,10027009,10092546,10158082,10223617,10289154,10616834,10747905,10878977,10944513,11010049,11075585,11337729,11403266,11665409,11730945,11862018,11927553,11993090,12124162,12255233,12451842,12582914,12713985,12845057,12910593,12976130,13041665,13107201,13500417,13565953,13631489,13697025,13762561,13828097,13893634,14286850,14352385,14483457,14417921,14548993,14680065,14942209,15007745,15073281,15204353,15269889,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17563649,17694721,18087937,18415617,18808833,19070977,19726337,19988481,20774913,20840449,21299201,21626881,22085633],"prototyping":[851969,917505,1245185,4259843,4456451,4521986,4587522,4653058,4718595,4784131,4849666,4915202,4980738,5177346,5242882,5373954,5439491,5505026,5636098,5701634,5963778,6225922,6422531,6619138,7012354,10944516,11141121,11206658,11468802,11730948,11927555,12058626,12189698,12255235,12320770,12386306,12779522,15728641,16121857,17825793,18284545,18481153,18612225,19333121,21692418,22609923,22872067,22937603,23003139],"percentage":[917505,4653057,22937601],"param4":[851969,4456451,22872065],"points":[17956866,21364737,21495809,22806530],"public":[262145,983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276802,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,6946817,7012353,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,9043969,9175041,9240577,9633793,9830401,9961473,10223617,10354689,10420225,10485761,10551297,10682369,10813441,10944513,11075585,11206657,11272193,11468801,11534337,11730945,11796481,11927553,12058625,12189697,12255233,12320769,12386305,12517377,12648449,12713985,12779521,12845057,12910593,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17301505,17563649,17694721,18087937,18415617,18546689,18743297,18808833,19005441,19070977,19136513,19267585,19529729,19595266,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"param3":[851969,6422531,22872065],"prefab":[458754,3997699,19660802,22085633],"pos":[11075587],"proximityrange":[851969,917505,1245185,4521986,5701634,6619138,22872065,22937601,23003137],"poolid":[18153474,20054019,22675458],"pending":[262145,3604481,19595265],"persists":[5570561],"private":[262145,2490369,19595265],"particlesystem":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"param":[7536641,7929857,8781825,10944513,11075586,11730946,11927553,12255233,12713985,12845057,12910593,13041665,13107201,13500417,13565953,13631489,13697025,13762561,13828097,14352385,14483457,14417921,14548994,14680066,14942209,15007745,15073281,15204353,15269890,15400962,15466497,15597569,15859714,15990786,16187393,16318465,16777217,16842754,16973826,17170433,18415618,18808833,19988482,20774913],"purposes":[16515073,20905985],"param1":[851969,4718595,22872065],"playerprefab":[458754,3538947,19660802],"probably":[262145,2293761,19595265],"protocolversion":[262145,3014658,19595265],"part":[6488065,15663105,18153474,20054017,22544385,22675458,23461889],"personal":[17760257,18153473,18284545,18481153,18612225,21430273,22347777,22609921,22675457,22872065,22937601,23003137],"poolname":[15532034,15925250,22085634],"prototype":[16121859,22872065,22937601,23003137],"position":[262145,1245185,2621441,5505025,6488065,15925252,19595265,23003137,23461889],"parts":[5898241,7077889,7929857,19595265,19726338,23330817],"param2":[851969,5439491,22872065],"player":[17760258,18153475,18284546,18481154,18612226,21430273,21561345,22347777,22413313,22478849,22609922,22675459,22872066,22937602,23003138],"properties":[17235970,17432578,17629186,17760258,17956866,18153474,18219010,18284546,18481154,18612226,18677762,19136513,19529729,21037057,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23396353],"param0":[851969,4259843,22872065],"proximity":[851970,917506,1245186,4521985,4587521,5177345,5242881,5701633,6619137,22872066,22937602,23003138],"protected":[8519681,8650753,8781825,8847361,8912897,8978433,9109505,9306113,9371649,9437185,9502721,9568257,9699329,9764865,9895937,10027009,10092545,10158081,10289153,10616833,10747905,10878977,11010049,11337729,11403265,11665409,11862017,11993089,12124161,12451841,12582913,12976129,21102593,21233665,21757953],"pool":[6488068,15532034,15663105,15925250,18153473,22085635,22544385,22675457,23461892],"protocol":[262145,3014657,19595265],"particleemitter":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"page":[5570561,17104900],"process":[262145,2686977,19595265],"param5":[851969,4784131,22872065],"prefabs":[262145,2818049,19595265],"property":[18546690,18743298,19005442,19267586,20054018,20119554,20185090,20250626,20316162,20381698,20709378,20971522,21102594,21168130,21233666,21364738,21430274,21495810,21561346,21692418,21757954,21889026,21954562,22020098,22216706,22347778,22413314,22478850,22544386],"properly":[7077890,15794177,16711681,23330818],"processed":[262145,2424833,19595265],"playerobject":[524290,4390915,19922946],"pools":[16384001,23461889],"preliminary":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"passthrough":[262145,589826,1114115,2359297,19595265,20578306]} \ No newline at end of file diff --git a/docs/fti/FTI_113.json b/docs/fti/FTI_113.json index 7bf7af1..6157522 100644 --- a/docs/fti/FTI_113.json +++ b/docs/fti/FTI_113.json @@ -1 +1 @@ -{"qostype":[1179650],"queue":[720897,2555905,20643841],"quaternion":[5505026,10878980,18874371],"qos":[131073,1179649,18350081]} \ No newline at end of file +{"qostype":[1572866],"queue":[262145,2424833,19595265],"quaternion":[6881282,11075588,15925251],"qos":[131073,1572865,19857409]} \ No newline at end of file diff --git a/docs/fti/FTI_114.json b/docs/fti/FTI_114.json index 9ecda33..d5a1489 100644 --- a/docs/fti/FTI_114.json +++ b/docs/fti/FTI_114.json @@ -1 +1 @@ -{"readdouble":[6422529,13041668,21430273],"rtt":[7274497,17104898,19267585,22544385],"recommended":[720897,2752513,20643841],"readushortarray":[6422529,13762565,21430273],"readdoublearray":[6422529,13434885,21430273],"readfrom":[14548995],"readintarray":[6422529,15859717,21430273],"rigidbody2d":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"rsapublickey":[720897,3080194,20643841],"readfloatarray":[6422529,14417925,21430273],"receive":[720898,2359297,2555905,20643842],"readbyte":[6422529,12189700,21430273],"readlongarray":[6422529,12648453,21430273],"running":[10747907,11010049,11665409,11862017,19333121,20316161,20578305,20840451,22675462],"range":[786433,851969,4390913,4587521,23199745,23265281],"readshortarray":[6422529,14352389,21430273],"random":[6684673,17367041,23003137],"readuint":[6422529,15269892,21430273],"receivetickrate":[720898,2555906,2818049,20643842],"readshort":[6422529,13893636,21430273],"rot":[10878979],"rsaprivatekey":[720897,2621442,20643841],"require":[7077889,20119553,22347777],"readint":[6422529,15073284,21430273],"readushort":[6422529,13631492,21430273],"rotation":[6553601,18874372,22740993],"readstring":[6422529,14680068,21430273],"readulongarray":[6422529,13369349,21430273],"ref":[16121857,16515073,17432577,18808833,20119553,20971521,21954561],"return":[7143425,7340033,7471105,7864321,7929857,7995393,8060929,8257537,8323073,8585217,9240577,11927553,12124161,12189697,12517377,12582913,12648449,12713985,12779521,12910593,12976129,13041665,13369345,13434881,13500417,13631489,13762561,13828097,13893633,13959170,14352385,14417921,14483457,14680065,14876673,15073281,15269889,15663105,15859713,16121857,16449537,16515073,16908289,17367041,17432577,18808833,18874369,20119553,20971521,21954561],"represents":[5767169,7929857,17694725,18350081,19005441,19660802,20840449,21495809,21626881,22020097,22675457],"releases":[15007745,22151169],"resetparameteroptions":[10223617,12386306,23199745],"rigidbody":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"redirected":[1],"readsbyte":[6422529,12976132,21430273],"resources":[15007745,22151169],"replicated":[17563650,20840449,21495809,22675457,22806529,22937601],"runineditmode":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"requested":[19398657],"regeneratersakeys":[1376257,4456450,22675457],"regenerating":[1376257,4456449,22675457],"registermessagehandler":[8847361,9240578,9764865,10223617,14942209,23134209,23199745,23265281,23330817],"readbytearray":[6422529,12713989,21430273],"rotate":[1638401,5570561,23330817],"ready":[1376257,4325377,8650753,8847361,22675457,23134209],"readsbytearray":[6422529,13500421,21430273],"readlong":[6422529,12124164,21430273],"requires":[7077889,18808833,22347777],"registeredscenes":[720897,3276802,20643841],"runinbackground":[1376257,4849666,22675457],"readuintarray":[6422529,12517381,21430273],"renderer":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"register":[9240577],"readbool":[6422529,14876676,21430273],"rsa":[720898,1376257,2621441,3080193,4456449,20643842,22675457],"readfloat":[6422529,13828100,21430273],"removes":[9568257,11075585,21757953],"removeownership":[9568257,11075586,21757953],"received":[9240577],"returns":[5767170,6750209,7471105,7929857,7995393,8060929,8323073,11927553,12124161,12189697,12517377,12582913,12648449,12713985,12779521,12910593,12976129,13041665,13369345,13434881,13500417,13631489,13762561,13828097,13893633,14352385,14417921,14680065,14876673,15073281,15269889,15663105,15859713,18808833,18874369,19070977,19660802,20119553,22151169],"request":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"reference":[65537,131074,196610,262146,327682,458754,393218,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602177,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990785,16056322,16121858,16187394,16252929,16318466,16384001,16449538,16515074,16580609,16646146,16711682,16777217,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563649,17629186,17694721,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398657,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890],"registers":[8847361,9240577,9764866,10223618,11534337,11993089,12058625,14942210,23134209,23199746,23265282,23330818],"readulong":[6422529,12779524,21430273],"registered":[720897,2883585,8650753,8847361,20643841,23134209]} \ No newline at end of file +{"readdouble":[6160385,13238276,23199745],"rtt":[7143425,17039361,21626882,23396353],"recommended":[262145,2293761,19595265],"readushortarray":[6160385,14417925,23199745],"readdoublearray":[6160385,13565957,23199745],"readfrom":[15073283],"readintarray":[6160385,16777221,23199745],"rigidbody2d":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"rsapublickey":[262145,3276802,19595265],"readfloatarray":[6160385,14483461,23199745],"receive":[262146,2228225,2424833,19595266],"readbyte":[6160385,12517380,23199745],"readlongarray":[6160385,13107205,23199745],"running":[7864323,10420225,11534337,11796481,18219011,20185089,20316161,20381697,22740998],"range":[851969,917505,4521985,6619137,22872065,22937601],"readshortarray":[6160385,14352389,23199745],"random":[7208961,19070977,20905985],"readuint":[6160385,15138820,23199745],"receivetickrate":[262146,2424834,2686977,19595266],"readshort":[6160385,13959172,23199745],"rot":[11075587],"rsaprivatekey":[262145,2490370,19595265],"require":[7077889,16711681,23330817],"readint":[6160385,14745604,23199745],"readushort":[6160385,14155780,23199745],"rotation":[6488065,15925252,23461889],"readstring":[6160385,14876676,23199745],"readulongarray":[6160385,13697029,23199745],"ref":[13762561,15794177,16711681,17694721,18087937,19726337,20840449],"return":[7340033,7471105,7536641,7602177,7667713,7929857,8781825,8912897,9043969,9175041,9240577,10944513,12517377,12648449,12713985,12845057,12910593,13041665,13107201,13172737,13238273,13303809,13434881,13565953,13631489,13697025,13762561,13893634,13959169,14024705,14090241,14155777,14286849,14352385,14483457,14417921,14614529,14745601,14876673,15138817,15794177,15925249,16711681,16777217,17563649,17694721,18087937,19070977,19726337,20840449],"represents":[5767169,9175041,18219009,19398661,19660801,19857409,20447233,20578305,20971521,21037058,22740993],"releases":[15335425,23265281],"resetparameteroptions":[11468802,15728641,22872065],"rigidbody":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"redirected":[1],"readsbyte":[6160385,13434884,23199745],"resources":[15335425,23265281],"replicated":[18219009,19136513,19202050,19529729,20971521,22740993],"runineditmode":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"requested":[17104897],"regeneratersakeys":[393217,4325378,22740993],"regenerating":[393217,4325377,22740993],"registermessagehandler":[8912898,11141121,11599873,15728641,17825793,22609921,22872065,22937601,23003137],"readbytearray":[6160385,12845061,23199745],"rotate":[1245185,4980737,23003137],"ready":[393217,4063233,8060929,11599873,22609921,22740993],"readsbytearray":[6160385,13631493,23199745],"readlong":[6160385,12648452,23199745],"requires":[7077889,15794177,23330817],"registeredscenes":[262145,2883586,19595265],"runinbackground":[393217,4128770,22740993],"readuintarray":[6160385,13041669,23199745],"renderer":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"register":[8912897],"readbool":[6160385,14614532,23199745],"rsa":[262146,393217,2490369,3276801,4325377,19595266,22740993],"readfloat":[6160385,14090244,23199745],"removes":[7798785,9830401,22675457],"removeownership":[7798785,9830402,22675457],"received":[8912897],"returns":[5767170,6750209,7536641,7929857,8781825,9175041,9240577,10944513,12517377,12648449,12713985,12845057,12910593,13041665,13107201,13172737,13238273,13303809,13434881,13565953,13631489,13697025,13959169,14090241,14155777,14352385,14417921,14483457,14614529,14745601,14876673,15138817,15794177,15925249,16711681,16777217,19791873,21037058,23265281],"request":[983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,6946817,7012353,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17301505,17563649,17694721,18087937,18415617,18546689,18743297,18808833,19005441,19070977,19136513,19267585,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"reference":[65537,131074,196610,262146,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570561,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056321,16121857,16187394,16252929,16318466,16384001,16449538,16515073,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104897,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202049,19267586,19333122,19398657,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890],"registers":[8912897,11141122,11206657,11599873,12058625,12386305,15728642,17825794,22609921,22872066,22937602,23003138],"readulong":[6160385,13303812,23199745],"registered":[262145,2949121,8060929,11599873,19595265,22609921]} \ No newline at end of file diff --git a/docs/fti/FTI_115.json b/docs/fti/FTI_115.json index 4df5dea..fcdc602 100644 --- a/docs/fti/FTI_115.json +++ b/docs/fti/FTI_115.json @@ -1 +1 @@ -{"switches":[6619137,19529729,22872065],"simulationobjects":[17498113,22544385,22609922],"source":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"sendtoserver":[8847362,9764866,10223618,11468803,13565955,14942210,22478851,23134210,23199746,23265282,23330818],"sendspersecond":[1638401,7012354,23330817],"sendtoclienttarget":[8847362,9699331,9764866,10158083,10223618,14942210,20054019,23134210,23199746,23265282,23330818],"sort":[65537],"syntax":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"sets":[1376258,4063233,4849665,21299201,22413313,22675458,23199745],"stops":[10747907,11010049,11665409,11862017,22675459],"syncronized":[20840449,21495809,22675457],"specified":[5767169,7864322,8257538,8585218,16973828,19660805],"servertransports":[720897,3211266,20643841],"sealed":[21757953,22151169],"scenes":[16580609,22872065],"sendmessageupwards":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820],"spawnwithownership":[9568257,10354690,21757953],"sendtoclients":[8847366,8912899,9175043,9306115,9371651,9764870,9895939,10223622,10682371,14942214,17629191,23134214,23199750,23265286,23330822],"stopallcoroutines":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"secondsago":[16646146],"sendtononlocalclients":[8847362,9437187,9764866,10223618,10551299,14942210,21889027,23134210,23199746,23265282,23330818],"spawns":[6553601,9568258,10354689,11730945,18874369,21757954,22740993],"sendmessageoptions":[7733254,8847366,9568262,9764870,10223622,10747910,14942214,21757958,22675462,23068678,23134214,23199750,23265286,23330822],"serialize":[6750209,14483460,15532033,16908289,22151169,23461889],"scenename":[19529730],"synced":[327681,917505,20447233,20905985,21757953,22937601],"spawn":[9568257,11730946,18874370,21757953],"second":[720899,1638402,1966081,2555905,3538945,5308417,7012353,8257537,8585217,20643843,23330818],"snapdistance":[1638401,7536642,23330817],"stored":[21037057,22282241,23068673],"sendtononlocalclientstarget":[8847362,9764866,9830403,10223618,10289155,14942210,22216707,23134210,23199746,23265282,23330818],"sever":[720897,3211265,20643841],"syncvar":[327681,1048577,22937601],"stopcoroutine":[7733251,8847363,9568259,9764867,10223619,10747907,14942211,21757955,22675459,23068675,23134211,23199747,23265283,23330819],"sorry":[7602177,19398657],"search":[65537,19398657],"signed":[720897,3801089,20643841],"serializer":[13238273,15532033,23461889],"setup":[8650753,8847361,23134209],"switch":[19529729],"stopclient":[10747905,11665410,22675457],"send":[720898,1638402,1966081,2031617,5570561,6029313,8388610,8519682,8912897,9109507,9175042,9306114,9371650,9437185,9502723,9633794,9699330,9830401,9895939,9961474,10027009,10158083,10289154,10551298,10616835,10682371,11206657,11468801,12320769,12451841,13107202,13172738,13565954,13697026,20643842,23330818],"structures":[7340033,17694721],"spawnableprefabindex":[17760258],"servernetid":[17956867,19660802,19988482],"sent":[720897,1638402,3538945,5570561,6029313,20643841,23330818],"single":[3014657,3670017,4390913,4587521,4784129,5046273,5570561,6029313,6356993,7012353,7274497,7536641,13828097,14417921,16187395,16646146,16842756,19267585,21495809,22085633,22544385],"signing":[720898,2621441,3080193,20643842],"stophost":[10747905,11862018,22675457],"set":[1376257,4849665,8781826,22413313,22675457],"setparameterautosend":[10223617,12845060,23199745],"spawnpoolobject":[6553601,18874371,22740993],"spawnable":[720897,2490369,20643841],"subject":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"serialized":[8847368,9764872,9895937,10223624,10289153,10551297,10616833,10682369,13107201,13565953,13697025,14483457,14942216,17629186,17891329,18022401,20774913,21889025,22216705,22478849,23134216,23199752,23265288,23330824],"sha256":[5963778,7471105,7995393,20643842],"syncing":[16252931,21299201,22413313,23199746,23265281,23330817],"serializableattribute":[18350081,19005441,20643841,21626881,22020097],"scene":[720897,2097153,6619137,19529730,20643841,22872065],"spawned":[20447233,20512769,21757953],"spawning":[720897,2424833,20643841],"syncedvar":[327684,393217,720897,786433,851969,917507,1048578,1638401,1966081,3670017,5898243,6946820,17563649,19726339,20643841,22937607,23134209,23199745,23265281,23330817],"socket":[458753,3473409,22020097],"salt":[6684674,16449538,17367042,23003138],"starts":[10747908,10813441,10878977,11272193,11403265,22675460],"startclient":[10747905,10813442,22675457],"short":[13893633,14352385,14614529,15335425],"sendtolocalclienttarget":[8847362,9764866,10223618,12320771,13172739,14942210,21364739,23134210,23199746,23265282,23330818],"sendtoservertarget":[8847362,9764866,10223618,12451843,13107203,14942210,18022403,23134210,23199746,23265282,23330818],"stopserver":[10747905,11010050,22675457],"skippadded":[6422529,14090243,21430273],"sbyte":[12976130,13500418,14221317,15794180],"switchscene":[6619137,19529730,22872065],"startclientwebsocket":[10747905,11272194,22675457],"site":[7602177],"size":[720898,2359298,6750209,16908290,17760258,18808833,20119553,20643842,22151169],"string":[983042,1048578,1114114,1769474,2621442,3080194,3276802,3604482,3866626,4194306,4259842,4521986,4653058,4915202,5242882,7733266,8192002,8388614,8519686,8847434,8912902,9109510,9175046,9240578,9306118,9371654,9437190,9502726,9568274,9633798,9699334,9764938,9830406,9895942,9961478,10027014,10158086,10223691,10289158,10551302,10616838,10682374,10747922,10944516,11206662,11468806,12320774,12451846,13107206,13172742,13565958,13697030,14680066,14942282,15597572,17629196,17760258,17891332,18022404,18087937,18415618,18874371,19464204,19529730,20054020,20774916,21364740,21757970,21889028,22216708,22478852,22675474,23068690,23134282,23199819,23265354,23330890],"sendtickrate":[720897,3538946,20643841],"start":[17694721,20643841],"server":[1376257,1638401,4325377,5111809,6553604,6619137,8388609,8519681,8847388,8912897,9109505,9175041,9306113,9371649,9437185,9502721,9568260,9633793,9699329,9764892,9830401,9895937,9961473,10027009,10158081,10223644,10289153,10354689,10420225,10551297,10616833,10682369,10747906,11010049,11075585,11206657,11403265,11468801,11730945,12320769,12451841,13107201,13172737,13565953,13697025,14942236,17563650,17629190,17694721,17760257,17891330,17956865,18022402,18415617,18743297,18874369,19136513,19464198,19529729,20054018,20381698,20578305,20643841,20709377,20774914,20840451,21168129,21299202,21364738,21495809,21561346,21692418,21757956,21889026,22216706,22478850,22675462,22740996,22806529,22872065,22937601,23134238,23199774,23265310,23330847],"switching":[720897,2097153,20643841],"swapendian":[12582918,12910598,15138818,18481155,23396354],"summary":[4194305,4259841,4521985,4653057,4915201,5242881,12124161,12189697,12517377,12582913,12648449,12713985,12779521,12910593,12976129,13041665,13369345,13434881,13500417,13631489,13762561,13828097,13893633,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14614529,14680065,14745601,14811137,14876673,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15728641,15794177,15859713,15925249,16056321,16187393,16711681,16842753,17039361,17235969,17301505,17825793,21430273,22151169,23396353],"started":[20840449,21495809,22675457],"syncvarsyncdelay":[393217,786433,851969,1638401,3670018,23134209,23199745,23265281,23330817],"starthost":[10747905,10878980,22675457],"startcoroutine":[7733251,8847363,9568259,9764867,10223619,10747907,14942211,21757955,22675459,23068675,23134211,23199747,23265283,23330819],"structure":[589825,1310721,1507329,2162689,5767169,7143425,7340033,7864321,7929857,8060929,8257537,8585217,8781825,9043969,16973825,17170433,17694722,17956865,19660802,19988481],"system":[7471107,7864321,7995395,8192002,8323075,8388612,8519684,8781828,8912899,9043969,9109507,9175044,9240578,9306114,9371652,9437187,9502723,9633796,9699332,9830403,9895939,9961474,10027011,10158083,10289154,10354689,10420225,10551298,10616835,10682371,10878982,10944514,11206659,11468803,11927555,12320771,12451843,12517380,12582916,12648452,12713988,12845062,12910596,13107202,13172738,13303810,13369348,13434884,13500420,13565954,13697026,13762564,13959169,14024707,14155784,14221320,14286851,14352388,14417924,14548994,14614531,14745608,14811139,15204355,15335432,15400963,15466504,15597571,15728648,15794179,15859716,15925256,16056323,16121857,16187395,16449538,16515074,16646146,16711688,16842760,17039363,17104898,17235971,17367042,17432578,17760259,17825800,18350081,18415617,18808837,18874370,19005441,19529729,20119557,20643841,20971522,21233665,21430273,21626881,21757953,21954562,22020097,22151169,22347777,22544385,22675457,22740993,22806530,22872065,22937602,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"support":[196609,1703937,19005441],"serializes":[6750209,14483457,15532033,15663105,19070977,22151169,23461889],"startserver":[10747905,11403266,22675457],"singleton":[20840450,21823491,22675458],"secondshistory":[720897,3014658,20643841],"serializing":[16384001,23461889],"spawnableprefabs":[17760257],"settrigger":[10223618,10944516,13303812,18087939,23199746],"sendtoclientstarget":[8519683,8847366,9109507,9502723,9633795,9764870,9961475,10027011,10223622,14942214,19464199,23134214,23199750,23265286,23330822],"snaping":[1638401,7536641,23330817],"signkeyexchange":[720897,3801090,20643841],"sends":[393217,786433,851969,1638403,3670017,5308417,7012353,8388609,8519681,8847388,8912897,9109505,9175041,9306113,9371649,9437185,9502721,9633793,9699329,9764892,9830401,9895937,9961473,10027009,10158081,10223644,10289153,10551297,10616833,10682369,11206657,11468801,12320769,12451841,13107201,13172737,13565953,13697025,14942236,17629190,17891330,18022402,19464198,20054018,20774914,21364738,21889026,22216706,22478850,23134237,23199773,23265309,23330847],"static":[8257537,8585217,12582913,12910593,13238273,13959169,14483457,16121857,16449537,16646145,17104897,17367041,17432577,17760257,17956866,18415617,18743297,18808833,18874369,19529729,19660801,19988481,20119553,20971521,21823489,21954561,22347777,22544385,22609921,22740993,22872065,23003137,23396353,23461889],"seconds":[393217,720898,786433,851970,1572865,1638401,3014657,3670017,4784129,7274498,16646146,17104897,19267586,20643842,20840449,21495809,22544386,22675457,23134209,23199745,23265282,23330817],"suitable":[7340033],"struct":[8781825,9043969,17170434,19660803],"startcoroutine_auto":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"simulation":[17498113,22544385,22609921],"smaller":[7077889,17432577,22347777],"sendmessage":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820],"scenenames":[720897,3276801,20643841],"sendtoclient":[8388611,8847362,9764866,10223618,10616835,14942210,17891331,23134210,23199746,23265282,23330818],"serves":[5767169,7340033,19660801],"sendtolocalclient":[8847362,9764866,10223618,11206659,13697027,14942210,20774915,23134210,23199746,23265282,23330818],"simulate":[7274498,16646147,17104899,19267587,22544386]} \ No newline at end of file +{"switches":[6684673,16449537,20512769],"simulationobjects":[18677761,21954562,23396353],"source":[983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,6946817,7012353,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14483457,14417921,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17301505,17563649,17694721,18087937,18415617,18546689,18743297,18808833,19005441,19070977,19136513,19267585,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"sendtoserver":[11010051,11141122,11599874,12582915,15728642,17825794,18350083,22609922,22872066,22937602,23003138],"sendspersecond":[1245185,5963778,23003137],"sendtoclienttarget":[9437187,9895939,11141122,11599874,15728642,17825794,22151171,22609922,22872066,22937602,23003138],"sort":[65537],"syntax":[983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,6946817,7012353,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17301505,17563649,17694721,18087937,18415617,18546689,18743297,18808833,19005441,19070977,19136513,19267585,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"sets":[393218,3407873,4128769,18612225,21692417,22740994,22872065],"stops":[7864323,10420225,11534337,11796481,22740995],"syncronized":[18219009,20971521,22740993],"specified":[5767169,7471106,7602178,7667714,16580612,21037061],"servertransports":[262145,3145730,19595265],"sealed":[22675457,23265281],"scenes":[16384001,20512769],"sendmessageupwards":[7798788,7864324,8716292,11141124,11599876,15728644,17825796,22609924,22675460,22740996,22806532,22872068,22937604,23003140],"spawnwithownership":[7798785,10223618,22675457],"sendtoclients":[8847363,8978435,9109507,9371651,9764867,10289155,11141126,11599878,15728646,17825798,20643847,22609926,22872070,22937606,23003142],"stopallcoroutines":[7798785,7864321,8716289,11141121,11599873,15728641,17825793,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"secondsago":[21299202],"sendtononlocalclients":[9306115,10616835,11141122,11599874,15728642,17367043,17825794,22609922,22872066,22937602,23003138],"spawns":[6488065,7798786,9961473,10223617,15925249,22675458,23461889],"sendmessageoptions":[7798790,7864326,8716294,11141126,11599878,15728646,17825798,22609926,22675462,22740998,22806534,22872070,22937606,23003142],"serialize":[6750209,14024705,14286852,18874369,23134209,23265281],"scenename":[16449538],"synced":[327681,1376257,18153473,18743297,19529729,22675457],"spawn":[7798785,9961474,15925250,22675457],"second":[262147,1245186,2424833,2555905,3604481,4849665,5963777,7471105,7667713,19595267,23003138],"snapdistance":[1245185,5505026,23003137],"stored":[17956865,21495809,22806529],"sendtononlocalclientstarget":[9568259,10092547,11141122,11599874,15728642,17825794,17891331,22609922,22872066,22937602,23003138],"sever":[262145,3145729,19595265],"syncvar":[327681,1048577,19529729],"stopcoroutine":[7798787,7864323,8716291,11141123,11599875,15728643,17825795,22609923,22675459,22740995,22806531,22872067,22937603,23003139],"sorry":[5570561,17104897],"search":[65537,17104897],"signed":[262145,3670017,19595265],"serializer":[13369345,18874369,23134209],"setup":[8060929,11599873,22609921],"switch":[16449537],"stopclient":[7864321,11534338,22740993],"send":[262146,1245186,2097153,2555905,4980737,5373953,8650754,8847361,8978434,9109506,9306113,9371650,9437186,9568257,9699330,9764867,9895939,10027009,10092546,10158083,10289155,10616834,10747905,10878978,11010049,11337729,11403267,11665409,11862018,11993091,12124162,12451842,12582914,12976130,19595266,23003138],"structures":[9043969,19398657],"spawnableprefabindex":[22085634],"servernetid":[17629186,19005443,21037058],"sent":[262145,1245186,3604481,4980737,5373953,19595265,23003138],"single":[2621441,4521985,4653057,4915201,4980737,5373953,5505025,5701633,5963777,6356993,6619137,7143425,14090241,14483457,15466499,15859716,17039361,20971521,21299202,21364737,23396353],"signing":[262146,2490369,3276801,19595266],"stophost":[7864321,11796482,22740993],"set":[393217,4128769,8257538,21692417,22740993],"setparameterautosend":[11730948,15728641,22872065],"spawnpoolobject":[6488065,15925251,23461889],"spawnable":[262145,2818049,19595265],"subject":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"serialized":[9764865,10092545,10158081,10289153,10616833,11141128,11599880,12124161,12451841,12582913,14286849,15728648,17367041,17498113,17825800,17891329,18350081,18939905,20643842,22282241,22609928,22872072,22937608,23003144],"sha256":[5898242,7536641,7929857,19595266],"syncing":[16121859,18612225,21692417,22872066,22937601,23003137],"serializableattribute":[19595265,19660801,19857409,20447233,20578305],"scene":[262145,1900545,6684673,16449538,19595265,20512769],"spawned":[18153473,18546689,22675457],"spawning":[262145,3342337,19595265],"syncedvar":[262145,327684,655361,851969,917505,1048578,1245185,1376259,2555905,6029315,6356993,6946820,17432579,19202049,19529735,19595265,22609921,22872065,22937601,23003137],"socket":[786433,3801089,20447233],"salt":[7208962,17563650,19070978,20905986],"starts":[7864324,10551297,10682369,11075585,11272193,22740996],"startclient":[7864321,10551298,22740993],"short":[13959169,14352385,18808833,19988481],"sendtolocalclienttarget":[11141122,11337731,11599874,11862019,15728642,16646147,17825794,22609922,22872066,22937602,23003138],"sendtoservertarget":[11141122,11599874,11665411,12124163,15728642,17825794,18939907,22609922,22872066,22937602,23003138],"stopserver":[7864321,10420226,22740993],"skippadded":[6160385,14811139,23199745],"sbyte":[13434882,13631490,17170436,18415621],"switchscene":[6684673,16449538,20512769],"startclientwebsocket":[7864321,10682370,22740993],"site":[5570561],"size":[262146,2228226,6750209,14024706,15794177,16711681,19595266,22085634,23265281],"string":[1048578,1179650,1310722,1966082,2490370,2883586,3276802,3473410,4259842,4456450,4718594,4784130,5439490,6422530,6815746,7798802,7864338,8519682,8650758,8716306,8847366,8912898,8978438,9109510,9306118,9371654,9437190,9568262,9699334,9764870,9895942,10027014,10092550,10158086,10289158,10616838,10747910,10878982,11010054,11141194,11337734,11403270,11599946,11665414,11862022,11927556,11993094,12124166,12451846,12582918,12976134,14876674,15532034,15728715,15925251,16449538,16646148,17367044,17498116,17825866,17891332,18350084,18939908,19333121,20643852,20774916,21823500,22085634,22151172,22282244,22609994,22675474,22741010,22806546,22872139,22937674,23003210],"sendtickrate":[262145,3604482,19595265],"start":[19398657,19595265],"server":[393217,1245185,4063233,6225921,6488068,6684673,7798788,7864322,8650753,8847361,8978433,9109505,9306113,9371649,9437185,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10420225,10616833,10747905,10878977,11010049,11141148,11272193,11337729,11403265,11599900,11665409,11862017,11993089,12124161,12451841,12582913,12976129,15532033,15663105,15728668,15925249,16449537,16646146,17367042,17498114,17760258,17825820,17891330,18219011,18284546,18350082,18481154,18612226,18939906,19005441,19136513,19202050,19398657,19529729,19595265,20381697,20512769,20643846,20709377,20971521,21233665,21757953,21823494,22085633,22151170,22282242,22609950,22675460,22740998,22872094,22937630,23003167,23461892],"switching":[262145,1900545,19595265],"swapendian":[12713990,12910598,18022402,19464195,23068674],"summary":[4259841,4456449,4718593,4784129,5439489,6422529,12517377,12648449,12713985,12845057,12910593,13041665,13107201,13238273,13303809,13434881,13500417,13565953,13631489,13697025,13828097,13959169,14090241,14155777,14221313,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15138817,15204353,15269889,15400961,15466497,15597569,15859713,15990785,16187393,16318465,16777217,16842753,16973825,17170433,18415617,18808833,19988481,20774913,23068673,23199745,23265281],"started":[18219009,20971521,22740993],"syncvarsyncdelay":[655361,851969,917505,1245185,6356994,22609921,22872065,22937601,23003137],"starthost":[7864321,11075588,22740993],"startcoroutine":[7798787,7864323,8716291,11141123,11599875,15728643,17825795,22609923,22675459,22740995,22806531,22872067,22937603,23003139],"structure":[196609,1441793,1507329,2162689,5767169,7340033,7471105,7602177,7667713,8257537,8388609,9043969,9175041,9240577,16580609,16908289,17629185,19005441,19398658,21037058],"system":[7536643,7602177,7929859,8257540,8388609,8519682,8650756,8781827,8847363,8912898,8978434,9109508,9306115,9371652,9437188,9568259,9633793,9699332,9764867,9895939,10027011,10092546,10158083,10223617,10289155,10616834,10747907,10878980,10944515,11010051,11075590,11337731,11403267,11665411,11730950,11862018,11927554,11993091,12124162,12255234,12451842,12582914,12713988,12845060,12910596,12976130,13041668,13107204,13500419,13565956,13631492,13697028,13762562,13828099,13893633,14352388,14417924,14483460,14549000,14680072,14942211,15007747,15073282,15204355,15269896,15400968,15466499,15532033,15597571,15794181,15859720,15925250,15990792,16187395,16318467,16449537,16711685,16777220,16842760,16973832,17170435,17563650,17694722,18087938,18415624,18808835,19070978,19136514,19529730,19595265,19660801,19726338,19857409,19922945,19988488,20447233,20512769,20578305,20774915,20840449,20905985,21299202,21626882,22085635,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"support":[589825,1114113,20578305],"serializes":[6750209,13172737,14286849,18874369,19791873,23134209,23265281],"startserver":[7864321,11272194,22740993],"singleton":[18219010,21168131,22740994],"secondshistory":[262145,2621442,19595265],"serializing":[16252929,23134209],"spawnableprefabs":[22085633],"settrigger":[11927556,12255236,15728642,19333123,22872066],"sendtoclientstarget":[9699331,10027011,10878979,11141126,11403267,11599878,11993091,12976131,15728646,17825798,21823495,22609926,22872070,22937606,23003142],"snaping":[1245185,5505025,23003137],"signkeyexchange":[262145,3670018,19595265],"sends":[655361,851969,917505,1245187,4849665,5963777,6356993,8650753,8847361,8978433,9109505,9306113,9371649,9437185,9568257,9699329,9764865,9895937,10027009,10092545,10158081,10289153,10616833,10747905,10878977,11010049,11141148,11337729,11403265,11599900,11665409,11862017,11993089,12124161,12451841,12582913,12976129,15728668,16646146,17367042,17498114,17825820,17891330,18350082,18939906,20643846,21823494,22151170,22282242,22609949,22872093,22937629,23003167],"static":[7471105,7667713,12713985,12910593,13369345,13893633,14286849,15532033,15663105,15794177,15925249,16449537,16711681,17563649,17629185,17694721,18087937,19005442,19070977,19726337,20512769,20840449,20905985,21037057,21168129,21299201,21626881,21954561,22085633,23068673,23134209,23330817,23396353,23461889],"seconds":[262146,655361,851969,917506,1245185,1769473,2621441,4915201,6356993,7143426,17039362,18219009,19595266,20971521,21299202,21626881,22609921,22740993,22872065,22937602,23003137,23396354],"suitable":[9043969],"struct":[8257537,8388609,16908290,21037059],"startcoroutine_auto":[7798785,7864321,8716289,11141121,11599873,15728641,17825793,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"simulation":[18677761,21954561,23396353],"smaller":[7077889,18087937,23330817],"sendmessage":[7798788,7864324,8716292,11141124,11599876,15728644,17825796,22609924,22675460,22740996,22806532,22872068,22937604,23003140],"scenenames":[262145,2883585,19595265],"sendtoclient":[8650755,10158083,11141122,11599874,15728642,17498115,17825794,22609922,22872066,22937602,23003138],"serves":[5767169,9043969,21037057],"sendtolocalclient":[10747907,11141122,11599874,12451843,15728642,17825794,22282243,22609922,22872066,22937602,23003138],"simulate":[7143426,17039363,21299203,21626883,23396354]} \ No newline at end of file diff --git a/docs/fti/FTI_116.json b/docs/fti/FTI_116.json index 8b16900..8385de1 100644 --- a/docs/fti/FTI_116.json +++ b/docs/fti/FTI_116.json @@ -1 +1 @@ -{"tostring":[5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6750209,7733249,8847361,9568257,9764865,10223617,10747905,14942209,18350081,19005441,19660801,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817],"totalpoints":[21037057,22282242,23068673],"try":[7602177,19398657],"transport":[131073,720897,1179649,3211265,8781825,17170433,17694721,18350081,19660801,20643841,22020097],"tracked":[15990785,23068673],"trackedobject":[7733251,11599876,15990785,21037059,22085634,22282242,22609922,23068678],"talk":[720897,2949121,20643841],"title":[65537],"transforms":[16252929,23330817],"typeid":[19595265,19726337,22806529,22937601],"top":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,1376257,1638401,5636097,5701633,5767169,5898241,5963777,6094849,6160385,6225921,6291457,6422529,6553601,6619137,6684673,6750209,7077889,7274497,7733249,8847361,9568257,9764865,10223617,10747905,14942209,15138817,15532033,16973825,17170433,17498113,17629185,17891329,18022401,18087937,18350083,18481153,19005443,19070977,19267585,19398657,19464193,19595265,19660805,19726337,19988481,20054017,20381697,20447233,20643843,20774913,20840449,21037057,21233667,21299201,21364737,21430274,21561345,21626883,21692417,21757956,21889025,22020099,22151170,22216705,22347777,22478849,22544386,22675460,22740993,22806531,22872065,22937604,23003137,23068675,23134212,23199748,23265284,23330820,23396353,23461889],"timing":[720897,1572865,20643841],"transform":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"todo":[10223621,10944513,11927553,12386305,12845057,13303809,18087938,23199749],"turns":[7274500,13959169,15532033,16646146,17104898,19267588,22544388,23461889],"triggername":[10944515],"typo":[19398657],"time":[7274499,16646146,17104899,19267587,20840450,21037057,21495810,22085633,22544387,22675458,23068673],"target":[327681,917506,22937601],"trigger":[1376257,4456449,22675457],"true":[327681,458753,917505,3473409,7864321,7929857,7995393,8060929,8257537,8585217,8781826,22020097,22937601],"transporthost":[458755,3211266,3473410,3604482,4128770,5636099,7798788,17694721,22020102],"table":[7340033],"tcp":[458753,3473409,22020097],"topic":[1],"tag":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"times":[720899,1966081,2555905,3538945,20643843],"total":[21037057,22282241,23068673],"type":[131075,196609,262145,327681,393217,458753,524289,589825,655361,720898,786433,851969,917505,983041,1048577,1114113,1179652,1245185,1310721,1376257,1441794,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6881281,7012353,7077889,7143425,7340033,7471106,7536641,7733259,7864322,7929857,7995394,8060929,8192002,8257539,8323074,8388612,8519684,8585219,8781828,8847371,8912899,9043969,9109510,9175044,9240579,9306117,9371652,9437187,9502726,9568267,9633796,9699332,9764875,9830403,9895942,9961477,10027011,10158086,10223627,10289157,10354689,10420225,10551301,10616838,10682374,10747915,10878978,10944513,11206659,11468803,11927554,12124161,12189697,12320771,12451843,12517378,12582914,12648450,12713986,12779521,12845058,12910594,12976129,13041665,13107205,13172741,13303809,13369346,13434882,13500418,13565957,13631489,13697029,13762562,13828097,13893633,13959172,14024705,14155778,14221314,14286849,14352386,14417922,14483460,14548993,14614529,14680065,14745602,14811137,14876673,14942219,15073281,15204353,15269889,15335426,15400961,15466498,15532033,15597569,15663105,15728642,15794177,15859714,15925250,16056321,16121858,16187393,16449539,16515074,16646146,16711682,16842754,16908289,16973825,17039361,17104898,17235969,17367043,17432579,17498113,17694721,17760259,17825794,17956865,18153473,18219009,18284545,18350083,18415617,18546689,18612225,18677761,18743297,18808835,18874372,18939905,19005442,19136513,19202049,19333121,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20119555,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643842,20709377,20840449,20905985,20971523,21037057,21102593,21168129,21233665,21299201,21430273,21495809,21561345,21626881,21692417,21757963,21823489,21954563,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675467,22740993,22806529,22872065,22937601,23003137,23068683,23134219,23199755,23265291,23330827,23461889],"turned":[720898,2752514,16646145,17104897,20643842]} \ No newline at end of file +{"tostring":[5111809,5308417,5767169,5832705,5898241,6029313,6094849,6160385,6291457,6553601,6750209,7798785,7864321,8716289,11141121,11599873,15728641,17825793,19136513,19529729,19595265,19660801,19857409,19922945,20447233,20578305,21037057,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23199745,23265281],"totalpoints":[17956865,21495810,22806529],"try":[5570561,17104897],"transport":[131073,262145,1572865,3145729,8257537,16908289,19398657,19595265,19857409,20447233,21037057],"tracked":[16056321,22806529],"trackedobject":[8716291,10813444,16056321,17956867,21364738,21495810,21954562,22806534],"talk":[262145,3014657,19595265],"title":[65537],"transforms":[16121857,23003137],"typeid":[17235969,17432577,19136513,19529729],"top":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,1245185,5111809,5308417,5767169,5832705,5898241,6029313,6094849,6160385,6291457,6488065,6553601,6684673,6750209,7077889,7143425,7208961,7798785,7864321,8716289,11141121,11599873,15728641,16580609,16646145,16908289,17039361,17104897,17235969,17367041,17432577,17498113,17629185,17760257,17825793,17891329,17956865,18022401,18153473,18219009,18284545,18350081,18481153,18612225,18677761,18874369,18939905,19136515,19333121,19464193,19529732,19595267,19660803,19791873,19857411,19922947,20447235,20512769,20578307,20643841,20905985,21037061,21823489,22151169,22282241,22609924,22675460,22740996,22806531,22872068,22937604,23003140,23068673,23134209,23199746,23265282,23330817,23396354,23461889],"timing":[262145,1769473,19595265],"transform":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"todo":[10944513,11468801,11730945,11927553,12255233,15728645,19333122,22872069],"turns":[7143428,13893633,17039364,18874369,21299202,21626882,23134209,23396356],"triggername":[11927555],"typo":[17104897],"time":[7143427,17039363,17956865,18219010,20971522,21299202,21364737,21626883,22740994,22806529,23396355],"target":[327681,1376258,19529729],"trigger":[393217,4325377,22740993],"true":[327681,786433,1376257,3801089,7471105,7602177,7667713,7929857,8257538,9175041,9240577,19529729,20447233],"transporthost":[786435,3145730,3473410,3801090,3866626,6553603,8192004,19398657,20447238],"table":[9043969],"tcp":[786433,3801089,20447233],"topic":[1],"tag":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"times":[262147,2424833,2555905,3604481,19595267],"total":[17956865,21495809,22806529],"type":[131075,196609,262146,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572868,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359298,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,7012353,7077889,7208961,7340033,7471107,7536642,7602178,7667715,7798795,7864331,7929858,8257540,8388609,8519682,8650756,8716299,8781826,8847363,8912899,8978437,9043969,9109508,9175041,9240577,9306115,9371652,9437188,9568259,9633793,9699332,9764870,9895942,10027011,10092549,10158086,10223617,10289158,10616837,10747907,10878980,10944514,11010051,11075586,11141131,11337731,11403270,11599883,11665411,11730946,11862021,11927553,11993094,12124165,12255233,12451845,12517377,12582917,12648449,12713986,12845058,12910594,12976133,13041666,13107202,13172737,13238273,13303809,13434881,13500417,13565954,13631490,13697026,13762562,13828097,13893636,13959169,14024705,14090241,14155777,14286852,14352386,14417922,14483458,14548994,14614529,14680066,14745601,14876673,14942209,15007745,15073281,15138817,15204353,15269890,15400962,15466497,15532033,15597569,15663105,15728651,15794179,15859714,15925252,15990786,16187393,16318465,16449537,16580609,16711683,16777218,16842754,16973826,17170433,17235969,17432577,17563651,17629185,17694723,17760257,17825803,17956865,18087939,18153473,18219009,18284545,18415618,18481153,18546689,18612225,18677761,18743297,18808833,18874369,19005441,19070979,19136513,19267585,19398657,19529729,19595266,19660801,19726339,19857411,19922945,19988482,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578306,20709377,20774913,20840450,20905985,20971521,21037057,21102593,21168129,21233665,21299202,21364737,21430273,21495809,21561345,21626882,21692417,21757953,21889025,21954561,22020097,22085635,22216705,22347777,22413313,22478849,22544385,22609931,22675467,22741003,22806539,22872075,22937611,23003147,23134209,23199745,23265281,23330817,23396353,23461889],"turned":[262146,2293762,19595266,21299201,21626881]} \ No newline at end of file diff --git a/docs/fti/FTI_117.json b/docs/fti/FTI_117.json index 044d53b..c71e979 100644 --- a/docs/fti/FTI_117.json +++ b/docs/fti/FTI_117.json @@ -1 +1 @@ -{"uint64":[12779521,12910598,13369345,15138817,17039363,17825796,18481153,23396353],"useguilayout":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"url":[19398657],"unique":[20447233,20905985,21757953],"uint":[3997697,5505026,5832705,6881281,7143425,8323073,8388609,8519681,9043969,9109505,9175041,9240577,9371649,9633793,9699329,10354689,10420225,12517377,12582914,15269889,16056321,16711681,17104897,17760257,18153473,18219009,18546689,18939905,20905985,20971521,21168129,21954561],"ulong":[12779521,12910594,13369345,17039361,17825793],"unityengine":[10878980,18874370],"ump":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820],"uint32":[3997697,5505026,5832705,6881281,7143425,7274497,8323075,8388610,8519682,8847367,9043970,9109506,9175042,9240577,9371650,9633794,9699330,9764871,10223623,10354689,10420225,12517377,12582918,14942215,15138817,15269889,16056323,16711684,17104898,17170433,17629186,17760257,17891329,18153473,18219009,18481153,18546689,18939905,19267585,19464195,19660801,20054017,20905985,20971521,21168129,21954561,22544385,23134215,23199751,23265287,23330823,23396353],"updated":[327681,1048577,22937601],"unity":[1376257,4456449,22675457],"user":[8388610,8519682,8912898,9109506,9175042,9306114,9371650,9437186,9502722,9633794,9699330,9830402,9895938,9961474,10027010,10158082,10289154,10551298,10616834,10682370,11206658,11468802,12320770,12451842,13107202,13172738,13565954,13697026],"using":[10747905,11272193,22675457],"udp":[458753,3473409,22020097],"uses":[720898,2752513,3211265,20643842],"used":[655361,720899,1376257,1835009,2031617,3276801,3342337,4456449,9240577,15007745,15990786,17694721,20643844,21233665,21299201,21757953,22151169,22413313,22675457,23068673,23199745],"uint16":[1507329,2949121,8781826,13631489,13762561,15400963,15925252,17170433,18612225,19660801],"ushort":[1507329,2949121,8781825,13631489,13762561,15400961,15925249,18612225]} \ No newline at end of file +{"uint64":[12910598,13303809,13697025,15597571,15990788,18022401,19464193,23068673],"useguilayout":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"url":[17104897],"unique":[18153473,18743297,22675457],"uint":[3735553,4194305,5046273,6881282,7340033,8388609,8650753,8781825,8912897,9109505,9371649,9437185,9633793,9699329,10223617,10878977,11403265,12713986,13041665,15007745,15138817,15400961,17694721,18743297,19267585,19726337,20119553,20709377,21626881,22020097,22085633,22216705],"ulong":[12910594,13303809,13697025,15597569,15990785],"unityengine":[11075588,15925250],"ump":[7798788,7864324,8716292,11141124,11599876,15728644,17825796,22609924,22675460,22740996,22806532,22872068,22937604,23003140],"uint32":[3735553,4194305,5046273,6881282,7143425,7340033,8388610,8650754,8781827,8912897,9109506,9371650,9437186,9633793,9699330,10223617,10878978,11141127,11403266,11599879,12713990,13041665,15007747,15138817,15400964,15728647,16908289,17039361,17498113,17694721,17825799,18022401,18743297,19267585,19464193,19726337,20119553,20643842,20709377,21037057,21626882,21823491,22020097,22085633,22151169,22216705,22609927,22872071,22937607,23003143,23068673,23396353],"updated":[327681,1048577,19529729],"unity":[393217,4325377,22740993],"user":[8650754,8847362,8978434,9109506,9306114,9371650,9437186,9568258,9699330,9764866,9895938,10027010,10092546,10158082,10289154,10616834,10747906,10878978,11010050,11337730,11403266,11665410,11862018,11993090,12124162,12451842,12582914,12976130],"using":[7864321,10682369,22740993],"udp":[786433,3801089,20447233],"uses":[262146,2293761,3145729,19595266],"used":[262147,393217,524289,1638401,2097153,2883585,3080193,4325377,8912897,15335425,16056322,18612225,19398657,19595268,19922945,21692417,22675457,22740993,22806529,22872065,23265281],"uint16":[1441793,3014657,8257538,14155777,14417921,16187395,16908289,16973828,20054017,21037057],"ushort":[1441793,3014657,8257537,14155777,14417921,16187393,16973825,20054017]} \ No newline at end of file diff --git a/docs/fti/FTI_118.json b/docs/fti/FTI_118.json index b117a18..0bd6c32 100644 --- a/docs/fti/FTI_118.json +++ b/docs/fti/FTI_118.json @@ -1 +1 @@ -{"verified":[7077890,18808833,20119553,22347778],"valid":[20840449,21168129,22675457],"values":[8781825,17170433,19660801],"virtual":[8650753,8716289,8978433],"view":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"versions":[720897,2949121,20643841],"vector3":[5505026,10878980,18874371],"value":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6881281,7012353,7143425,7340033,7471105,7536641,7864321,7929857,7995393,8060929,8257537,8323073,8585217,9240577,11927553,12124161,12189697,12517377,12582916,12648449,12713985,12779521,12845059,12910596,12976129,13041665,13369345,13434881,13500417,13631489,13762561,13828097,13893633,13959169,14352385,14417921,14483457,14680065,14876673,15073281,15269889,15663105,15859713,16121857,16449537,16515073,16908289,17367041,17432577,17956865,18153473,18219009,18284545,18546689,18612225,18677761,18808833,18874369,18939905,19136513,19202049,19333121,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20709377,20905985,20971521,21102593,21168129,21495809,21823489,21954561,22085633,22282241,22413313,22609921],"variables":[17563650,22806529,22937601],"version":[720897,917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949122,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483458,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643842,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"valuetype":[5767171,19660803],"void":[8192001,8388609,8519681,8650753,8716289,8912897,8978433,9109505,9175041,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10158081,10289153,10354689,10420225,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11403265,11468801,11534337,11665409,11730945,11862017,11993089,12058625,12320769,12386305,12451841,12845057,13107201,13172737,13238273,13303809,13565953,13697025,14024705,14090241,14155777,14221313,14286849,14614529,14745601,14811137,15007745,15204353,15335425,15400961,15466497,15597569,15728641,15794177,15925249,16056321,16187393,16646145,16711681,16842753,17039361,17104897,17235969,17301505,17760257,17825793,18415617,18743297,19529729]} \ No newline at end of file +{"verified":[7077890,15794177,16711681,23330818],"valid":[18219009,20709377,22740993],"values":[8257537,16908289,21037057],"virtual":[8060929,8454145,8585217],"view":[983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,6946817,7012353,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17301505,17563649,17694721,18087937,18415617,18546689,18743297,18808833,19005441,19070977,19136513,19267585,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"versions":[262145,3014657,19595265],"vector3":[6881282,11075588,15925251],"value":[983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,7012353,7340033,7471105,7536641,7602177,7667713,7929857,8781825,8912897,9043969,9175041,9240577,10944513,11730947,12517377,12648449,12713988,12845057,12910596,13041665,13107201,13172737,13238273,13303809,13434881,13565953,13631489,13697025,13762561,13893633,13959169,14024705,14090241,14155777,14286849,14352385,14483457,14417921,14614529,14745601,14876673,15138817,15794177,15925249,16711681,16777217,17563649,17694721,18087937,18546689,18743297,19005441,19070977,19267585,19726337,20054017,20119553,20185089,20250625,20316161,20381697,20709377,20840449,20971521,21102593,21168129,21233665,21364737,21430273,21495809,21561345,21692417,21757953,21889025,21954561,22020097,22216705,22347777,22413313,22478849,22544385],"variables":[19136513,19202050,19529729],"version":[262145,983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014658,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,6946817,7012353,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286850,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17301505,17563649,17694721,18087937,18415617,18546689,18743297,18808833,19005441,19070977,19136513,19267585,19529729,19595266,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"valuetype":[5767171,21037059],"void":[8060929,8454145,8519681,8585217,8650753,8847361,8978433,9109505,9306113,9371649,9437185,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10420225,10551297,10616833,10682369,10747905,10878977,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12255233,12386305,12451841,12582913,12976129,13369345,13500417,13828097,14221313,14548993,14680065,14811137,14942209,15007745,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15859713,15990785,16187393,16318465,16449537,16842753,16973825,17170433,18415617,18808833,19988481,20774913,21299201,21626881,22085633]} \ No newline at end of file diff --git a/docs/fti/FTI_119.json b/docs/fti/FTI_119.json index 9920d72..8f698e5 100644 --- a/docs/fti/FTI_119.json +++ b/docs/fti/FTI_119.json @@ -1 +1 @@ -{"writefloatarray":[6750209,16842757,22151169],"writeshort":[6750209,14614532,22151169],"writeintarray":[6750209,14155781,22151169],"writeuintarray":[6750209,16711685,22151169],"writedouble":[6750209,15204356,22151169],"writesbyte":[6750209,15794180,22151169],"writeuint":[6750209,16056324,22151169],"writelongarray":[6750209,15466501,22151169],"warp":[851969,5177345,23265281],"writeint":[6750209,17235972,22151169],"writebyte":[6750209,14286852,22151169],"web":[19398657],"writeulong":[6750209,17039364,22151169],"writealignbits":[6750209,17301507,22151169],"wait":[720897,1572865,20643841],"writedoublearray":[6750209,15728645,22151169],"websockets":[458754,3473411,10747905,11272193,22020098,22675457],"writestring":[6750209,15597572,22151169],"writesbytearray":[6750209,14221317,22151169],"writefloat":[6750209,16187396,22151169],"writelong":[6750209,14811140,22151169],"writeulongarray":[6750209,17825797,22151169],"writeushortarray":[6750209,15925253,22151169],"writeshortarray":[6750209,15335429,22151169],"writebool":[6750209,14024708,22151169],"writeushort":[6750209,15400964,22151169],"write":[15990785,23134209],"written":[15663105,16515073],"writes":[6750209,16515073,19070977,22151169],"writebytearray":[6750209,14745605,22151169],"warpondestinationchange":[851969,5177346,23265281],"wheter":[131073,196609,262145,720902,1245185,1441793,1703937,1900545,2097153,2424833,2686977,3407873,3801089,5767169,7929857,18350081,19005441,19333121,19660801,20578305,20643846,20840450,21626881,22675458]} \ No newline at end of file +{"writefloatarray":[6750209,15859717,23265281],"writeshort":[6750209,18808836,23265281],"writeintarray":[6750209,14680069,23265281],"writeuintarray":[6750209,15400965,23265281],"writedouble":[6750209,14942212,23265281],"writesbyte":[6750209,17170436,23265281],"writeuint":[6750209,15007748,23265281],"writelongarray":[6750209,16842757,23265281],"warp":[917505,7012353,22937601],"writeint":[6750209,16318468,23265281],"writebyte":[6750209,13828100,23265281],"web":[17104897],"writeulong":[6750209,15597572,23265281],"writealignbits":[6750209,14221315,23265281],"wait":[262145,1769473,19595265],"writedoublearray":[6750209,15269893,23265281],"websockets":[786434,3801091,7864321,10682369,20447234,22740993],"writestring":[6750209,20774916,23265281],"writesbytearray":[6750209,18415621,23265281],"writefloat":[6750209,15466500,23265281],"writelong":[6750209,15204356,23265281],"writeulongarray":[6750209,15990789,23265281],"writeushortarray":[6750209,16973829,23265281],"writeshortarray":[6750209,19988485,23265281],"writebool":[6750209,13500420,23265281],"writeushort":[6750209,16187396,23265281],"write":[16056321,22609921],"written":[13172737,13762561],"writes":[6750209,13762561,19791873,23265281],"writebytearray":[6750209,14548997,23265281],"warpondestinationchange":[917505,7012354,22937601],"wheter":[131073,262150,458753,589825,983041,1114113,1703937,1835009,1900545,2359297,3342337,3538945,3670017,5767169,9175041,18219010,19595270,19660801,19857409,20185089,20381697,20578305,21037057,22740994]} \ No newline at end of file diff --git a/docs/fti/FTI_120.json b/docs/fti/FTI_120.json index 8fe90a0..3226216 100644 --- a/docs/fti/FTI_120.json +++ b/docs/fti/FTI_120.json @@ -1 +1 @@ -{"xml":[720898,2621441,3080193,20643842]} \ No newline at end of file +{"xml":[262146,2490369,3276801,19595266]} \ No newline at end of file diff --git a/docs/fti/FTI_97.json b/docs/fti/FTI_97.json index f1d538d..567c8ea 100644 --- a/docs/fti/FTI_97.json +++ b/docs/fti/FTI_97.json @@ -1 +1 @@ -{"audio":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"allow":[720897,1441793,20643841],"assembly":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11403265,11337729,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"allocates":[6750209,15663105,16318465,19070977,22151170],"allocated":[15663105],"attribute":[5701636,5898244,17563650,19595265,19726337,22806536,22937608],"away":[720897,3538945,20643841],"animator":[21299202,22413317,23199746],"average":[21037057,22085633,23068673],"aes":[6684674,16449537,17367041,23003138],"assumed":[1638401,5308417,23330817],"api":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"animations":[16252929,21299201,22413313,23199746],"accepted":[720897,2031617,20643841],"administrator":[7602177],"algorithms":[7340033],"approval":[720897,1376257,1900545,5505025,20643841,22675457],"avgtimebetweenpointsms":[21037057,22085634,23068673],"assumesyncedsends":[1638401,5308418,23330817],"acts":[1376257,4456449,22675457],"assigned":[589825,1507329,19660801],"available":[19398657],"animation":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"address":[720897,1769473,19398657,20643841],"array":[6750209,7077889,15663106,16449537,17367041,17432578,17760257,19070977,22151169,22347777],"allowpassthroughmessages":[720897,1441794,20643841],"action":[4325378,5505028,5832706,6881282,7274500,9240580,16646151,17104903,19267588,22544388],"aeskey":[655361,3342338,21233665],"attributes":[327681,917506,1048578,5701633,5898241,6815746,6946818,17563649,19595265,19726337,22806531,22937603],"abstract":[23134209],"application":[1376257,4849665,20840449,21495809,22675458],"automatically":[1,17563650,22806529,22937601],"accuracy":[720897,2752513,20643841]} \ No newline at end of file +{"audio":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"allow":[262145,2359297,19595265],"assembly":[983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,6946817,7012353,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17301505,17563649,17694721,18087937,18415617,18546689,18743297,18808833,19005441,19070977,19136513,19267585,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"allocates":[6750209,13172737,17301505,19791873,23265282],"allocated":[13172737],"attribute":[5832708,6029316,17235969,17432577,19136520,19202050,19529736],"away":[262145,3604481,19595265],"animator":[18612226,21692421,22872066],"average":[17956865,21364737,22806529],"aes":[7208962,17563649,19070977,20905986],"assumed":[1245185,4849665,23003137],"api":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"animations":[16121857,18612225,21692417,22872066],"accepted":[262145,2097153,19595265],"administrator":[5570561],"algorithms":[9043969],"approval":[262145,393217,1703937,6881281,19595265,22740993],"avgtimebetweenpointsms":[17956865,21364738,22806529],"assumesyncedsends":[1245185,4849666,23003137],"acts":[393217,4325377,22740993],"assigned":[196609,1441793,21037057],"available":[17104897],"animation":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"address":[262145,1966081,17104897,19595265],"array":[6750209,7077889,13172738,17563649,18087938,19070977,19791873,22085633,23265281,23330817],"allowpassthroughmessages":[262145,2359298,19595265],"action":[4063234,4194306,5046274,6881284,7143428,8912900,17039364,21299207,21626887,23396356],"aeskey":[524289,3080194,19922945],"attributes":[327681,1048578,1376258,5832705,6029313,6946818,7733250,17235969,17432577,19136515,19202049,19529731],"abstract":[22609921],"application":[393217,4128769,18219009,20971521,22740994],"automatically":[1,19136513,19202050,19529729],"accuracy":[262145,2293761,19595265]} \ No newline at end of file diff --git a/docs/fti/FTI_98.json b/docs/fti/FTI_98.json index 352e170..1f120f0 100644 --- a/docs/fti/FTI_98.json +++ b/docs/fti/FTI_98.json @@ -1 +1 @@ -{"binary":[6422529,6750209,7077889,8388609,8519681,8847368,8912897,9175041,9371649,9437185,9633793,9699329,9764872,9830401,9895937,10027009,10223624,10289153,10551297,10616833,10682369,11206657,11468801,12124164,12189700,12320769,12451841,12517381,12582917,12648453,12713989,12779524,12910597,12976132,13041668,13107201,13238274,13369349,13434885,13500421,13565953,13631492,13697025,13762565,13828100,13893636,13959174,14024708,14090243,14155781,14221317,14286852,14352389,14417925,14483460,14548995,14614532,14680068,14745605,14811140,14876676,14942216,15007746,15073284,15138817,15204356,15269892,15335429,15400964,15466501,15532035,15597572,15663106,15728645,15794180,15859717,15925253,16056324,16121858,16187396,16318467,16384002,16515075,16711685,16842757,16908290,17039364,17235972,17301507,17432578,17629186,17825797,17891329,18022401,18481153,18808835,19070977,20119555,20774913,20971522,21430276,21889025,21954562,22151173,22216705,22347779,22478849,23134216,23199752,23265288,23330824,23396356,23461894],"box":[19398657],"broadcastmessage":[7733252,8847364,9568260,9764868,10223620,10747908,14942212,21757956,22675460,23068676,23134212,23199748,23265284,23330820],"behaviour":[20381698,20447234,20840450,21037058,21299202,21561346,21692418,21757955,22675459,23068675,23134211,23199747,23265283,23330819],"buffer":[720897,2359297,6684674,6750209,7077890,8388609,8519681,8847380,8912897,9109505,9175041,9306113,9371649,9437185,9502721,9633793,9699329,9764884,9830401,9961473,10027009,10158081,10223636,11206657,11468801,12320769,12451841,13172737,14942228,16449538,16515076,17367042,17629188,17891329,18022401,18808833,19070977,19464198,20054018,20119553,20643841,20774913,21364738,21889025,22151169,22216705,22347778,22478849,23003138,23134228,23199764,23265300,23330836],"binaryserializer":[13238274,13959170,14483458,15532035,16384001,23461892],"binaryignore":[5701635,6815748,17563649,19595267,22806534],"based":[7274497,17104897,19267585,22544385],"bitwriter":[6750211,14024708,14155781,14221317,14286852,14614532,14745605,14811140,15007747,15204356,15335429,15400964,15466501,15597572,15663106,15728645,15794180,15925253,16056324,16187396,16318467,16384001,16515075,16711685,16842757,16908290,17039364,17235972,17301507,17825797,19070978,22151175],"binaryhelpers":[12582917,12910597,15138818,16384001,18481154,23396356],"bool":[917505,1245185,1376257,1441793,1703937,1900545,2097153,2424833,2686977,2752513,3407873,3473409,3801089,4063233,4456450,4849665,4980737,5111809,5177345,5308417,5373953,5439489,5505025,6488065,7471105,7864321,7929857,7995393,8060929,8257537,8585217,8781826,11927553,12845057,14024705,14155777,14221313,14745601,14876673,15335425,15466497,15728641,15925249,16121857,16711681,16842753,17825793,18284545,18677761,19136513,19202049,19333121,19791873,19857409,19922945,20185089,20250625,20316161,20512769,20578305,20709377,20971521,21954561,22675457],"base":[15990785,23134209],"bitreader":[6422531,12124164,12189700,12517381,12648453,12713989,12779524,12976132,13041668,13369349,13434885,13500421,13631492,13762565,13828100,13893636,14090243,14352389,14417925,14548997,14680068,14876676,15073284,15269892,15859717,16384001,21430279],"bytes":[6684674,6750209,16449537,16515073,16908290,17367041,17432577,22151169,23003138],"byte":[1310722,2031618,2162690,3342338,5505026,6750209,7077889,7471108,7995394,8388611,8519683,8781827,8847374,8912899,9175043,9240578,9371651,9437187,9633795,9699331,9764878,9830403,10027011,10223630,11206659,11468803,12189698,12320771,12451843,12713986,13959170,14286852,14483458,14548995,14745605,14942222,15663106,16121858,16449543,16515076,17170433,17367047,17432582,17629187,17891329,18022401,18808837,19070977,19464195,19660801,20054017,20119557,20774913,20971522,21364737,21889025,21954562,22151169,22216705,22347777,22478849,23134222,23199758,23265294,23330830],"background":[1376257,4849665,22675457],"boolean":[917505,1245185,1441793,1703937,1900545,2097153,2424833,2686977,2752513,3407873,3473409,3801089,4063233,4456449,4849665,4980737,5111809,5177345,5308417,5373953,5439489,5505025,6488065,7471105,7733256,7864321,7929857,7995395,8060929,8257537,8585217,8781828,8847368,9568264,9764872,10223624,10747912,11927553,12845059,14024707,14155780,14221316,14745604,14876673,14942216,15335428,15466500,15728644,15925252,16121857,16711684,16842756,17170434,17825796,18284545,18677761,19136513,19202049,19333121,19660802,19791873,19857409,19922945,20185089,20250625,20316161,20512769,20578305,20709377,20971521,21757960,21954561,22675464,23068680,23134216,23199752,23265288,23330824]} \ No newline at end of file +{"binary":[6160385,6750209,7077889,8650753,8847361,9109505,9306113,9371649,9437185,9568257,9699329,9764865,10027009,10092545,10158081,10289153,10616833,10747905,10878977,11010049,11141128,11337729,11599880,11665409,12124161,12451841,12517380,12582913,12648452,12713989,12845061,12910597,13041669,13107205,13172738,13238276,13303812,13369346,13434884,13500420,13565957,13631493,13697029,13762563,13828100,13893638,13959172,14024706,14090244,14155780,14221315,14286852,14352389,14417925,14483461,14548997,14614532,14680069,14745604,14811139,14876676,14942212,15007748,15073283,15138820,15204356,15269893,15335426,15400965,15466500,15597572,15728648,15794179,15859717,15990789,16187396,16252930,16318468,16711683,16777221,16842757,16973829,17170436,17301507,17367041,17498113,17694722,17825800,17891329,18022401,18087938,18350081,18415621,18808836,18874371,18939905,19464193,19726338,19791873,19988485,20643842,20774916,20840450,22282241,22609928,22872072,22937608,23003144,23068676,23134214,23199748,23265285,23330819],"box":[17104897],"broadcastmessage":[7798788,7864324,8716292,11141124,11599876,15728644,17825796,22609924,22675460,22740996,22806532,22872068,22937604,23003140],"behaviour":[17760258,17956866,18153474,18219010,18284546,18481154,18612226,22609923,22675459,22740995,22806531,22872067,22937603,23003139],"buffer":[262145,2228225,6750209,7077890,7208962,8650753,8847361,8978433,9109505,9306113,9371649,9437185,9568257,9699329,9895937,10027009,10747905,10878977,11010049,11141140,11337729,11403265,11599892,11665409,11862017,11993089,12976129,13762564,15728660,15794177,16646146,16711681,17367041,17498113,17563650,17825812,17891329,18350081,18939905,19070978,19595265,19791873,20643844,20905986,21823494,22151170,22282241,22609940,22872084,22937620,23003156,23265281,23330818],"binaryserializer":[13369346,13893634,14286850,16252929,18874371,23134212],"binaryignore":[5832707,7733252,17235971,19136518,19202049],"based":[7143425,17039361,21626881,23396353],"bitwriter":[6750211,13172738,13500420,13762563,13828100,14024706,14221315,14548997,14680069,14942212,15007748,15204356,15269893,15335427,15400965,15466500,15597572,15859717,15990789,16187396,16252929,16318468,16842757,16973829,17170436,17301507,18415621,18808836,19791874,19988485,20774916,23265287],"binaryhelpers":[12713989,12910597,16252929,18022402,19464194,23068676],"bool":[393217,983041,1114113,1376257,1703937,1835009,1900545,2293761,2359297,3342337,3407873,3538945,3670017,3801089,4128769,4325378,4587521,4849665,5177345,5242881,5636097,6225921,6881281,7012353,7471105,7536641,7602177,7667713,7929857,8257538,9175041,9240577,10944513,11730945,13500417,14548993,14614529,14680065,15269889,15400961,15859713,15990785,16842753,16973825,17694721,18415617,18546689,19726337,19988481,20185089,20250625,20316161,20381697,20840449,21102593,21233665,21430273,21561345,21757953,22347777,22413313,22478849,22544385,22740993],"base":[16056321,22609921],"bitreader":[6160387,12517380,12648452,12845061,13041669,13107205,13238276,13303812,13434884,13565957,13631493,13697029,13959172,14090244,14155780,14352389,14417925,14483461,14614532,14745604,14811139,14876676,15073285,15138820,16252929,16777221,23199751],"bytes":[6750209,7208962,13762561,14024706,17563649,18087937,19070977,20905986,23265281],"byte":[1507330,2097154,2162690,3080194,6750209,6881282,7077889,7536644,7929858,8257539,8650755,8847363,8912898,9109507,9306115,9371651,9437187,9568259,9699331,10027011,10747907,10878979,11010051,11141134,11337731,11599886,11665411,12517378,12845058,13172738,13762564,13828100,13893634,14286850,14548997,15073283,15728654,15794181,16646145,16711685,16908289,17367041,17498113,17563655,17694722,17825806,17891329,18087942,18350081,18939905,19070983,19726338,19791873,20643843,20840450,21037057,21823491,22151169,22282241,22609934,22872078,22937614,23003150,23265281,23330817],"background":[393217,4128769,22740993],"boolean":[983041,1114113,1376257,1703937,1835009,1900545,2293761,2359297,3342337,3407873,3538945,3670017,3801089,4128769,4325377,4587521,4849665,5177345,5242881,5636097,6225921,6881281,7012353,7471105,7536641,7602177,7667713,7798792,7864328,7929859,8257540,8716296,9175041,9240577,10944513,11141128,11599880,11730947,13500419,14548996,14614529,14680068,15269892,15400964,15728648,15859716,15990788,16842756,16908290,16973828,17694721,17825800,18415620,18546689,19726337,19988484,20185089,20250625,20316161,20381697,20840449,21037058,21102593,21233665,21430273,21561345,21757953,22347777,22413313,22478849,22544385,22609928,22675464,22741000,22806536,22872072,22937608,23003144]} \ No newline at end of file diff --git a/docs/fti/FTI_99.json b/docs/fti/FTI_99.json index 5087784..4027d0c 100644 --- a/docs/fti/FTI_99.json +++ b/docs/fti/FTI_99.json @@ -1 +1 @@ -{"compare":[7864321,8257538,8585218],"comparetag":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"creates":[6553601,17760257,22740993],"connectaddress":[720897,1769474,20643841],"channelname":[8388611,8519683,8912899,9109507,9175043,9306115,9371651,9437187,9502723,9633795,9699331,9830403,9895939,9961475,10027011,10158083,10289155,10551299,10616835,10682371,11206659,11468803,12320771,12451843,13107203,13172739,13565955,13697027],"connecting":[720897,2293761,20643841],"check":[19398657],"collector":[16318465,22151169],"clientconnectionbuffertimeout":[720897,1572866,20643841],"connect":[720898,1769473,2228225,20643842],"collider2d":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"connectionid":[589826,1507331,8781826,19660802],"clears":[13238273,15532033,23461889],"controlling":[16580609,22544385],"changeownership":[9568257,10420226,21757953],"chunk":[16384001,17432577,18808833,20119553,22347777],"code":[7340033,15990785,23134209],"core":[393217,524289,1376257,3670018,3866626,4063234,4325378,4456450,4718594,4849666,5505026,5832706,6553601,6619137,6881282,7274497,7733249,8192002,8323076,8388610,8519682,8650754,8716290,8847361,8912898,8978434,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568257,9633794,9699330,9830402,9895938,9961474,10027010,10092546,10158082,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747905,10813442,10878980,11010050,11075586,11206658,11272194,11403266,11337730,11468802,11599874,11665410,11730946,11862018,12320770,12451842,13107202,13172738,13565954,13697026,15990785,16580609,16646146,17104898,17498113,17629185,17760258,17891329,18022401,18153474,18219010,18284546,18415618,18546690,18612226,18677762,18743299,18874371,18939906,19136514,19202050,19267585,19333122,19464193,19529730,19791874,19857410,19922946,20054017,20185090,20250626,20316162,20381697,20447233,20512770,20578306,20709378,20774913,20840449,20905986,21037057,21102594,21168130,21364737,21495810,21757955,21823490,21889025,22085634,22216705,22282242,22478849,22544387,22609922,22675459,22740995,22872067,23068675,23134211,23199745,23265281,23330817],"constantforce":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"cryptography":[6684673,16449538,16777217,17367042,23003139],"configuration":[17694721,20643841],"correctiondelay":[851969,4784130,23265281],"constructor":[6815745,6946817,7208961,7405569,7667713,7798785,8126465,8454145,8781825,9043969,10092545,10485761,11141121,11337729,11599873,11796481,12255233,14548993,16318465,17170433],"converts":[7077890,18808833,20119553,22347778],"channels":[720898,1835011,20643842],"connects":[1376257,5832705,22675457],"connectiondata":[720897,2031618,20643841],"clienti":[8519681,9109505,9175041,9371649,9502721,9633793,9895937,10682369,17104897],"clients":[720897,2228225,8519681,8847376,8912897,9109505,9175041,9306113,9371649,9437185,9502721,9633793,9764880,9830401,9895937,9961473,10027009,10223632,10289153,10551297,10682369,14942224,17629190,18677761,18939905,19464198,19791873,20381697,20447233,20643841,20840451,21168129,21299201,21495809,21561345,21692417,21757953,21889026,22216706,22675459,23134225,23199761,23265297,23330833],"client1":[8257539,8585219],"client2":[8257539,8585219],"checks":[7077891,16121857,20971521,21954561,22347779],"compensation":[720897,3014657,15990785,16580609,20643841,22544385,23068673],"connectionapproval":[720897,1900546,20643841],"contain":[19398657],"calls":[20840449,21168129,22675457],"classes":[15990785,16252929,16384002,16580609,16777217,17563649,17694721,23461889],"cryptographyhelper":[6684675,16449538,16777217,17367042,23003140],"connection":[720898,1376257,1900545,2031617,5505025,8781825,20643842,22675457],"createpool":[6553601,17760258,22740993],"camera":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"connectedclients":[18939906,20840449,22675457],"complete":[720897,1572865,20643841],"changes":[9568257,10420225,21757953],"cancelinvoke":[7733250,8847362,9568258,9764866,10223618,10747906,14942210,21757954,22675458,23068674,23134210,23199746,23265282,23330818],"connectport":[720897,2293762,20643841],"contact":[7602177],"channel":[131077,196609,983043,1179650,1245187,1703937,1835010,6160387,7208964,17694722,18350089,19005441],"clearcache":[13238274,15532033,23461889],"compareconfig":[5963777,7471108,20643841],"chunks":[7077895,16121861,17432579,18808836,20119556,20971527,21954566,22347783],"correct":[7077891,16121857,18808833,20119553,22347779],"copy":[917505,983041,1048577,1114113,1179649,1245185,1310721,1441793,1507329,1572865,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5832705,6029313,6356993,6488065,6815745,6881281,6946817,7012353,7143425,7208961,7340033,7405569,7471105,7536641,7667713,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9633793,9699329,9830401,9895937,9961473,10027009,10092545,10158081,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,15007745,15073281,15204353,15269889,15335425,15400961,15466497,15597569,15663105,15728641,15794177,15859713,15925249,16056321,16121857,16187393,16318465,16449537,16515073,16646145,16711681,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17760257,17825793,17956865,18153473,18219009,18284545,18350081,18415617,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19136513,19202049,19333121,19529729,19660801,19791873,19857409,19922945,20119553,20185089,20250625,20316161,20512769,20578305,20643841,20709377,20905985,20971521,21102593,21168129,21233665,21430273,21495809,21626881,21757953,21823489,21954561,22020097,22085633,22151169,22282241,22347777,22413313,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"clearbuffer":[17367042],"ctor":[14548993],"corrections":[851970,4784129,5046273,23265282],"collider":[20381697,20447233,20840449,21037057,21299201,21561345,21692417,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"connected":[18939905,19922945,20840450,22675458],"comparison":[17956865,19660801,19988481],"chunksize":[17432578,18808834,20119554],"coroutine":[7733249,8847361,9568257,9764865,10223617,10747905,14942209,21757953,22675457,23068673,23134209,23199745,23265281,23330817],"connectionapprovalcallback":[1376257,5505026,22675457],"compares":[5963777,7471105,20643841],"called":[6553604,6619137,8650753,8716289,8847363,8978433,9568260,9764866,10223618,10354689,10420225,11075585,11730945,14942210,17760257,18415617,18743297,18874369,19529729,21757956,22740996,22872065,23134211,23199746,23265282,23330818],"component":[7733286,8847398,9568294,9764902,10223654,10747942,14942246,15990788,16252931,20381716,20447252,20840468,21037077,21299221,21561364,21692436,21758012,22282241,22413313,22675516,23068734,23134267,23199805,23265340,23330876],"collections":[9109505,9175041,9633793,9895937,16121857,18808834,20119554,20971521,21954561],"callback":[1376260,4325377,5505025,5832705,6881281,9240577,22675460],"class":[131073,196609,262145,327681,393217,458753,524289,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1376257,1441793,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815746,6881281,6946818,7012353,7077889,7208962,7274497,7405570,7471105,7536641,7667714,7733249,7798786,7995393,8126466,8192001,8323073,8388609,8454146,8519681,8650753,8716289,8847369,8912897,8978433,9109506,9175041,9240577,9306114,9371649,9437185,9502722,9568257,9633793,9699329,9764873,9830401,9895939,9961474,10027009,10092546,10158082,10223625,10289155,10354689,10420225,10485762,10551299,10616835,10682371,10747905,10813441,10878977,10944513,11010049,11075585,11141122,11206657,11272193,11337730,11403265,11468801,11534337,11599874,11665409,11730945,11796482,11862017,11927553,11993089,12058625,12124161,12189697,12255234,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107203,13172738,13238273,13303809,13369345,13434881,13500417,13565955,13631489,13697027,13762561,13828097,13893633,13959170,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483459,14548994,14614529,14680065,14745601,14811137,14876673,14942217,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532035,15597569,15663105,15728641,15794177,15859713,15925249,15990786,16056321,16121857,16187393,16252929,16318465,16384003,16449537,16515073,16580612,16646145,16711681,16777218,16842753,16908289,17039361,17104897,17235969,17301505,17367041,17432577,17498113,17563649,17629187,17694722,17760257,17825793,17891330,18022402,18087937,18153473,18219009,18284545,18350083,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005443,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19726337,19791873,19857409,19922945,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643843,20709377,20774914,20840449,20905985,20971521,21037057,21102593,21168129,21233667,21299201,21364737,21430275,21495809,21561345,21626884,21692417,21757955,21823489,21889026,21954561,22020099,22085633,22151170,22216706,22282241,22347779,22413313,22478850,22544387,22609921,22675459,22740995,22806531,22872067,22937603,23003139,23068675,23134220,23199755,23265291,23330827,23396354,23461893],"checking":[720897,1966081,20643841],"cache":[7995395,13238273,15532033,23461889],"clientid":[655361,3997698,5767171,7143425,7274497,7929857,8060929,8388612,8847364,9043971,9699332,9764868,10158084,10223620,10354691,10420225,10616836,14942212,17104899,17170433,17694721,17891330,18219009,18546689,19267585,19660805,20054018,20381697,20447233,20840449,21168129,21233665,21299201,21561345,21692417,21757953,22544385,22675457,23134213,23199749,23265285,23330821],"client":[589827,655363,720898,1310721,1376258,1507329,1572865,2031617,2162689,3145729,3342337,3735553,5832705,6881281,7143425,8388609,8716289,8847373,9043969,9568257,9699329,9764877,10158081,10223629,10616833,10747907,10813441,11075585,11206657,11272193,11468801,11665409,12320769,12451841,13107201,13172737,13565953,13697025,14942221,17563650,17694721,17891330,18022402,18284545,19136513,19333121,19660803,19922945,20054018,20381698,20643843,20774914,20840451,21168129,21233667,21299202,21364738,21561346,21692418,21757953,22478850,22675464,22806529,22937601,23134223,23199759,23265295,23330831],"current":[1376257,4718593,5767169,5963777,7471105,7864323,19660801,20643841,22675457],"clientids":[8519682,9109506,9175042,9371650,9502722,9633794,9895938,10682370],"change":[131073,196609,262145,327681,458753,393217,524289,589825,655361,720897,786433,851970,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177346,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265282,23330817,23396353,23461889],"counter":[8192002],"constructors":[18350081,19005441,19660801,20643841,21233665,21430273,21626881,21757953,22020097,22151169,22675457,22806529,22937601,23068673,23134209,23199745,23265281,23330817]} \ No newline at end of file +{"compare":[7471106,7602177,7667714],"comparetag":[7798785,7864321,8716289,11141121,11599873,15728641,17825793,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"creates":[6488065,22085633,23461889],"connectaddress":[262145,1966082,19595265],"channelname":[8650755,8847363,8978435,9109507,9306115,9371651,9437187,9568259,9699331,9764867,9895939,10027011,10092547,10158083,10289155,10616835,10747907,10878979,11010051,11337731,11403267,11665411,11862019,11993091,12124163,12451843,12582915,12976131],"connecting":[262145,2752513,19595265],"check":[17104897],"collector":[17301505,23265281],"clientconnectionbuffertimeout":[262145,1769474,19595265],"connect":[262146,1966081,2031617,19595266],"collider2d":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"connectionid":[196610,1441795,8257538,21037058],"clears":[13369345,18874369,23134209],"controlling":[16384001,23396353],"changeownership":[7798785,9633794,22675457],"chunk":[15794177,16252929,16711681,18087937,23330817],"code":[9043969,16056321,22609921],"core":[393217,655361,720897,3407874,3932162,4063234,4128770,4194306,4325378,5046274,6356994,6488065,6684673,6815746,6881282,7143425,7798785,7864321,8060930,8454146,8519682,8585218,8650754,8716289,8781828,8847362,8912898,8978434,9109506,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,11010050,11075588,11272194,11337730,11403266,11534338,11599873,11665410,11796482,11862018,11993090,12124162,12451842,12582914,12976130,15532034,15663107,15925251,16056321,16384001,16449538,16646145,17039361,17367041,17498113,17760257,17891329,17956865,18153473,18219009,18350081,18546690,18677761,18743298,18939905,19267586,20054018,20119554,20185090,20250626,20316162,20381698,20512771,20643841,20709378,20971522,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21757954,21823489,21889026,21954562,22020098,22085634,22151169,22216706,22282241,22347778,22413314,22478850,22544386,22609923,22675459,22740995,22806531,22872065,22937601,23003137,23396355,23461891],"constantforce":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"cryptography":[7208961,16515073,17563650,19070978,20905987],"configuration":[19398657,19595265],"correctiondelay":[917505,4915202,22937601],"constructor":[6946817,7274497,7405569,7733249,7995393,8126465,8192001,8257537,8323073,8388609,9502721,10354689,10485761,10813441,12189697,12320769,12779521,15073281,16908289,17301505],"converts":[7077890,15794177,16711681,23330818],"channels":[262146,1638403,19595266],"connects":[393217,4194305,22740993],"connectiondata":[262145,2097154,19595265],"clienti":[9109505,9371649,9699329,9764865,10289153,10878977,11403265,11993089,21626881],"clients":[262145,2031617,8847361,8978433,9109505,9306113,9371649,9568257,9699329,9764865,10027009,10092545,10289153,10616833,10878977,11141136,11403265,11599888,11993089,12976129,15728656,17367042,17760257,17825808,17891330,18153473,18219011,18284545,18481153,18612225,19595265,20119553,20643846,20709377,20971521,21430273,21823494,22347777,22609937,22675457,22740995,22872081,22937617,23003153],"client1":[7471107,7667715],"client2":[7471107,7667715],"checks":[7077891,17694721,19726337,20840449,23330819],"compensation":[262145,2621441,16056321,16384001,19595265,22806529,23396353],"connectionapproval":[262145,1703938,19595265],"contain":[17104897],"calls":[18219009,20709377,22740993],"classes":[16056321,16121857,16252930,16384001,16515073,19202049,19398657,23134209],"cryptographyhelper":[7208963,16515073,17563650,19070978,20905988],"connection":[262146,393217,1703937,2097153,6881281,8257537,19595266,22740993],"createpool":[6488065,22085634,23461889],"camera":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"connectedclients":[18219009,20119554,22740993],"complete":[262145,1769473,19595265],"changes":[7798785,9633793,22675457],"cancelinvoke":[7798786,7864322,8716290,11141122,11599874,15728642,17825794,22609922,22675458,22740994,22806530,22872066,22937602,23003138],"connectport":[262145,2752514,19595265],"contact":[5570561],"channel":[131077,589825,983043,1114113,1179651,1572866,1638402,5111811,7274500,19398658,19857417,20578305],"clearcache":[13369346,18874369,23134209],"compareconfig":[5898241,7536644,19595265],"chunks":[7077895,15794180,16711684,17694727,18087939,19726342,20840453,23330823],"correct":[7077891,15794177,16711681,20840449,23330819],"copy":[983041,1048577,1114113,1179649,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5177345,5242881,5373953,5439489,5505025,5636097,5701633,5963777,6225921,6356993,6422529,6619137,6815745,6881281,6946817,7012353,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11206657,11272193,11337729,11403265,11468801,11534337,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15794177,15859713,15925249,15990785,16187393,16318465,16449537,16711681,16777217,16842753,16973825,17170433,17301505,17563649,17694721,18087937,18415617,18546689,18743297,18808833,19005441,19070977,19136513,19267585,19529729,19595265,19660801,19726337,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21889025,21954561,22020097,22085633,22216705,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"clearbuffer":[19070978],"ctor":[15073281],"corrections":[917506,4653057,4915201,22937602],"collider":[17760257,17956865,18153473,18219009,18284545,18481153,18612225,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"connected":[18219010,20119553,20250625,22740994],"comparison":[17629185,19005441,21037057],"chunksize":[15794178,16711682,18087938],"coroutine":[7798785,7864321,8716289,11141121,11599873,15728641,17825793,22609921,22675457,22740993,22806529,22872065,22937601,23003137],"connectionapprovalcallback":[393217,6881282,22740993],"compares":[5898241,7536641,19595265],"called":[6488068,6684673,7798788,8060929,8454145,8585217,9633793,9830401,9961473,10223617,11141122,11599875,15532033,15663105,15728642,15925249,16449537,17825794,20512769,22085633,22609923,22675460,22872066,22937602,23003138,23461892],"component":[7798822,7864358,8716326,11141158,11599910,15728678,16056324,16121859,17760276,17825830,17956885,18153492,18219028,18284564,18481172,18612245,21495809,21692417,22609979,22675516,22741052,22806590,22872125,22937660,23003196],"collections":[9109505,9699329,9764865,11403265,15794178,16711682,17694721,19726337,20840449],"callback":[393220,4063233,4194305,5046273,6881281,8912897,22740996],"class":[131073,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5636097,5701633,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946818,7012353,7077889,7143425,7208961,7274498,7405570,7536641,7733250,7798785,7864321,7929857,7995394,8060929,8126466,8192002,8323074,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978434,9109505,9306113,9371649,9437185,9502722,9568257,9633793,9699329,9764867,9830401,9895938,9961473,10027009,10092547,10158083,10223617,10289155,10354690,10420225,10485762,10551297,10616835,10682369,10747905,10813442,10878977,10944513,11010049,11075585,11141129,11206657,11272193,11337729,11403266,11468801,11534337,11599881,11665409,11730945,11796481,11862018,11927553,11993090,12058625,12124163,12189698,12255233,12320770,12386305,12451843,12517377,12582915,12648449,12713985,12779522,12845057,12910593,12976130,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893634,13959169,14024705,14090241,14155777,14221313,14286851,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073282,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728649,15794177,15859713,15925249,15990785,16056322,16121857,16187393,16252931,16318465,16384004,16449537,16515074,16646145,16711681,16777217,16842753,16973825,17039361,17170433,17235969,17301505,17367042,17432577,17498114,17563649,17694721,17760257,17825801,17891330,17956865,18022401,18087937,18153473,18219009,18284545,18350082,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874371,18939906,19070977,19136515,19202049,19267585,19333121,19398658,19464193,19529731,19595267,19660804,19726337,19791873,19857411,19922947,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447235,20512771,20578307,20643843,20709377,20774913,20840449,20905987,20971521,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282242,22347777,22413313,22478849,22544385,22609932,22675459,22740995,22806531,22872075,22937611,23003147,23068674,23134213,23199747,23265282,23330819,23396355,23461891],"checking":[262145,2555905,19595265],"cache":[7929859,13369345,18874369,23134209],"clientid":[524289,3735554,5767171,7143425,7340033,8388611,8650756,9175041,9240577,9437188,9633793,9895940,10158084,10223619,11141124,11599876,15728644,16908289,17039361,17498114,17760257,17825796,18153473,18219009,18284545,18481153,18612225,19267585,19398657,19922945,20709377,21037061,21626883,22151170,22216705,22609925,22675457,22740993,22872069,22937605,23003141,23396353],"client":[196611,262146,393218,524291,1441793,1507329,1769473,2097153,2162689,3080193,3211265,4194305,4390913,5046273,7340033,7798785,7864323,8388609,8454145,8650753,9437185,9830401,9895937,10158081,10551297,10682369,10747905,11010049,11141133,11337729,11534337,11599885,11665409,11862017,12124161,12451841,12582913,15728653,16646146,17498114,17760258,17825805,18219011,18284546,18350082,18481154,18612226,18939906,19136513,19202050,19398657,19529729,19595267,19922947,20185089,20250625,20709377,21037059,21102593,21233665,22151170,22282242,22609935,22675457,22741000,22872079,22937615,23003151],"current":[393217,3932161,5767169,5898241,7536641,7602179,19595265,21037057,22740993],"clientids":[9109506,9371650,9699330,9764866,10289154,10878978,11403266,11993090],"change":[131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917506,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012354,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937602,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889],"counter":[8519682],"constructors":[19136513,19529729,19595265,19660801,19857409,19922945,20447233,20578305,21037057,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23199745,23265281]} \ No newline at end of file diff --git a/docs/fti/FTI_Files.json b/docs/fti/FTI_Files.json index 920fc27..c8bd8ef 100644 --- a/docs/fti/FTI_Files.json +++ b/docs/fti/FTI_Files.json @@ -1 +1 @@ -["MLAPI API Reference - Redirect\u0000index.html\u000018","MLAPI API Reference - Search\u0000search.html\u000012","Channel Fields\u0000html/Fields_T_MLAPI_Data_Channel.htm\u000059","MessageType Fields\u0000html/Fields_T_MLAPI_Data_MessageType.htm\u000056","NetworkedPrefab Fields\u0000html/Fields_T_MLAPI_Data_NetworkedPrefab.htm\u000053","SyncedVar Fields\u0000html/Fields_T_MLAPI_Attributes_SyncedVar.htm\u000065","NetworkedBehaviour Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u000049","TransportHost Fields\u0000html/Fields_T_MLAPI_Data_TransportHost.htm\u000067","NetworkedObject Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u000046","NetId Fields\u0000html/Fields_T_MLAPI_Data_NetId.htm\u000059","NetworkedClient Fields\u0000html/Fields_T_MLAPI_Data_NetworkedClient.htm\u000066","NetworkConfig Fields\u0000html/Fields_T_MLAPI_Data_NetworkConfig.htm\u0000355","NetworkedAnimator Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u000070","NetworkedNavMeshAgent Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u000085","SyncedVar.target Field\u0000html/F_MLAPI_Attributes_SyncedVar_target.htm\u000081","Channel.Name Field\u0000html/F_MLAPI_Data_Channel_Name.htm\u000073","SyncedVar.hook Field\u0000html/F_MLAPI_Attributes_SyncedVar_hook.htm\u000079","MessageType.Name Field\u0000html/F_MLAPI_Data_MessageType_Name.htm\u000073","Channel.Type Field\u0000html/F_MLAPI_Data_Channel_Type.htm\u000072","Channel.Encrypted Field\u0000html/F_MLAPI_Data_Channel_Encrypted.htm\u000076","NetId.HostId Field\u0000html/F_MLAPI_Data_NetId_HostId.htm\u000074","NetworkingManager Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000128","NetworkConfig.AllowPassthroughMessages Field\u0000html/F_MLAPI_Data_NetworkConfig_AllowPassthroughMessages.htm\u000078","NetId.ConnectionId Field\u0000html/F_MLAPI_Data_NetId_ConnectionId.htm\u000074","NetworkConfig.ClientConnectionBufferTimeout Field\u0000html/F_MLAPI_Data_NetworkConfig_ClientConnectionBufferTimeout.htm\u000083","NetworkedTransform Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000124","MessageType.Passthrough Field\u0000html/F_MLAPI_Data_MessageType_Passthrough.htm\u000078","NetworkConfig.ConnectAddress Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectAddress.htm\u000073","NetworkConfig.Channels Field\u0000html/F_MLAPI_Data_NetworkConfig_Channels.htm\u000079","NetworkConfig.ConnectionApproval Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectionApproval.htm\u000075","NetworkConfig.EventTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_EventTickrate.htm\u000086","NetworkConfig.ConnectionData Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectionData.htm\u000090","NetworkConfig.EnableSceneSwitching Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableSceneSwitching.htm\u000075","NetId.Meta Field\u0000html/F_MLAPI_Data_NetId_Meta.htm\u000073","NetworkConfig.MaxConnections Field\u0000html/F_MLAPI_Data_NetworkConfig_MaxConnections.htm\u000077","NetworkConfig.ConnectPort Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectPort.htm\u000077","NetworkConfig.MessageBufferSize Field\u0000html/F_MLAPI_Data_NetworkConfig_MessageBufferSize.htm\u000083","NetworkConfig.HandleObjectSpawning Field\u0000html/F_MLAPI_Data_NetworkConfig_HandleObjectSpawning.htm\u000078","NetworkConfig.NetworkedPrefabs Field\u0000html/F_MLAPI_Data_NetworkConfig_NetworkedPrefabs.htm\u000079","NetworkConfig.ReceiveTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_ReceiveTickrate.htm\u000085","NetworkConfig.RSAPrivateKey Field\u0000html/F_MLAPI_Data_NetworkConfig_RSAPrivateKey.htm\u000078","NetworkConfig.EnableEncryption Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableEncryption.htm\u000074","NetworkConfig.EnableTimeResync Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableTimeResync.htm\u000097","NetworkConfig.MaxReceiveEventsPerTickRate Field\u0000html/F_MLAPI_Data_NetworkConfig_MaxReceiveEventsPerTickRate.htm\u000084","NetworkConfig.MessageTypes Field\u0000html/F_MLAPI_Data_NetworkConfig_MessageTypes.htm\u000076","NetworkConfig.ProtocolVersion Field\u0000html/F_MLAPI_Data_NetworkConfig_ProtocolVersion.htm\u000080","NetworkConfig.SecondsHistory Field\u0000html/F_MLAPI_Data_NetworkConfig_SecondsHistory.htm\u000079","NetworkConfig.RSAPublicKey Field\u0000html/F_MLAPI_Data_NetworkConfig_RSAPublicKey.htm\u000078","NetworkedClient.OwnedObjects Field\u0000html/F_MLAPI_Data_NetworkedClient_OwnedObjects.htm\u000080","NetworkConfig.ServerTransports Field\u0000html/F_MLAPI_Data_NetworkConfig_ServerTransports.htm\u000080","NetworkConfig.RegisteredScenes Field\u0000html/F_MLAPI_Data_NetworkConfig_RegisteredScenes.htm\u000086","NetworkedClient.AesKey Field\u0000html/F_MLAPI_Data_NetworkedClient_AesKey.htm\u000078","NetworkedPrefab.playerPrefab Field\u0000html/F_MLAPI_Data_NetworkedPrefab_playerPrefab.htm\u000075","TransportHost.Websockets Field\u0000html/F_MLAPI_Data_TransportHost_Websockets.htm\u000081","NetworkConfig.SendTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_SendTickrate.htm\u000082","TransportHost.Name Field\u0000html/F_MLAPI_Data_TransportHost_Name.htm\u000073","NetworkedBehaviour.SyncVarSyncDelay Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SyncVarSyncDelay.htm\u000078","NetworkedClient.PlayerObject Field\u0000html/F_MLAPI_Data_NetworkedClient_PlayerObject.htm\u000073","NetworkConfig.SignKeyExchange Field\u0000html/F_MLAPI_Data_NetworkConfig_SignKeyExchange.htm\u000079","NetworkedObject.NetworkedPrefabName Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkedPrefabName.htm\u000075","NetworkedPrefab.prefab Field\u0000html/F_MLAPI_Data_NetworkedPrefab_prefab.htm\u000073","NetworkedClient.ClientId Field\u0000html/F_MLAPI_Data_NetworkedClient_ClientId.htm\u000073","NetworkingManager.DontDestroy Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DontDestroy.htm\u000081","TransportHost.Port Field\u0000html/F_MLAPI_Data_TransportHost_Port.htm\u000075","NetworkedAnimator.param4 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param4.htm\u000086","NetworkedAnimator.param0 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param0.htm\u000086","NetworkingManager.OnServerStarted Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnServerStarted.htm\u000079","NetworkedAnimator.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ProximityRange.htm\u000073","NetworkingManager.RegenerateRSAKeys Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RegenerateRSAKeys.htm\u000091","NetworkedAnimator.param5 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param5.htm\u000086","NetworkedNavMeshAgent.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_ProximityRange.htm\u000073","NetworkedAnimator.param1 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param1.htm\u000086","NetworkingManager.NetworkConfig Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkConfig.htm\u000073","NetworkedNavMeshAgent.CorrectionDelay Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_CorrectionDelay.htm\u000076","NetworkingManager.RunInBackground Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RunInBackground.htm\u000083","NetworkedAnimator.param2 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param2.htm\u000086","NetworkedTransform.InterpolatePosition Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolatePosition.htm\u000072","NetworkedNavMeshAgent.DriftCorrectionPercentage Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_DriftCorrectionPercentage.htm\u000076","NetworkedTransform.InterpolateServer Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolateServer.htm\u000074","NetworkedNavMeshAgent.WarpOnDestinationChange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_WarpOnDestinationChange.htm\u000076","NetworkedAnimator.param3 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param3.htm\u000086","NetworkedTransform.AssumeSyncedSends Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_AssumeSyncedSends.htm\u000083","NetworkedAnimator.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_EnableProximity.htm\u000073","NetworkedNavMeshAgent.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_EnableProximity.htm\u000073","NetworkingManager.ConnectionApprovalCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectionApprovalCallback.htm\u0000120","NetworkedTransform.MinDegrees Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinDegrees.htm\u000080","TransportHost Methods\u0000html/Methods_T_MLAPI_Data_TransportHost.htm\u000087","BinaryIgnore Methods\u0000html/Methods_T_MLAPI_Attributes_BinaryIgnore.htm\u0000103","NetId Methods\u0000html/Methods_T_MLAPI_Data_NetId.htm\u0000125","NetworkingManager.OnClientConnectedCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientConnectedCallback.htm\u000084","SyncedVar Methods\u0000html/Methods_T_MLAPI_Attributes_SyncedVar.htm\u0000103","NetworkConfig Methods\u0000html/Methods_T_MLAPI_Data_NetworkConfig.htm\u0000109","NetworkedTransform.MinMeters Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinMeters.htm\u000080","NetworkedClient Methods\u0000html/Methods_T_MLAPI_Data_NetworkedClient.htm\u000087","Channel Methods\u0000html/Methods_T_MLAPI_Data_Channel.htm\u000087","NetworkedPrefab Methods\u0000html/Methods_T_MLAPI_Data_NetworkedPrefab.htm\u000087","MessageType Methods\u0000html/Methods_T_MLAPI_Data_MessageType.htm\u000087","NetworkedTransform.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_ProximityRange.htm\u000076","BitReader Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm\u0000111","NetworkedTransform.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_EnableProximity.htm\u000074","NetworkPoolManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000121","NetworkSceneManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u000056","CryptographyHelper Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u000090","BitWriter Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm\u0000129","BinaryIgnore Constructor\u0000html/M_MLAPI_Attributes_BinaryIgnore__ctor.htm\u000072","NetworkingManager.OnClientDisconnectCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientDisconnectCallback.htm\u000084","SyncedVar Constructor\u0000html/M_MLAPI_Attributes_SyncedVar__ctor.htm\u000072","NetworkedTransform.SendsPerSecond Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SendsPerSecond.htm\u000073","MessageChunker Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000133","NetId.GetClientId Method\u0000html/M_MLAPI_Data_NetId_GetClientId.htm\u000079","Channel Constructor\u0000html/M_MLAPI_Data_Channel__ctor.htm\u000072","LagCompensationManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000086","NetId.GetHashCode Method\u0000html/M_MLAPI_Data_NetId_GetHashCode.htm\u0000105","NetworkedPrefab Constructor\u0000html/M_MLAPI_Data_NetworkedPrefab__ctor.htm\u000072","NetworkConfig.CompareConfig Method\u0000html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm\u0000138","NetworkedTransform.SnapDistance Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SnapDistance.htm\u000077","General Error\u0000html/GeneralError.htm\u000033","MessageType Constructor\u0000html/M_MLAPI_Data_MessageType__ctor.htm\u000072","TrackedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000656","TransportHost Constructor\u0000html/M_MLAPI_Data_TransportHost__ctor.htm\u000072","NetId.Equals Method\u0000html/M_MLAPI_Data_NetId_Equals.htm\u0000122","NetId.IsHost Method\u0000html/M_MLAPI_Data_NetId_IsHost.htm\u000090","NetworkConfig.GetConfig Method\u0000html/M_MLAPI_Data_NetworkConfig_GetConfig.htm\u0000140","NetId.IsInvalid Method\u0000html/M_MLAPI_Data_NetId_IsInvalid.htm\u000092","NetworkConfig Constructor\u0000html/M_MLAPI_Data_NetworkConfig__ctor.htm\u000072","NetworkedBehaviour.DeregisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_DeregisterMessageHandler.htm\u000099","NetId.Equality Operator\u0000html/M_MLAPI_Data_NetId_op_Equality.htm\u0000135","NetworkedBehaviour.GetNetworkedObject Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm\u0000136","NetworkedBehaviour.SendToClient Method (UInt32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u0000149","NetworkedClient Constructor\u0000html/M_MLAPI_Data_NetworkedClient__ctor.htm\u000072","NetworkedBehaviour.SendToClientsTarget Method (UInt32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm\u0000157","NetId.Inequality Operator\u0000html/M_MLAPI_Data_NetId_op_Inequality.htm\u0000137","NetworkedBehaviour.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_NetworkStart.htm\u000084","NetworkedBehaviour.OnGainedOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnGainedOwnership.htm\u000080","NetId Constructor (Byte, UInt16, Boolean, Boolean)\u0000html/M_MLAPI_Data_NetId__ctor.htm\u0000142","NetworkedBehaviour Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001417","NetworkedBehaviour.SendToClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm\u0000128","NetworkedBehaviour.OnLostOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnLostOwnership.htm\u000078","NetId Constructor (UInt32)\u0000html/M_MLAPI_Data_NetId__ctor_1.htm\u000092","NetworkedBehaviour.SendToClientsTarget(T) Method (List(UInt32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm\u0000168","NetworkedBehaviour.SendToClients Method (List(UInt32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000154","NetworkedBehaviour.RegisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm\u0000135","NetworkedBehaviour.SendToClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm\u0000134","NetworkedBehaviour.SendToClients Method (UInt32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm\u0000149","NetworkedBehaviour.SendToNonLocalClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u0000133","NetworkedBehaviour.SendToClientsTarget(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm\u0000163","NetworkedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000704","NetworkedBehaviour.SendToClientsTarget Method (List(UInt32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000162","NetworkedBehaviour.SendToClientTarget Method (UInt32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u0000157","NetworkedNavMeshAgent Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00001643","NetworkedBehaviour.SendToNonLocalClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u0000142","NetworkedBehaviour.SendToClients(T) Method (List(Int32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm\u0000162","NetworkedBehaviour.SendToClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm\u0000143","NetworkedBehaviour.SendToClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm\u0000137","NetworkedBehaviour Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour__ctor.htm\u000074","NetworkedBehaviour.SendToClientTarget(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm\u0000163","NetworkedAnimator Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00001657","NetworkedBehaviour.SendToNonLocalClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm\u0000150","NetworkedObject.SpawnWithOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnWithOwnership.htm\u0000100","NetworkedObject.ChangeOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_ChangeOwnership.htm\u000094","NetworkedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject__ctor.htm\u000074","NetworkedBehaviour.SendToNonLocalClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm\u0000141","NetworkedBehaviour.SendToClient(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm\u0000157","NetworkedBehaviour.SendToClients(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm\u0000157","NetworkingManager Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000689","NetworkingManager.StartClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm\u000071","NetworkingManager.StartHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm\u0000177","NetworkedAnimator.SetTrigger Method (String)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger_1.htm\u0000107","NetworkingManager.StopServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm\u000072","NetworkedObject.RemoveOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_RemoveOwnership.htm\u000084","NetworkedAnimator Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator__ctor.htm\u000074","NetworkedBehaviour.SendToLocalClient Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u0000127","NetworkingManager.StartClientWebsocket Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm\u000073","NetworkingManager Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager__ctor.htm\u000074","NetworkingManager.StartServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm\u000071","NetworkedBehaviour.SendToServer Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u0000127","NetworkedNavMeshAgent.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_NetworkStart.htm\u000072","TrackedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_TrackedObject__ctor.htm\u000074","NetworkingManager.StopClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm\u000072","NetworkedObject.Spawn Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_Spawn.htm\u000082","NetworkedNavMeshAgent Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent__ctor.htm\u000074","NetworkingManager.StopHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm\u000072","NetworkedAnimator.GetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_GetParameterAutoSend.htm\u0000126","NetworkedTransform.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_NetworkStart.htm\u000072","NetworkedAnimator.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_NetworkStart.htm\u000072","BitReader.ReadLong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLong.htm\u0000105","BitReader.ReadByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByte.htm\u0000105","NetworkedTransform Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform__ctor.htm\u000074","NetworkedBehaviour.SendToLocalClientTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u0000141","NetworkedAnimator.ResetParameterOptions Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ResetParameterOptions.htm\u000069","NetworkedBehaviour.SendToServerTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u0000136","BitReader.ReadUIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUIntArray.htm\u0000154","BinaryHelpers.SwapEndian Method (UInt32)\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm\u0000150","BitReader.ReadLongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLongArray.htm\u0000154","BitReader.ReadByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByteArray.htm\u0000154","BitReader.ReadULong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULong.htm\u0000105","NetworkedAnimator.SetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetParameterAutoSend.htm\u0000139","BinaryHelpers.SwapEndian Method (UInt64)\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian_1.htm\u0000150","BitReader.ReadSByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByte.htm\u0000105","BitReader.ReadDouble Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDouble.htm\u0000105","NetworkedBehaviour.SendToServerTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm\u0000144","NetworkedBehaviour.SendToLocalClientTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm\u0000147","BinarySerializer.ClearCache Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_ClearCache.htm\u000075","NetworkedAnimator.SetTrigger Method (Int32)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u0000107","BitReader.ReadULongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULongArray.htm\u0000154","BitReader.ReadDoubleArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDoubleArray.htm\u0000154","BitReader.ReadSByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByteArray.htm\u0000154","NetworkedBehaviour.SendToServer(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm\u0000135","BitReader.ReadUShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShort.htm\u0000105","NetworkedBehaviour.SendToLocalClient(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm\u0000135","BitReader.ReadUShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShortArray.htm\u0000154","BitReader.ReadFloat Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloat.htm\u0000105","BitReader.ReadShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShort.htm\u0000105","BinarySerializer.Deserialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Deserialize__1.htm\u0000122","BitWriter.WriteBool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteBool.htm\u0000120","BitReader.SkipPadded Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_SkipPadded.htm\u000084","BitWriter.WriteIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteIntArray.htm\u0000174","BitWriter.WriteSByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByteArray.htm\u0000174","BitWriter.WriteByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByte.htm\u0000120","BitReader.ReadShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShortArray.htm\u0000154","BitReader.ReadFloatArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloatArray.htm\u0000154","BinarySerializer.Serialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Serialize__1.htm\u0000112","BitReader Constructor\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader__ctor.htm\u0000113","BitWriter.WriteShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShort.htm\u0000120","BitReader.ReadString Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadString.htm\u0000105","BitWriter.WriteByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByteArray.htm\u0000174","BitWriter.WriteLong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLong.htm\u0000120","BitReader.ReadBool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadBool.htm\u0000105","NetworkedTransform Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00001643","BitWriter.Dispose Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Dispose.htm\u000078","BitReader.ReadInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadInt.htm\u0000105","BinaryHelpers Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm\u000038","BitWriter.WriteDouble Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDouble.htm\u0000120","BitReader.ReadUInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUInt.htm\u0000105","BitWriter.WriteShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShortArray.htm\u0000174","BitWriter.WriteUShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShort.htm\u0000120","BitWriter.WriteLongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLongArray.htm\u0000174","BinarySerializer Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u000067","BitWriter.WriteString Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteString.htm\u0000120","BitWriter.Finalize Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm\u000092","BitWriter.WriteDoubleArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDoubleArray.htm\u0000174","BitWriter.WriteSByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByte.htm\u0000120","BitReader.ReadIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadIntArray.htm\u0000154","BitWriter.WriteUShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShortArray.htm\u0000174","MLAPI.MonoBehaviours.Core Namespace\u0000html/N_MLAPI_MonoBehaviours_Core.htm\u000071","BitWriter.WriteUInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUInt.htm\u0000120","MessageChunker.IsOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_IsOrdered.htm\u0000114","BitWriter.WriteFloat Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloat.htm\u0000120","MLAPI.MonoBehaviours.Prototyping Namespace\u0000html/N_MLAPI_MonoBehaviours_Prototyping.htm\u000045","BitWriter Constructor\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter__ctor.htm\u000072","MLAPI.NetworkingManagerComponents.Binary Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Binary.htm\u000041","CryptographyHelper.Decrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Decrypt.htm\u0000137","BitWriter.Finalize Method (Byte[])\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize_1.htm\u0000131","MLAPI.NetworkingManagerComponents.Core Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Core.htm\u000046","LagCompensationManager.Simulate Method (Single, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u0000123","BitWriter.WriteUIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUIntArray.htm\u0000174","MLAPI.NetworkingManagerComponents.Cryptography Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Cryptography.htm\u000030","BitWriter.WriteFloatArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloatArray.htm\u0000174","BitWriter.GetFinalizeSize Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_GetFinalizeSize.htm\u000088","NetId Operators\u0000html/Operators_T_MLAPI_Data_NetId.htm\u000072","BitWriter.WriteULong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULong.htm\u0000120","LagCompensationManager.Simulate Method (UInt32, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate_1.htm\u0000136","NetId Constructor\u0000html/Overload_MLAPI_Data_NetId__ctor.htm\u000066","BitWriter.WriteInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteInt.htm\u0000120","BitWriter.WriteAlignBits Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteAlignBits.htm\u000084","CryptographyHelper.Encrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Encrypt.htm\u0000142","MessageChunker.GetChunkedMessage Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetChunkedMessage.htm\u0000132","LagCompensationManager Properties\u0000html/Properties_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000043","MLAPI.Attributes Namespace\u0000html/N_MLAPI_Attributes.htm\u000059","NetworkedBehaviour.SendToClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000159","MLAPI.Data Namespace\u0000html/N_MLAPI_Data.htm\u000073","NetworkPoolManager.CreatePool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_CreatePool.htm\u0000137","BitWriter.WriteULongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULongArray.htm\u0000174","NetworkedBehaviour.SendToClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u000081","NetId.ServerNetId Property\u0000html/P_MLAPI_Data_NetId_ServerNetId.htm\u000085","NetworkedBehaviour.SendToServerTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u000087","NetworkedAnimator.SetTrigger Method\u0000html/Overload_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u000042","NetworkedBehaviour.networkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkId.htm\u000088","NetworkedObject.OwnerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_OwnerClientId.htm\u000086","NetworkedBehaviour.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isClient.htm\u000084","Channel Class\u0000html/T_MLAPI_Data_Channel.htm\u0000177","NetworkPoolManager.DestroyPool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPool.htm\u0000101","BinaryHelpers.SwapEndian Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm\u000040","NetworkedBehaviour.ownerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm\u000084","NetworkedObject.PoolId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_PoolId.htm\u000085","NetworkedObject.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isLocalPlayer.htm\u000088","NetworkPoolManager.DestroyPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPoolObject.htm\u0000111","MessageChunker.GetMessageOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageOrdered.htm\u0000176","NetworkPoolManager.SpawnPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_SpawnPoolObject.htm\u0000161","NetworkingManager.ConnectedClients Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectedClients.htm\u000095","MessageType Class\u0000html/T_MLAPI_Data_MessageType.htm\u0000171","BitWriter.Finalize Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm\u000055","NetworkedBehaviour.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isHost.htm\u000090","NetworkedObject.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isOwner.htm\u000087","LagCompensationManager.Simulate Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u000088","NetworkingManager.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isClient.htm\u000085","Page Not Found\u0000html/PageNotFound.htm\u000067","NetworkedBehaviour.SendToClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000205","NetworkSceneManager.SwitchScene Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager_SwitchScene.htm\u0000101","BinaryIgnore Properties\u0000html/Properties_T_MLAPI_Attributes_BinaryIgnore.htm\u000047","NetId Structure\u0000html/T_MLAPI_Data_NetId.htm\u0000270","SyncedVar Properties\u0000html/Properties_T_MLAPI_Attributes_SyncedVar.htm\u000047","NetworkedBehaviour.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isLocalPlayer.htm\u000088","NetworkedObject.isPlayerObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPlayerObject.htm\u000085","NetworkingManager.IsClientConnected Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_IsClientConnected.htm\u000085","NetId Properties\u0000html/Properties_T_MLAPI_Data_NetId.htm\u000044","NetworkedBehaviour.SendToClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u000095","MessageChunker.GetMessageUnordered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageUnordered.htm\u0000178","NetworkedObject.isPooledObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPooledObject.htm\u000086","NetworkedBehaviour.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isOwner.htm\u000087","NetworkingManager.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isHost.htm\u000084","NetworkedBehaviour Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u0000364","NetworkedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000369","NetworkedObject.isSpawned Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isSpawned.htm\u000088","NetworkingManager.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isServer.htm\u000085","NetworkConfig Class\u0000html/T_MLAPI_Data_NetworkConfig.htm\u0000498","NetworkedBehaviour.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isServer.htm\u000084","NetworkedBehaviour.SendToLocalClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u000069","NetworkingManager Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000367","NetworkedObject.NetworkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkId.htm\u000090","MessageChunker.HasDuplicates Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasDuplicates.htm\u0000134","TrackedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000305","NetworkedBehaviour.networkedObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkedObject.htm\u000085","NetworkingManager.MyClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_MyClientId.htm\u000091","NetworkedClient Class\u0000html/T_MLAPI_Data_NetworkedClient.htm\u0000173","NetworkedAnimator Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u0000432","NetworkedBehaviour.SendToLocalClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u000095","BitReader Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm\u0000181","NetworkingManager.NetworkTime Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkTime.htm\u000097","NetworkedNavMeshAgent Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u0000420","NetworkedPrefab Class\u0000html/T_MLAPI_Data_NetworkedPrefab.htm\u0000169","NetworkedTransform Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000420","NetworkedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u00001120","NetworkingManager.singleton Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_singleton.htm\u000084","NetworkedBehaviour.SendToNonLocalClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u000081","MessageChunker.HasMissingParts Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasMissingParts.htm\u0000128","TransportHost Class\u0000html/T_MLAPI_Data_TransportHost.htm\u0000181","TrackedObject.AvgTimeBetweenPointsMs Property\u0000html/P_MLAPI_MonoBehaviours_Core_TrackedObject_AvgTimeBetweenPointsMs.htm\u000088","BitWriter Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm\u0000208","NetworkedBehaviour.SendToNonLocalClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u000099","TrackedObject.TotalPoints Property\u0000html/P_MLAPI_MonoBehaviours_Core_TrackedObject_TotalPoints.htm\u000087","MessageChunker Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000181","NetworkedAnimator.animator Property\u0000html/P_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_animator.htm\u000091","NetworkedBehaviour.SendToServer Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u000069","LagCompensationManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u0000151","LagCompensationManager.SimulationObjects Property\u0000html/P_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_SimulationObjects.htm\u000086","NetworkingManager Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u00001180","NetworkPoolManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000170","BinaryIgnore Class\u0000html/T_MLAPI_Attributes_BinaryIgnore.htm\u0000190","NetworkSceneManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u0000105","SyncedVar Class\u0000html/T_MLAPI_Attributes_SyncedVar.htm\u0000220","CryptographyHelper Class\u0000html/T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u0000138","TrackedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u00001002","NetworkedBehaviour Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001845","NetworkedAnimator Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00002159","NetworkedNavMeshAgent Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00002148","NetworkedTransform Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00002187","BinaryHelpers Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm\u000096","BinarySerializer Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u0000117"] \ No newline at end of file +["MLAPI API Reference - Redirect\u0000index.html\u000018","MLAPI API Reference - Search\u0000search.html\u000012","Channel Fields\u0000html/Fields_T_MLAPI_Data_Channel.htm\u000059","NetId Fields\u0000html/Fields_T_MLAPI_Data_NetId.htm\u000059","NetworkConfig Fields\u0000html/Fields_T_MLAPI_Data_NetworkConfig.htm\u0000355","SyncedVar Fields\u0000html/Fields_T_MLAPI_Attributes_SyncedVar.htm\u000065","NetworkingManager Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000128","NetworkedPrefab Fields\u0000html/Fields_T_MLAPI_Data_NetworkedPrefab.htm\u000053","NetworkedClient Fields\u0000html/Fields_T_MLAPI_Data_NetworkedClient.htm\u000066","MessageType Fields\u0000html/Fields_T_MLAPI_Data_MessageType.htm\u000056","NetworkedBehaviour Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u000049","NetworkedObject Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u000046","TransportHost Fields\u0000html/Fields_T_MLAPI_Data_TransportHost.htm\u000067","NetworkedAnimator Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u000070","NetworkedNavMeshAgent Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u000085","Channel.Encrypted Field\u0000html/F_MLAPI_Data_Channel_Encrypted.htm\u000076","SyncedVar.hookMethodName Field\u0000html/F_MLAPI_Attributes_SyncedVar_hookMethodName.htm\u000079","MessageType.Passthrough Field\u0000html/F_MLAPI_Data_MessageType_Passthrough.htm\u000078","Channel.Name Field\u0000html/F_MLAPI_Data_Channel_Name.htm\u000073","NetworkedTransform Fields\u0000html/Fields_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000124","MessageType.Name Field\u0000html/F_MLAPI_Data_MessageType_Name.htm\u000073","SyncedVar.target Field\u0000html/F_MLAPI_Attributes_SyncedVar_target.htm\u000081","NetId.ConnectionId Field\u0000html/F_MLAPI_Data_NetId_ConnectionId.htm\u000074","NetId.Meta Field\u0000html/F_MLAPI_Data_NetId_Meta.htm\u000073","Channel.Type Field\u0000html/F_MLAPI_Data_Channel_Type.htm\u000072","NetworkConfig.Channels Field\u0000html/F_MLAPI_Data_NetworkConfig_Channels.htm\u000079","NetworkConfig.ConnectionApproval Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectionApproval.htm\u000075","NetworkConfig.ClientConnectionBufferTimeout Field\u0000html/F_MLAPI_Data_NetworkConfig_ClientConnectionBufferTimeout.htm\u000083","NetworkConfig.EnableEncryption Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableEncryption.htm\u000074","NetworkConfig.EnableSceneSwitching Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableSceneSwitching.htm\u000075","NetworkConfig.ConnectAddress Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectAddress.htm\u000073","NetworkConfig.MaxConnections Field\u0000html/F_MLAPI_Data_NetworkConfig_MaxConnections.htm\u000077","NetworkConfig.ConnectionData Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectionData.htm\u000090","NetId.HostId Field\u0000html/F_MLAPI_Data_NetId_HostId.htm\u000074","NetworkConfig.MessageBufferSize Field\u0000html/F_MLAPI_Data_NetworkConfig_MessageBufferSize.htm\u000083","NetworkConfig.EnableTimeResync Field\u0000html/F_MLAPI_Data_NetworkConfig_EnableTimeResync.htm\u000097","NetworkConfig.AllowPassthroughMessages Field\u0000html/F_MLAPI_Data_NetworkConfig_AllowPassthroughMessages.htm\u000078","NetworkConfig.ReceiveTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_ReceiveTickrate.htm\u000085","NetworkConfig.RSAPrivateKey Field\u0000html/F_MLAPI_Data_NetworkConfig_RSAPrivateKey.htm\u000078","NetworkConfig.EventTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_EventTickrate.htm\u000086","NetworkConfig.SecondsHistory Field\u0000html/F_MLAPI_Data_NetworkConfig_SecondsHistory.htm\u000079","NetworkConfig.MaxReceiveEventsPerTickRate Field\u0000html/F_MLAPI_Data_NetworkConfig_MaxReceiveEventsPerTickRate.htm\u000084","NetworkConfig.ConnectPort Field\u0000html/F_MLAPI_Data_NetworkConfig_ConnectPort.htm\u000077","NetworkConfig.NetworkedPrefabs Field\u0000html/F_MLAPI_Data_NetworkConfig_NetworkedPrefabs.htm\u000079","NetworkConfig.RegisteredScenes Field\u0000html/F_MLAPI_Data_NetworkConfig_RegisteredScenes.htm\u000086","NetworkConfig.MessageTypes Field\u0000html/F_MLAPI_Data_NetworkConfig_MessageTypes.htm\u000076","NetworkConfig.ProtocolVersion Field\u0000html/F_MLAPI_Data_NetworkConfig_ProtocolVersion.htm\u000080","NetworkedClient.AesKey Field\u0000html/F_MLAPI_Data_NetworkedClient_AesKey.htm\u000078","NetworkConfig.ServerTransports Field\u0000html/F_MLAPI_Data_NetworkConfig_ServerTransports.htm\u000080","NetworkedClient.OwnedObjects Field\u0000html/F_MLAPI_Data_NetworkedClient_OwnedObjects.htm\u000080","NetworkConfig.RSAPublicKey Field\u0000html/F_MLAPI_Data_NetworkConfig_RSAPublicKey.htm\u000078","NetworkConfig.HandleObjectSpawning Field\u0000html/F_MLAPI_Data_NetworkConfig_HandleObjectSpawning.htm\u000078","NetworkingManager.DontDestroy Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_DontDestroy.htm\u000081","TransportHost.Name Field\u0000html/F_MLAPI_Data_TransportHost_Name.htm\u000073","NetworkedPrefab.playerPrefab Field\u0000html/F_MLAPI_Data_NetworkedPrefab_playerPrefab.htm\u000075","NetworkConfig.SendTickrate Field\u0000html/F_MLAPI_Data_NetworkConfig_SendTickrate.htm\u000082","NetworkConfig.SignKeyExchange Field\u0000html/F_MLAPI_Data_NetworkConfig_SignKeyExchange.htm\u000079","NetworkedClient.ClientId Field\u0000html/F_MLAPI_Data_NetworkedClient_ClientId.htm\u000073","TransportHost.Websockets Field\u0000html/F_MLAPI_Data_TransportHost_Websockets.htm\u000081","TransportHost.Port Field\u0000html/F_MLAPI_Data_TransportHost_Port.htm\u000075","NetworkingManager.NetworkConfig Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkConfig.htm\u000073","NetworkedPrefab.prefab Field\u0000html/F_MLAPI_Data_NetworkedPrefab_prefab.htm\u000073","NetworkingManager.OnServerStarted Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnServerStarted.htm\u000079","NetworkingManager.RunInBackground Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RunInBackground.htm\u000083","NetworkingManager.OnClientConnectedCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientConnectedCallback.htm\u000084","NetworkedAnimator.param0 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param0.htm\u000086","NetworkingManager.RegenerateRSAKeys Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_RegenerateRSAKeys.htm\u000091","NetworkedClient.PlayerObject Field\u0000html/F_MLAPI_Data_NetworkedClient_PlayerObject.htm\u000073","NetworkedAnimator.param4 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param4.htm\u000086","NetworkedAnimator.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ProximityRange.htm\u000073","NetworkedAnimator.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_EnableProximity.htm\u000073","NetworkedNavMeshAgent.DriftCorrectionPercentage Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_DriftCorrectionPercentage.htm\u000076","NetworkedAnimator.param1 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param1.htm\u000086","NetworkedAnimator.param5 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param5.htm\u000086","NetworkedTransform.AssumeSyncedSends Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_AssumeSyncedSends.htm\u000083","NetworkedNavMeshAgent.CorrectionDelay Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_CorrectionDelay.htm\u000076","NetworkedTransform.MinDegrees Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinDegrees.htm\u000080","NetworkingManager.OnClientDisconnectCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_OnClientDisconnectCallback.htm\u000084","Channel Methods\u0000html/Methods_T_MLAPI_Data_Channel.htm\u000087","NetworkedNavMeshAgent.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_EnableProximity.htm\u000073","NetworkedTransform.EnableProximity Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_EnableProximity.htm\u000074","MessageType Methods\u0000html/Methods_T_MLAPI_Data_MessageType.htm\u000087","NetworkedTransform.MinMeters Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_MinMeters.htm\u000080","NetworkedAnimator.param2 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param2.htm\u000086","NetworkedTransform.SnapDistance Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SnapDistance.htm\u000077","General Error\u0000html/GeneralError.htm\u000033","NetworkedTransform.InterpolatePosition Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolatePosition.htm\u000072","NetworkedTransform.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_ProximityRange.htm\u000076","NetId Methods\u0000html/Methods_T_MLAPI_Data_NetId.htm\u0000125","BinaryIgnore Methods\u0000html/Methods_T_MLAPI_Attributes_BinaryIgnore.htm\u0000103","NetworkConfig Methods\u0000html/Methods_T_MLAPI_Data_NetworkConfig.htm\u0000109","NetworkedTransform.SendsPerSecond Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_SendsPerSecond.htm\u000073","SyncedVar Methods\u0000html/Methods_T_MLAPI_Attributes_SyncedVar.htm\u0000103","NetworkedClient Methods\u0000html/Methods_T_MLAPI_Data_NetworkedClient.htm\u000087","BitReader Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm\u0000111","NetworkedTransform.InterpolateServer Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_InterpolateServer.htm\u000074","NetworkedPrefab Methods\u0000html/Methods_T_MLAPI_Data_NetworkedPrefab.htm\u000087","NetworkedBehaviour.SyncVarSyncDelay Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SyncVarSyncDelay.htm\u000078","NetworkedAnimator.param3 Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_param3.htm\u000086","NetworkPoolManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000121","TransportHost Methods\u0000html/Methods_T_MLAPI_Data_TransportHost.htm\u000087","NetworkedNavMeshAgent.ProximityRange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_ProximityRange.htm\u000073","NetworkSceneManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u000056","BitWriter Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm\u0000129","NetworkedObject.NetworkedPrefabName Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkedPrefabName.htm\u000075","NetworkingManager.ConnectionApprovalCallback Field\u0000html/F_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectionApprovalCallback.htm\u0000120","SyncedVar Constructor\u0000html/M_MLAPI_Attributes_SyncedVar__ctor.htm\u000072","NetworkedNavMeshAgent.WarpOnDestinationChange Field\u0000html/F_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_WarpOnDestinationChange.htm\u000076","MessageChunker Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000133","LagCompensationManager Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000086","CryptographyHelper Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u000090","Channel Constructor\u0000html/M_MLAPI_Data_Channel__ctor.htm\u000072","NetId.GetClientId Method\u0000html/M_MLAPI_Data_NetId_GetClientId.htm\u000079","MessageType Constructor\u0000html/M_MLAPI_Data_MessageType__ctor.htm\u000072","NetId.Equality Operator\u0000html/M_MLAPI_Data_NetId_op_Equality.htm\u0000135","NetworkConfig.CompareConfig Method\u0000html/M_MLAPI_Data_NetworkConfig_CompareConfig.htm\u0000138","NetId.Equals Method\u0000html/M_MLAPI_Data_NetId_Equals.htm\u0000122","NetId.Inequality Operator\u0000html/M_MLAPI_Data_NetId_op_Inequality.htm\u0000137","BinaryIgnore Constructor\u0000html/M_MLAPI_Attributes_BinaryIgnore__ctor.htm\u000072","NetworkedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000704","NetworkingManager Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000689","NetworkConfig.GetConfig Method\u0000html/M_MLAPI_Data_NetworkConfig_GetConfig.htm\u0000140","NetworkedPrefab Constructor\u0000html/M_MLAPI_Data_NetworkedPrefab__ctor.htm\u000072","NetworkedBehaviour.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_NetworkStart.htm\u000084","NetworkConfig Constructor\u0000html/M_MLAPI_Data_NetworkConfig__ctor.htm\u000072","TransportHost Constructor\u0000html/M_MLAPI_Data_TransportHost__ctor.htm\u000072","NetId Constructor (Byte, UInt16, Boolean, Boolean)\u0000html/M_MLAPI_Data_NetId__ctor.htm\u0000142","NetworkedClient Constructor\u0000html/M_MLAPI_Data_NetworkedClient__ctor.htm\u000072","NetId Constructor (UInt32)\u0000html/M_MLAPI_Data_NetId__ctor_1.htm\u000092","NetworkedBehaviour.OnGainedOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnGainedOwnership.htm\u000080","NetworkedBehaviour.DeregisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_DeregisterMessageHandler.htm\u000099","NetworkedBehaviour.OnLostOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_OnLostOwnership.htm\u000078","NetworkedBehaviour.SendToClient Method (UInt32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u0000149","TrackedObject Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000656","NetworkedBehaviour.GetNetworkedObject Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm\u0000136","NetworkedBehaviour.SendToClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm\u0000128","NetworkedBehaviour.RegisterMessageHandler Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_RegisterMessageHandler.htm\u0000135","NetworkedBehaviour.SendToClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm\u0000134","NetId.GetHashCode Method\u0000html/M_MLAPI_Data_NetId_GetHashCode.htm\u0000105","NetworkedBehaviour.SendToClients Method (List(UInt32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000154","NetId.IsHost Method\u0000html/M_MLAPI_Data_NetId_IsHost.htm\u000090","NetId.IsInvalid Method\u0000html/M_MLAPI_Data_NetId_IsInvalid.htm\u000092","NetworkedBehaviour.SendToNonLocalClients Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u0000133","NetworkedBehaviour.SendToClients Method (UInt32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm\u0000149","NetworkedBehaviour.SendToClientTarget Method (UInt32, String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u0000157","NetworkedBehaviour Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour__ctor.htm\u000074","NetworkedBehaviour.SendToNonLocalClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u0000142","NetworkedObject.ChangeOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_ChangeOwnership.htm\u000094","NetworkedBehaviour.SendToClientsTarget Method (List(UInt32), String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000162","NetworkedBehaviour.SendToClients(T) Method (List(Int32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm\u0000162","NetworkedObject.RemoveOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_RemoveOwnership.htm\u000084","NetworkedBehaviour.SendToClientTarget(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm\u0000163","NetworkedObject.Spawn Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_Spawn.htm\u000082","NetworkedBehaviour.SendToClientsTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm\u0000137","NetworkedBehaviour.SendToNonLocalClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm\u0000150","NetworkedBehaviour.SendToClient(T) Method (Int32, String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm\u0000157","NetworkedObject.SpawnWithOwnership Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject_SpawnWithOwnership.htm\u0000100","NetworkedBehaviour.SendToClients(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm\u0000157","NetworkedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedObject__ctor.htm\u000074","NetworkingManager.StopServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopServer.htm\u000072","NetworkingManager Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager__ctor.htm\u000074","NetworkingManager.StartClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClient.htm\u000071","NetworkedBehaviour.SendToNonLocalClients(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm\u0000141","NetworkingManager.StartClientWebsocket Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartClientWebsocket.htm\u000073","NetworkedBehaviour.SendToLocalClient Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u0000127","TrackedObject Constructor\u0000html/M_MLAPI_MonoBehaviours_Core_TrackedObject__ctor.htm\u000074","NetworkedBehaviour.SendToClientsTarget Method (UInt32[], String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm\u0000157","NetworkedAnimator.GetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_GetParameterAutoSend.htm\u0000126","NetworkedBehaviour.SendToServer Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u0000127","NetworkingManager.StartHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartHost.htm\u0000177","NetworkedNavMeshAgent Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00001643","NetworkedAnimator.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_NetworkStart.htm\u000072","NetworkingManager.StartServer Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StartServer.htm\u000071","NetworkedBehaviour.SendToLocalClientTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u0000141","NetworkedBehaviour.SendToClientsTarget(T) Method (List(UInt32), String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm\u0000168","NetworkedAnimator.ResetParameterOptions Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_ResetParameterOptions.htm\u000069","NetworkingManager.StopClient Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopClient.htm\u000072","NetworkedBehaviour Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001417","NetworkedBehaviour.SendToServerTarget Method (String, String, Byte[])\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u0000136","NetworkedAnimator.SetParameterAutoSend Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetParameterAutoSend.htm\u0000139","NetworkingManager.StopHost Method\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkingManager_StopHost.htm\u000072","NetworkedBehaviour.SendToLocalClientTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm\u0000147","NetworkedAnimator.SetTrigger Method (String)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger_1.htm\u0000107","NetworkedBehaviour.SendToClientsTarget(T) Method (Int32[], String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm\u0000163","NetworkedTransform.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform_NetworkStart.htm\u000072","NetworkedBehaviour.SendToServerTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm\u0000144","NetworkedAnimator Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator__ctor.htm\u000074","NetworkedAnimator.SetTrigger Method (Int32)\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u0000107","NetworkedTransform Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform__ctor.htm\u000074","NetworkedNavMeshAgent.NetworkStart Method\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent_NetworkStart.htm\u000072","NetworkedBehaviour.SendToLocalClient(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm\u0000135","BitReader.ReadByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByte.htm\u0000105","NetworkedBehaviour.SendToServer(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm\u0000135","BitReader.ReadLong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLong.htm\u0000105","BinaryHelpers.SwapEndian Method (UInt32)\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm\u0000150","NetworkedNavMeshAgent Constructor\u0000html/M_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent__ctor.htm\u000074","BitReader.ReadByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadByteArray.htm\u0000154","BinaryHelpers.SwapEndian Method (UInt64)\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian_1.htm\u0000150","NetworkedBehaviour.SendToClientsTarget(T) Method (String, String, T)\u0000html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm\u0000143","BitReader.ReadUIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUIntArray.htm\u0000154","BitReader.ReadLongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadLongArray.htm\u0000154","BitWriter.Finalize Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm\u000092","BitReader.ReadDouble Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDouble.htm\u0000105","BitReader.ReadULong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULong.htm\u0000105","BinarySerializer.ClearCache Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_ClearCache.htm\u000075","BitReader.ReadSByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByte.htm\u0000105","BitWriter.WriteBool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteBool.htm\u0000120","BitReader.ReadDoubleArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadDoubleArray.htm\u0000154","BitReader.ReadSByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadSByteArray.htm\u0000154","BitReader.ReadULongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadULongArray.htm\u0000154","BitWriter.Finalize Method (Byte[])\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize_1.htm\u0000131","BitWriter.WriteByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByte.htm\u0000120","BinarySerializer.Deserialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Deserialize__1.htm\u0000122","BitReader.ReadShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShort.htm\u0000105","BitWriter.GetFinalizeSize Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_GetFinalizeSize.htm\u000088","BitReader.ReadFloat Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloat.htm\u0000105","BitReader.ReadUShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShort.htm\u0000105","BitWriter.WriteAlignBits Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteAlignBits.htm\u000084","BinarySerializer.Serialize(T) Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer_Serialize__1.htm\u0000112","BitReader.ReadShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadShortArray.htm\u0000154","BitReader.ReadUShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUShortArray.htm\u0000154","BitReader.ReadFloatArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadFloatArray.htm\u0000154","BitWriter.WriteByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteByteArray.htm\u0000174","BitReader.ReadBool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadBool.htm\u0000105","BitWriter.WriteIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteIntArray.htm\u0000174","BitReader.ReadInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadInt.htm\u0000105","BitReader.SkipPadded Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_SkipPadded.htm\u000084","BitReader.ReadString Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadString.htm\u0000105","BitWriter.WriteDouble Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDouble.htm\u0000120","BitWriter.WriteUInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUInt.htm\u0000120","BitReader Constructor\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader__ctor.htm\u0000113","BitReader.ReadUInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadUInt.htm\u0000105","BitWriter.WriteLong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLong.htm\u0000120","BitWriter.WriteDoubleArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteDoubleArray.htm\u0000174","BitWriter.Dispose Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Dispose.htm\u000078","BitWriter.WriteUIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUIntArray.htm\u0000174","BitWriter.WriteFloat Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloat.htm\u0000120","NetworkPoolManager.DestroyPool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPool.htm\u0000101","BitWriter.WriteULong Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULong.htm\u0000120","NetworkPoolManager.DestroyPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_DestroyPoolObject.htm\u0000111","NetworkedAnimator Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00001657","MessageChunker.GetMessageOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageOrdered.htm\u0000176","BitWriter.WriteFloatArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteFloatArray.htm\u0000174","NetworkPoolManager.SpawnPoolObject Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_SpawnPoolObject.htm\u0000161","BitWriter.WriteULongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteULongArray.htm\u0000174","MLAPI.MonoBehaviours.Core Namespace\u0000html/N_MLAPI_MonoBehaviours_Core.htm\u000071","MLAPI.MonoBehaviours.Prototyping Namespace\u0000html/N_MLAPI_MonoBehaviours_Prototyping.htm\u000045","BitWriter.WriteUShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShort.htm\u0000120","MLAPI.NetworkingManagerComponents.Binary Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Binary.htm\u000041","BitWriter.WriteInt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteInt.htm\u0000120","MLAPI.NetworkingManagerComponents.Core Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Core.htm\u000046","NetworkSceneManager.SwitchScene Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager_SwitchScene.htm\u0000101","MLAPI.NetworkingManagerComponents.Cryptography Namespace\u0000html/N_MLAPI_NetworkingManagerComponents_Cryptography.htm\u000030","NetId Operators\u0000html/Operators_T_MLAPI_Data_NetId.htm\u000072","NetworkedBehaviour.SendToLocalClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm\u000095","MessageChunker.GetMessageUnordered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetMessageUnordered.htm\u0000178","BitReader.ReadIntArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitReader_ReadIntArray.htm\u0000154","BitWriter.WriteLongArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteLongArray.htm\u0000174","NetId Constructor\u0000html/Overload_MLAPI_Data_NetId__ctor.htm\u000066","BitWriter.WriteUShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteUShortArray.htm\u0000174","LagCompensationManager.Simulate Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u000088","Page Not Found\u0000html/PageNotFound.htm\u000067","BitWriter.WriteSByte Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByte.htm\u0000120","BinaryIgnore Properties\u0000html/Properties_T_MLAPI_Attributes_BinaryIgnore.htm\u000047","BitWriter Constructor\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter__ctor.htm\u000072","NetworkedBehaviour.SendToNonLocalClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm\u000081","SyncedVar Properties\u0000html/Properties_T_MLAPI_Attributes_SyncedVar.htm\u000047","NetworkedBehaviour.SendToClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm\u000081","CryptographyHelper.Decrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Decrypt.htm\u0000137","NetId Properties\u0000html/Properties_T_MLAPI_Data_NetId.htm\u000044","MessageChunker.HasDuplicates Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasDuplicates.htm\u0000134","NetworkedBehaviour Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u0000364","NetworkedTransform Methods\u0000html/Methods_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00001643","NetworkedBehaviour.SendToNonLocalClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm\u000099","TrackedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u0000305","BinaryHelpers Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm\u000038","MessageChunker.GetChunkedMessage Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_GetChunkedMessage.htm\u0000132","NetworkedObject Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u0000369","NetworkingManager Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u0000367","NetworkedNavMeshAgent Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u0000420","NetworkedBehaviour.SendToServer Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm\u000069","BitWriter.WriteSByteArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteSByteArray.htm\u0000174","NetworkedTransform Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u0000420","NetworkedObject.isSpawned Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isSpawned.htm\u000088","NetworkedAnimator Properties\u0000html/Properties_T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u0000432","LagCompensationManager Properties\u0000html/Properties_T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u000043","NetworkedObject.NetworkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_NetworkId.htm\u000090","BitWriter.WriteShort Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShort.htm\u0000120","BinarySerializer Methods\u0000html/Methods_T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u000067","NetworkedBehaviour.SendToServerTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm\u000087","NetId.ServerNetId Property\u0000html/P_MLAPI_Data_NetId_ServerNetId.htm\u000085","CryptographyHelper.Encrypt Method\u0000html/M_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper_Encrypt.htm\u0000142","BinaryIgnore Class\u0000html/T_MLAPI_Attributes_BinaryIgnore.htm\u0000190","MLAPI.Attributes Namespace\u0000html/N_MLAPI_Attributes.htm\u000059","NetworkedObject.OwnerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_OwnerClientId.htm\u000086","NetworkedAnimator.SetTrigger Method\u0000html/Overload_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_SetTrigger.htm\u000042","MLAPI.Data Namespace\u0000html/N_MLAPI_Data.htm\u000073","BinaryHelpers.SwapEndian Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers_SwapEndian.htm\u000040","SyncedVar Class\u0000html/T_MLAPI_Attributes_SyncedVar.htm\u0000220","NetworkConfig Class\u0000html/T_MLAPI_Data_NetworkConfig.htm\u0000498","NetworkedPrefab Class\u0000html/T_MLAPI_Data_NetworkedPrefab.htm\u0000169","MessageChunker.HasMissingParts Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_HasMissingParts.htm\u0000128","BitWriter.Finalize Method\u0000html/Overload_MLAPI_NetworkingManagerComponents_Binary_BitWriter_Finalize.htm\u000055","Channel Class\u0000html/T_MLAPI_Data_Channel.htm\u0000177","NetworkedClient Class\u0000html/T_MLAPI_Data_NetworkedClient.htm\u0000173","BitWriter.WriteShortArray Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteShortArray.htm\u0000174","NetworkedObject.PoolId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_PoolId.htm\u000085","NetworkingManager.ConnectedClients Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_ConnectedClients.htm\u000095","NetworkingManager.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isClient.htm\u000085","NetworkingManager.IsClientConnected Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_IsClientConnected.htm\u000085","NetworkingManager.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isHost.htm\u000084","NetworkingManager.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_isServer.htm\u000085","TransportHost Class\u0000html/T_MLAPI_Data_TransportHost.htm\u0000181","NetworkSceneManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkSceneManager.htm\u0000105","MessageType Class\u0000html/T_MLAPI_Data_MessageType.htm\u0000171","NetworkedBehaviour.SendToClients Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm\u0000159","NetworkingManager.MyClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_MyClientId.htm\u000091","BitWriter.WriteString Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_BitWriter_WriteString.htm\u0000120","MessageChunker.IsOrdered Method\u0000html/M_MLAPI_NetworkingManagerComponents_Binary_MessageChunker_IsOrdered.htm\u0000114","CryptographyHelper Class\u0000html/T_MLAPI_NetworkingManagerComponents_Cryptography_CryptographyHelper.htm\u0000138","NetworkingManager.NetworkTime Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_NetworkTime.htm\u000097","NetId Structure\u0000html/T_MLAPI_Data_NetId.htm\u0000270","NetworkedBehaviour.isClient Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isClient.htm\u000084","NetworkingManager.singleton Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkingManager_singleton.htm\u000084","NetworkedBehaviour.isHost Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isHost.htm\u000090","LagCompensationManager.Simulate Method (Single, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate.htm\u0000123","TrackedObject.AvgTimeBetweenPointsMs Property\u0000html/P_MLAPI_MonoBehaviours_Core_TrackedObject_AvgTimeBetweenPointsMs.htm\u000088","NetworkedBehaviour.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isLocalPlayer.htm\u000088","TrackedObject.TotalPoints Property\u0000html/P_MLAPI_MonoBehaviours_Core_TrackedObject_TotalPoints.htm\u000087","NetworkedBehaviour.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isOwner.htm\u000087","LagCompensationManager.Simulate Method (UInt32, Action)\u0000html/M_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_Simulate_1.htm\u0000136","NetworkedAnimator.animator Property\u0000html/P_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator_animator.htm\u000091","NetworkedBehaviour.isServer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_isServer.htm\u000084","NetworkedBehaviour.SendToClientsTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm\u0000205","NetworkedBehaviour.networkedObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkedObject.htm\u000085","LagCompensationManager.SimulationObjects Property\u0000html/P_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager_SimulationObjects.htm\u000086","NetworkedBehaviour.networkId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_networkId.htm\u000088","NetworkPoolManager.CreatePool Method\u0000html/M_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager_CreatePool.htm\u0000137","NetworkedBehaviour.SendToClientTarget Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm\u000095","NetworkedBehaviour.ownerClientId Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_ownerClientId.htm\u000084","NetworkedBehaviour.SendToLocalClient Method\u0000html/Overload_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm\u000069","NetworkedObject.isLocalPlayer Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isLocalPlayer.htm\u000088","NetworkedObject.isOwner Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isOwner.htm\u000087","NetworkedObject.isPlayerObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPlayerObject.htm\u000085","NetworkedObject.isPooledObject Property\u0000html/P_MLAPI_MonoBehaviours_Core_NetworkedObject_isPooledObject.htm\u000086","NetworkedBehaviour Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedBehaviour.htm\u00001845","NetworkedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkedObject.htm\u00001120","NetworkingManager Class\u0000html/T_MLAPI_MonoBehaviours_Core_NetworkingManager.htm\u00001180","TrackedObject Class\u0000html/T_MLAPI_MonoBehaviours_Core_TrackedObject.htm\u00001002","NetworkedAnimator Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedAnimator.htm\u00002159","NetworkedNavMeshAgent Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedNavMeshAgent.htm\u00002148","NetworkedTransform Class\u0000html/T_MLAPI_MonoBehaviours_Prototyping_NetworkedTransform.htm\u00002187","BinaryHelpers Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BinaryHelpers.htm\u000096","BinarySerializer Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BinarySerializer.htm\u0000117","BitReader Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BitReader.htm\u0000181","BitWriter Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_BitWriter.htm\u0000208","MessageChunker Class\u0000html/T_MLAPI_NetworkingManagerComponents_Binary_MessageChunker.htm\u0000181","LagCompensationManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_LagCompensationManager.htm\u0000151","NetworkPoolManager Class\u0000html/T_MLAPI_NetworkingManagerComponents_Core_NetworkPoolManager.htm\u0000170"] \ No newline at end of file diff --git a/docs/html/F_MLAPI_Attributes_SyncedVar_hook.htm b/docs/html/F_MLAPI_Attributes_SyncedVar_hook.htm deleted file mode 100644 index cc4efeb..0000000 --- a/docs/html/F_MLAPI_Attributes_SyncedVar_hook.htm +++ /dev/null @@ -1,21 +0,0 @@ -SyncedVar.hook Field

SyncedVarhook Field

[This is preliminary documentation and is subject to change.]

- The method name to invoke when the SyncVar get's updated. -

- Namespace: -  MLAPI.Attributes
- Assembly: -  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string hook
Request Example - View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Attributes_SyncedVar_hookMethodName.htm b/docs/html/F_MLAPI_Attributes_SyncedVar_hookMethodName.htm new file mode 100644 index 0000000..f73c93f --- /dev/null +++ b/docs/html/F_MLAPI_Attributes_SyncedVar_hookMethodName.htm @@ -0,0 +1,21 @@ +SyncedVar.hookMethodName Field

SyncedVarhookMethodName Field

[This is preliminary documentation and is subject to change.]

+ The method name to invoke when the SyncVar get's updated. +

+ Namespace: +  MLAPI.Attributes
+ Assembly: +  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public string hookMethodName
Request Example + View Source

Field Value

Type: String
See Also
\ No newline at end of file diff --git a/docs/html/F_MLAPI_Attributes_SyncedVar_target.htm b/docs/html/F_MLAPI_Attributes_SyncedVar_target.htm index 8aacbb0..a976c45 100644 --- a/docs/html/F_MLAPI_Attributes_SyncedVar_target.htm +++ b/docs/html/F_MLAPI_Attributes_SyncedVar_target.htm @@ -1,4 +1,4 @@ -SyncedVar.target Field

SyncedVartarget Field

[This is preliminary documentation and is subject to change.]

+SyncedVar.target Field

SyncedVartarget Field

[This is preliminary documentation and is subject to change.]

If true, the syncedVar will only be synced to the owner.

Namespace: diff --git a/docs/html/Fields_T_MLAPI_Attributes_SyncedVar.htm b/docs/html/Fields_T_MLAPI_Attributes_SyncedVar.htm index 987d642..185b3bb 100644 --- a/docs/html/Fields_T_MLAPI_Attributes_SyncedVar.htm +++ b/docs/html/Fields_T_MLAPI_Attributes_SyncedVar.htm @@ -1,6 +1,6 @@ -SyncedVar Fields

SyncedVar Fields

[This is preliminary documentation and is subject to change.]

The SyncedVar type exposes the following members.

Fields
+SyncedVar Fields

SyncedVar Fields

[This is preliminary documentation and is subject to change.]

The SyncedVar type exposes the following members.

Fields
  - NameDescription
Public fieldhook
+
NameDescription
Public fieldhookMethodName
The method name to invoke when the SyncVar get's updated.
Public fieldtarget
If true, the syncedVar will only be synced to the owner. diff --git a/docs/html/M_MLAPI_Data_NetId_Equals.htm b/docs/html/M_MLAPI_Data_NetId_Equals.htm index 250f2ee..4bdfd97 100644 --- a/docs/html/M_MLAPI_Data_NetId_Equals.htm +++ b/docs/html/M_MLAPI_Data_NetId_Equals.htm @@ -20,5 +20,5 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

obj
Type: SystemObject
The Object to compare with the current NetId.

Return Value

Type: Boolean
true if the specified Object is equal to the current NetId; + View Source

Parameters

obj
Type: SystemObject
The Object to compare with the current NetId.

Return Value

Type: Boolean
true if the specified Object is equal to the current NetId; otherwise, false.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_GetClientId.htm b/docs/html/M_MLAPI_Data_NetId_GetClientId.htm index ae4531d..a445d8b 100644 --- a/docs/html/M_MLAPI_Data_NetId_GetClientId.htm +++ b/docs/html/M_MLAPI_Data_NetId_GetClientId.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Return Value

Type: UInt32
The client identifier.
See Also
\ No newline at end of file + View Source

Return Value

Type: UInt32
The client identifier.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_GetHashCode.htm b/docs/html/M_MLAPI_Data_NetId_GetHashCode.htm index 1761e28..1463c55 100644 --- a/docs/html/M_MLAPI_Data_NetId_GetHashCode.htm +++ b/docs/html/M_MLAPI_Data_NetId_GetHashCode.htm @@ -18,5 +18,5 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Return Value

Type: Int32
A hash code for this instance that is suitable for use in hashing algorithms and data structures such as a + View Source

Return Value

Type: Int32
A hash code for this instance that is suitable for use in hashing algorithms and data structures such as a hash table.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_IsHost.htm b/docs/html/M_MLAPI_Data_NetId_IsHost.htm index 3a66222..2368dbd 100644 --- a/docs/html/M_MLAPI_Data_NetId_IsHost.htm +++ b/docs/html/M_MLAPI_Data_NetId_IsHost.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Return Value

Type: Boolean
true, if host, false otherwise.
See Also
\ No newline at end of file + View Source

Return Value

Type: Boolean
true, if host, false otherwise.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_IsInvalid.htm b/docs/html/M_MLAPI_Data_NetId_IsInvalid.htm index be7ee74..bf94ffc 100644 --- a/docs/html/M_MLAPI_Data_NetId_IsInvalid.htm +++ b/docs/html/M_MLAPI_Data_NetId_IsInvalid.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Return Value

Type: Boolean
true, if invalid, false otherwise.
See Also
\ No newline at end of file + View Source

Return Value

Type: Boolean
true, if invalid, false otherwise.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId__ctor.htm b/docs/html/M_MLAPI_Data_NetId__ctor.htm index 79053f6..f323605 100644 --- a/docs/html/M_MLAPI_Data_NetId__ctor.htm +++ b/docs/html/M_MLAPI_Data_NetId__ctor.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

hostId
Type: SystemByte
Host identifier.
connectionId
Type: SystemUInt16
Connection identifier.
isHost
Type: SystemBoolean
If set to true is host.
isInvalid
Type: SystemBoolean
If set to true is invalid.
See Also
\ No newline at end of file + View Source

Parameters

hostId
Type: SystemByte
Host identifier.
connectionId
Type: SystemUInt16
Connection identifier.
isHost
Type: SystemBoolean
If set to true is host.
isInvalid
Type: SystemBoolean
If set to true is invalid.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId__ctor_1.htm b/docs/html/M_MLAPI_Data_NetId__ctor_1.htm index b3a73e3..247a9f2 100644 --- a/docs/html/M_MLAPI_Data_NetId__ctor_1.htm +++ b/docs/html/M_MLAPI_Data_NetId__ctor_1.htm @@ -20,4 +20,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemUInt32
Client identifier.
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemUInt32
Client identifier.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_op_Equality.htm b/docs/html/M_MLAPI_Data_NetId_op_Equality.htm index cc7f862..d7f3fd8 100644 --- a/docs/html/M_MLAPI_Data_NetId_op_Equality.htm +++ b/docs/html/M_MLAPI_Data_NetId_op_Equality.htm @@ -21,4 +21,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

client1
Type: MLAPI.DataNetId
The first NetId to compare.
client2
Type: MLAPI.DataNetId
The second NetId to compare.

Return Value

Type: Boolean
true if client1 and client2 are equal; otherwise, false.
See Also
\ No newline at end of file + View Source

Parameters

client1
Type: MLAPI.DataNetId
The first NetId to compare.
client2
Type: MLAPI.DataNetId
The second NetId to compare.

Return Value

Type: Boolean
true if client1 and client2 are equal; otherwise, false.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_Data_NetId_op_Inequality.htm b/docs/html/M_MLAPI_Data_NetId_op_Inequality.htm index c9aaa5e..084946b 100644 --- a/docs/html/M_MLAPI_Data_NetId_op_Inequality.htm +++ b/docs/html/M_MLAPI_Data_NetId_op_Inequality.htm @@ -21,4 +21,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

client1
Type: MLAPI.DataNetId
The first NetId to compare.
client2
Type: MLAPI.DataNetId
The second NetId to compare.

Return Value

Type: Boolean
true if client1 and client2 are not equal; otherwise, false.
See Also
\ No newline at end of file + View Source

Parameters

client1
Type: MLAPI.DataNetId
The first NetId to compare.
client2
Type: MLAPI.DataNetId
The second NetId to compare.

Return Value

Type: Boolean
true if client1 and client2 are not equal; otherwise, false.
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm index ed975ae..528b099 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_GetNetworkedObject.htm @@ -20,4 +20,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

networkId
Type: SystemUInt32

[Missing <param name="networkId"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

Return Value

Type: NetworkedObject

[Missing <returns> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

See Also
\ No newline at end of file + View Source

Parameters

networkId
Type: SystemUInt32

[Missing <param name="networkId"/> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

Return Value

Type: NetworkedObject

[Missing <returns> documentation for "M:MLAPI.MonoBehaviours.Core.NetworkedBehaviour.GetNetworkedObject(System.UInt32)"]

See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm index 5e17f7c..30163eb 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemUInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemUInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm index 7758df0..808883e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemUInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemUInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm index ba294a9..de1f55e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientTarget__1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm index a2f85e4..0ea99e5 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClient__1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientId
Type: SystemInt32
The clientId to send the message to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm index 7320544..4489e16 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm index 81affdc..1dff72e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm index 6e12aa4..59e7301 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_1.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm index 615e3c3..4de3a62 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget_2.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: SystemUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm index 627d621..b220c58 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm index 5c56428..a50eccf 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm index daf4260..58eaafd 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClientsTarget__1_2.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm index 13c718a..d6b81a2 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_1.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm index e9f70f8..3cfb19e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients_2.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: SystemUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemUInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm index 0dc9892..7e01225 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: System.Collections.GenericListInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: System.Collections.GenericListInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm index 6bcbd18..c20e42e 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_1.htm @@ -24,4 +24,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

clientIds
Type: SystemInt32
The clientId's to send to
messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm index 54b23f8..9a714b1 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToClients__1_2.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm index 1736fae..03c02e5 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm index d673151..0e828bf 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm index 87f8375..583de45 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClientTarget__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm index e010e52..cd988a0 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToLocalClient__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm index 8adbf0e..95513dd 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm index a97f50c..70fc8e7 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm index 734cd9e..eaabf39 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClientsTarget__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm index 2c9227e..bdef521 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToNonLocalClients__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm index f801fda..3294613 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm index 60b96d5..ec6b55b 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget.htm @@ -22,4 +22,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
data
Type: SystemByte
The binary data to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm index 27ad2a3..7f84656 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServerTarget__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm index d3f268e..08573fc 100644 --- a/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm +++ b/docs/html/M_MLAPI_MonoBehaviours_Core_NetworkedBehaviour_SendToServer__1.htm @@ -23,4 +23,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file + View Source

Parameters

messageType
Type: SystemString
User defined messageType
channelName
Type: SystemString
User defined channelName
instance
Type: T
The instance to send

Type Parameters

T
The class type to send
See Also
\ No newline at end of file diff --git a/docs/html/P_MLAPI_Data_NetId_ServerNetId.htm b/docs/html/P_MLAPI_Data_NetId_ServerNetId.htm index 114d045..c39656a 100644 --- a/docs/html/P_MLAPI_Data_NetId_ServerNetId.htm +++ b/docs/html/P_MLAPI_Data_NetId_ServerNetId.htm @@ -18,4 +18,4 @@ encodeURIComponent("Please add an example for " + document.title + ".%0D%0DTODO (optional): Describe a specific " + "scenario you would like to see addressed.%0D%0DHelp Topic: " + window.location.href).replace(/%250D/g, "%0D"); HT_requestExampleLink.innerHTML = HT_requestExampleLinkText; - View Source

Property Value

Type: NetId
The server net identifier.
See Also
\ No newline at end of file + View Source

Property Value

Type: NetId
The server net identifier.
See Also
\ No newline at end of file diff --git a/docs/html/T_MLAPI_Attributes_SyncedVar.htm b/docs/html/T_MLAPI_Attributes_SyncedVar.htm index 180d9d7..60e4cbf 100644 --- a/docs/html/T_MLAPI_Attributes_SyncedVar.htm +++ b/docs/html/T_MLAPI_Attributes_SyncedVar.htm @@ -26,7 +26,7 @@  
NameDescription
Public methodEquals (Inherited from Attribute.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Attribute.)
Public methodGetType (Inherited from Object.)
Public methodIsDefaultAttribute (Inherited from Attribute.)
Public methodMatch (Inherited from Attribute.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Fields
  - NameDescription
Public fieldhook
+
NameDescription
Public fieldhookMethodName
The method name to invoke when the SyncVar get's updated.
Public fieldtarget
If true, the syncedVar will only be synced to the owner. diff --git a/docs/toc/Fields_T_MLAPI_Attributes_SyncedVar.xml b/docs/toc/Fields_T_MLAPI_Attributes_SyncedVar.xml index cee71a9..15fd79a 100644 --- a/docs/toc/Fields_T_MLAPI_Attributes_SyncedVar.xml +++ b/docs/toc/Fields_T_MLAPI_Attributes_SyncedVar.xml @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file From 4e16d9c91306f9934380598e6ea46f2d0e035bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Thu, 19 Apr 2018 19:44:55 +0200 Subject: [PATCH 42/47] Removed interactive mode from asset importer to allow for multiple assets to get imported --- MLAPI-Editor/MLAPIEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLAPI-Editor/MLAPIEditor.cs b/MLAPI-Editor/MLAPIEditor.cs index ff0ab69..8b1eb36 100644 --- a/MLAPI-Editor/MLAPIEditor.cs +++ b/MLAPI-Editor/MLAPIEditor.cs @@ -113,7 +113,7 @@ public class MLAPIEditor : EditorWindow File.WriteAllBytes(Application.dataPath + "/MLAPI/Lib/" + releases[index].assets[i].name, www.bytes); if (releases[index].assets[i].name.EndsWith(".unitypackage")) - AssetDatabase.ImportPackage(Application.dataPath + "/MLAPI/Lib/" + releases[index].assets[i].name, true); + AssetDatabase.ImportPackage(Application.dataPath + "/MLAPI/Lib/" + releases[index].assets[i].name, false); } EditorPrefs.SetString("MLAPI_version", releases[index].tag_name); From 5b2c77aec812c4d9f73f8cdeae638d67251c61c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Fri, 20 Apr 2018 12:33:53 +0200 Subject: [PATCH 43/47] Started work on Command & RPC system --- MLAPI/Attributes/ClientRpc.cs | 10 + MLAPI/Attributes/Command.cs | 10 + MLAPI/Attributes/TargetRpc.cs | 10 + MLAPI/Data/Cache.cs | 51 ++++ MLAPI/Data/FieldType.cs | 281 ++++++++++++++++++ MLAPI/MLAPI.csproj | 4 + .../MonoBehaviours/Core/NetworkedBehaviour.cs | 145 ++++++++- .../MonoBehaviours/Core/NetworkingManager.cs | 23 ++ .../Binary/BitReader.cs | 7 + .../Binary/BitWriter.cs | 6 +- .../Core/InternalMessageHandler.Receive.cs | 53 +++- 11 files changed, 594 insertions(+), 6 deletions(-) create mode 100644 MLAPI/Attributes/ClientRpc.cs create mode 100644 MLAPI/Attributes/Command.cs create mode 100644 MLAPI/Attributes/TargetRpc.cs create mode 100644 MLAPI/Data/Cache.cs diff --git a/MLAPI/Attributes/ClientRpc.cs b/MLAPI/Attributes/ClientRpc.cs new file mode 100644 index 0000000..3a01756 --- /dev/null +++ b/MLAPI/Attributes/ClientRpc.cs @@ -0,0 +1,10 @@ +using System; + +namespace MLAPI.Attributes +{ + [AttributeUsage(AttributeTargets.Method)] + public class ClientRpc : Attribute + { + + } +} diff --git a/MLAPI/Attributes/Command.cs b/MLAPI/Attributes/Command.cs new file mode 100644 index 0000000..5eb7f60 --- /dev/null +++ b/MLAPI/Attributes/Command.cs @@ -0,0 +1,10 @@ +using System; + +namespace MLAPI.Attributes +{ + [AttributeUsage(AttributeTargets.Method)] + public class Command : Attribute + { + + } +} diff --git a/MLAPI/Attributes/TargetRpc.cs b/MLAPI/Attributes/TargetRpc.cs new file mode 100644 index 0000000..da78777 --- /dev/null +++ b/MLAPI/Attributes/TargetRpc.cs @@ -0,0 +1,10 @@ +using System; + +namespace MLAPI.Attributes +{ + [AttributeUsage(AttributeTargets.Method)] + public class TargetRpc : Attribute + { + + } +} diff --git a/MLAPI/Data/Cache.cs b/MLAPI/Data/Cache.cs new file mode 100644 index 0000000..8b2d74d --- /dev/null +++ b/MLAPI/Data/Cache.cs @@ -0,0 +1,51 @@ +using System.Collections.Generic; +using System.Security.Cryptography; +using System.Text; + +namespace MLAPI.Data +{ + internal static class Cache + { + internal static Dictionary messageAttributeHashes = new Dictionary(); + internal static Dictionary messageAttributeNames = new Dictionary(); + + internal static ulong GetMessageAttributeHash(string name) + { + if (messageAttributeHashes.ContainsKey(name)) + return messageAttributeHashes[name]; + + using (SHA256Managed sha = new SHA256Managed()) + { + byte[] hash = sha.ComputeHash(Encoding.UTF8.GetBytes(name)); + ulong value = hash[0] | ((ulong)hash[1] << 8) | ((ulong)hash[2] << 16) | ((ulong)hash[3] << 24) | ((ulong)hash[4] << 32) | ((ulong)hash[5] << 40) | ((ulong)hash[6] << 48) | ((ulong)hash[7] << 56); + //ulong value = hash[0] | ((uint)hash[1] << 8) | ((uint)hash[2] << 16) | ((uint)hash[3] << 24); + messageAttributeHashes.Add(name, value); + messageAttributeNames.Add(value, name); + return value; + } + } + + internal static string GetAttributeMethodName(ulong hash) + { + if (messageAttributeNames.ContainsKey(hash)) + return messageAttributeNames[hash]; + else + return string.Empty; + } + + internal static void RegisterMessageAttributeName(string name) + { + if (messageAttributeHashes.ContainsKey(name)) + return; + + using (SHA256Managed sha = new SHA256Managed()) + { + byte[] hash = sha.ComputeHash(Encoding.UTF8.GetBytes(name)); + ulong value = hash[0] | ((ulong)hash[1] << 8) | ((ulong)hash[2] << 16) | ((ulong)hash[3] << 24) | ((ulong)hash[4] << 32) | ((ulong)hash[5] << 40) | ((ulong)hash[6] << 48) | ((ulong)hash[7] << 56); + //ulong value = hash[0] | ((uint)hash[1] << 8) | ((uint)hash[2] << 16) | ((uint)hash[3] << 24); + messageAttributeHashes.Add(name, value); + messageAttributeNames.Add(value, name); + } + } + } +} diff --git a/MLAPI/Data/FieldType.cs b/MLAPI/Data/FieldType.cs index abd8c31..ef8c102 100644 --- a/MLAPI/Data/FieldType.cs +++ b/MLAPI/Data/FieldType.cs @@ -45,6 +45,137 @@ namespace MLAPI.Data internal static class FieldTypeHelper { + internal static void WriteFieldType(BitWriter writer, object value, FieldType fieldType) + { + switch (fieldType) + { + case FieldType.Bool: + writer.WriteBool((bool)value); + break; + case FieldType.Byte: + writer.WriteByte((byte)value); + break; + case FieldType.Double: + writer.WriteDouble((double)value); + break; + case FieldType.Single: + writer.WriteFloat((float)value); + break; + case FieldType.Int: + writer.WriteInt((int)value); + break; + case FieldType.Long: + writer.WriteLong((long)value); + break; + case FieldType.SByte: + writer.WriteSByte((sbyte)value); + break; + case FieldType.Short: + writer.WriteShort((short)value); + break; + case FieldType.UInt: + writer.WriteUInt((uint)value); + break; + case FieldType.ULong: + writer.WriteULong((ulong)value); + break; + case FieldType.UShort: + writer.WriteUShort((ushort)value); + break; + case FieldType.String: + writer.WriteString((string)value); + break; + case FieldType.Vector3: + Vector3 vector3 = (Vector3)value; + writer.WriteFloat(vector3.x); + writer.WriteFloat(vector3.y); + writer.WriteFloat(vector3.z); + break; + case FieldType.Vector2: + Vector2 vector2 = (Vector2)value; + writer.WriteFloat(vector2.x); + writer.WriteFloat(vector2.y); + break; + case FieldType.Quaternion: + Vector3 euler = ((Quaternion)value).eulerAngles; + writer.WriteFloat(euler.x); + writer.WriteFloat(euler.y); + writer.WriteFloat(euler.z); + break; + case FieldType.BoolArray: + bool[] bools = (bool[])value; + writer.WriteUShort((ushort)bools.Length); + for (int j = 0; j < bools.Length; j++) + writer.WriteBool(bools[j]); + break; + case FieldType.ByteArray: + writer.WriteByteArray((byte[])value); + break; + case FieldType.DoubleArray: + writer.WriteDoubleArray((double[])value); + break; + case FieldType.SingleArray: + writer.WriteFloatArray((float[])value); + break; + case FieldType.IntArray: + writer.WriteIntArray((int[])value); + break; + case FieldType.LongArray: + writer.WriteLongArray((long[])value); + break; + case FieldType.SByteArray: + writer.WriteSByteArray((sbyte[])value); + break; + case FieldType.ShortArray: + writer.WriteShortArray((short[])value); + break; + case FieldType.UIntArray: + writer.WriteUIntArray((uint[])value); + break; + case FieldType.ULongArray: + writer.WriteULongArray((ulong[])value); + break; + case FieldType.UShortArray: + writer.WriteUShortArray((ushort[])value); + break; + case FieldType.StringArray: + string[] strings = (string[])value; + writer.WriteUShort((ushort)strings.Length); + for (int j = 0; j < strings.Length; j++) + writer.WriteString(strings[j]); + break; + case FieldType.Vector3Array: + Vector3[] vector3s = (Vector3[])value; + writer.WriteUShort((ushort)vector3s.Length); + for (int j = 0; j < vector3s.Length; j++) + { + writer.WriteFloat(vector3s[j].x); + writer.WriteFloat(vector3s[j].y); + writer.WriteFloat(vector3s[j].z); + } + break; + case FieldType.Vector2Array: + Vector2[] vector2s = (Vector2[])value; + writer.WriteUShort((ushort)vector2s.Length); + for (int j = 0; j < vector2s.Length; j++) + { + writer.WriteFloat(vector2s[j].x); + writer.WriteFloat(vector2s[j].y); + } + break; + case FieldType.QuaternionArray: + Quaternion[] quaternions = (Quaternion[])value; + writer.WriteUShort((ushort)quaternions.Length); + for (int j = 0; j < quaternions.Length; j++) + { + writer.WriteFloat(quaternions[j].eulerAngles.x); + writer.WriteFloat(quaternions[j].eulerAngles.y); + writer.WriteFloat(quaternions[j].eulerAngles.z); + } + break; + } + } + internal static void WriteFieldType(BitWriter writer, FieldInfo field, object fieldInstance, FieldType fieldType) { switch (fieldType) @@ -241,5 +372,155 @@ namespace MLAPI.Data else return FieldType.Invalid; } + + internal static object[] ReadObjects(BitReader reader, byte paramCount) + { + object[] returnVal = new object[paramCount]; + for (int i = 0; i < paramCount; i++) + { + //FieldType fieldType = (FieldType)reader.ReadBits(5); + FieldType fieldType = (FieldType)reader.ReadByte(); + switch (fieldType) + { + case FieldType.Bool: + returnVal[i] = reader.ReadBool(); + break; + case FieldType.Byte: + returnVal[i] = reader.ReadByte(); + break; + case FieldType.Double: + returnVal[i] = reader.ReadDouble(); + break; + case FieldType.Single: + returnVal[i] = reader.ReadFloat(); + break; + case FieldType.Int: + returnVal[i] = reader.ReadInt(); + break; + case FieldType.Long: + returnVal[i] = reader.ReadLong(); + break; + case FieldType.SByte: + returnVal[i] = reader.ReadSByte(); + break; + case FieldType.Short: + returnVal[i] = reader.ReadShort(); + break; + case FieldType.UInt: + returnVal[i] = reader.ReadUInt(); + break; + case FieldType.ULong: + returnVal[i] = reader.ReadULong(); + break; + case FieldType.UShort: + returnVal[i] = reader.ReadUShort(); + break; + case FieldType.String: + returnVal[i] = reader.ReadString(); + break; + case FieldType.Vector3: + Vector3 vector3 = Vector3.zero; + vector3.x = reader.ReadFloat(); + vector3.y = reader.ReadFloat(); + vector3.z = reader.ReadFloat(); + returnVal[i] = vector3; + break; + case FieldType.Vector2: + Vector2 vector2 = Vector2.zero; + vector2.x = reader.ReadFloat(); + vector2.y = reader.ReadFloat(); + returnVal[i] = vector2; + break; + case FieldType.Quaternion: + Vector3 eulerAngle = Vector3.zero; + eulerAngle.x = reader.ReadFloat(); + eulerAngle.y = reader.ReadFloat(); + eulerAngle.z = reader.ReadFloat(); + returnVal[i] = Quaternion.Euler(eulerAngle); + break; + case FieldType.BoolArray: + ushort boolCount = reader.ReadUShort(); + for (int j = 0; j < boolCount; j++) + returnVal[i] = reader.ReadBool(); + break; + case FieldType.ByteArray: + returnVal[i] = reader.ReadByteArray(); + break; + case FieldType.DoubleArray: + returnVal[i] = reader.ReadDoubleArray(); + break; + case FieldType.SingleArray: + returnVal[i] = reader.ReadFloatArray(); + break; + case FieldType.IntArray: + returnVal[i] = reader.ReadIntArray(); + break; + case FieldType.LongArray: + returnVal[i] = reader.ReadLongArray(); + break; + case FieldType.SByteArray: + returnVal[i] = reader.ReadSByteArray(); + break; + case FieldType.ShortArray: + returnVal[i] = reader.ReadShortArray(); + break; + case FieldType.UIntArray: + returnVal[i] = reader.ReadUIntArray(); + break; + case FieldType.ULongArray: + returnVal[i] = reader.ReadULongArray(); + break; + case FieldType.UShortArray: + returnVal[i] = reader.ReadUShortArray(); + break; + case FieldType.StringArray: + ushort stringCount = reader.ReadUShort(); + string[] strings = new string[stringCount]; + for (int j = 0; j < stringCount; j++) + strings[j] = reader.ReadString(); + returnVal[i] = strings; + break; + case FieldType.Vector3Array: + ushort vector3Count = reader.ReadUShort(); + Vector3[] vector3s = new Vector3[vector3Count]; + for (int j = 0; j < vector3Count; j++) + { + Vector3 vec3 = Vector3.zero; + vec3.x = reader.ReadFloat(); + vec3.y = reader.ReadFloat(); + vec3.z = reader.ReadFloat(); + vector3s[j] = vec3; + } + returnVal[i] = vector3s; + break; + case FieldType.Vector2Array: + ushort vector2Count = reader.ReadUShort(); + Vector2[] vector2s = new Vector2[vector2Count]; + for (int j = 0; j < vector2Count; j++) + { + Vector2 vec2 = Vector2.zero; + vec2.x = reader.ReadFloat(); + vec2.y = reader.ReadFloat(); + vector2s[j] = vec2; + } + returnVal[i] = vector2s; + break; + case FieldType.QuaternionArray: + ushort quaternionCount = reader.ReadUShort(); + Quaternion[] quaternions = new Quaternion[quaternionCount]; + for (int j = 0; j < quaternionCount; j++) + { + Vector3 vec3 = Vector3.zero; + vec3.x = reader.ReadFloat(); + vec3.y = reader.ReadFloat(); + vec3.z = reader.ReadFloat(); + quaternions[j] = Quaternion.Euler(vec3); + } + returnVal[i] = quaternions; + break; + } + } + return returnVal; + } } } diff --git a/MLAPI/MLAPI.csproj b/MLAPI/MLAPI.csproj index b429cfa..73dadbd 100644 --- a/MLAPI/MLAPI.csproj +++ b/MLAPI/MLAPI.csproj @@ -67,6 +67,10 @@ + + + + diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index 2cb942e..f640a82 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -76,7 +76,7 @@ namespace MLAPI.MonoBehaviours.Core { get { - if(_networkedObject == null) + if (_networkedObject == null) { _networkedObject = GetComponentInParent(); } @@ -111,9 +111,9 @@ namespace MLAPI.MonoBehaviours.Core private void OnEnable() { if (_networkedObject == null) - { _networkedObject = GetComponentInParent(); - } + + CacheAttributedMethods(); NetworkedObject.NetworkedBehaviours.Add(this); } @@ -139,6 +139,145 @@ namespace MLAPI.MonoBehaviours.Core { } + + internal Dictionary cachedMethods = new Dictionary(); + + private void CacheAttributedMethods() + { + MethodInfo[] methods = GetType().GetMethods(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.FlattenHierarchy); + for (int i = 0; i < methods.Length; i++) + { + if (methods[i].IsDefined(typeof(Command), true) || methods[i].IsDefined(typeof(ClientRpc), true) || methods[i].IsDefined(typeof(TargetRpc), true)) + { + Data.Cache.RegisterMessageAttributeName(methods[i].Name); + if (!cachedMethods.ContainsKey(methods[i].Name)) + cachedMethods.Add(methods[i].Name, methods[i]); + } + } + } + + protected void InvokeCommand(string methodName, params object[] methodParams) + { + if (NetworkingManager.singleton.isServer) + { + Debug.LogWarning("MLAPI: Cannot invoke commands from server"); + return; + } + if (ownerClientId != NetworkingManager.singleton.MyClientId) + { + Debug.LogWarning("MLAPI: Cannot invoke command for object without ownership"); + return; + } + if (!methodName.StartsWith("Cmd")) + { + Debug.LogWarning("MLAPI: Invalid Command name. Command methods have to start with Cmd"); + return; + } + + /* This would not allow for cross projects. + MethodInfo method = null; + if (cachedMethods.ContainsKey(methodName)) + method = cachedMethods[methodName]; + else + method = GetType().GetMethod(methodName, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.NonPublic); + + if (method.GetParameters().Length != methodParams.Length) + { + Debug.LogWarning("MLAPI: The parameter amounts are not matching."); + return; + } + + for (int i = 0; i < method.GetParameters().Length; i++) + { + if (method.GetParameters()[i].GetType() != methodParams[i].GetType()) + { + Debug.LogWarning("MLAPI: The " + (i + 1) + "th parameter has the wrong type"); + return; + } + } + */ + ulong hash = Data.Cache.GetMessageAttributeHash(methodName); + using (BitWriter writer = new BitWriter()) + { + writer.WriteUInt(networkId); + writer.WriteUShort(networkedObject.GetOrderIndex(this)); + writer.WriteULong(hash); + writer.WriteBits((byte)methodParams.Length, 5); + for (int i = 0; i < methodParams.Length; i++) + { + FieldType fieldType = FieldTypeHelper.GetFieldType(methodParams[i].GetType()); + writer.WriteBits((byte)fieldType, 5); + FieldTypeHelper.WriteFieldType(writer, methodParams[i], fieldType); + } + + //SendToServerTarget("MLAPI_COMMAND", "MLAPI_INTERNAL", writer.Finalize()); + InternalMessageHandler.Send(NetId.ServerNetId.GetClientId(), "MLAPI_COMMAND", "MLAPI_INTERNAL", writer.Finalize()); + } + } + + protected void InvokeClientRpc(string methodName, params object[] methodParams) + { + Debug.LogError("InvokeRPc"); + if (!NetworkingManager.singleton.isServer) + { + Debug.LogWarning("MLAPI: Cannot invoke ClientRpc from client"); + return; + } + if (!methodName.StartsWith("Rpc")) + { + Debug.LogWarning("MLAPI: Invalid Command name. Command methods have to start with Cmd"); + return; + } + + ulong hash = Data.Cache.GetMessageAttributeHash(methodName); + using (BitWriter writer = new BitWriter()) + { + writer.WriteUInt(networkId); + writer.WriteUShort(networkedObject.GetOrderIndex(this)); + writer.WriteULong(hash); + writer.WriteBits((byte)methodParams.Length, 5); + + for (int i = 0; i < methodParams.Length; i++) + { + FieldType fieldType = FieldTypeHelper.GetFieldType(methodParams[i].GetType()); + writer.WriteBits((byte)fieldType, 5); + FieldTypeHelper.WriteFieldType(writer, methodParams[i], fieldType); + } + + InternalMessageHandler.Send("MLAPI_RPC", "MLAPI_INTERNAL", writer.Finalize()); + } + } + + protected void InvokeTargetRpc(string methodName, params object[] methodParams) + { + if (!NetworkingManager.singleton.isServer) + { + Debug.LogWarning("MLAPI: Cannot invoke ClientRpc from client"); + return; + } + if (!methodName.StartsWith("Target")) + { + Debug.LogWarning("MLAPI: Invalid Command name. Command methods have to start with Cmd"); + return; + } + + ulong hash = Data.Cache.GetMessageAttributeHash(methodName); + using (BitWriter writer = new BitWriter()) + { + writer.WriteUInt(networkId); + writer.WriteUShort(networkedObject.GetOrderIndex(this)); + writer.WriteULong(hash); + writer.WriteBits((byte)methodParams.Length, 5); + for (int i = 0; i < methodParams.Length; i++) + { + FieldType fieldType = FieldTypeHelper.GetFieldType(methodParams[i].GetType()); + writer.WriteBits((byte)fieldType, 5); + FieldTypeHelper.WriteFieldType(writer, methodParams[i], fieldType); + } + + InternalMessageHandler.Send(ownerClientId, "MLAPI_RPC", "MLAPI_INTERNAL", writer.Finalize()); + } + } /// /// Registers a message handler /// diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index 123a84a..d5c2bc4 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -219,6 +219,8 @@ namespace MLAPI.MonoBehaviours.Core connectedClients = new Dictionary(); messageBuffer = new byte[NetworkConfig.MessageBufferSize]; diffieHellmanPublicKeys = new Dictionary(); + Data.Cache.messageAttributeHashes = new Dictionary(); + Data.Cache.messageAttributeNames = new Dictionary(); MessageManager.channels = new Dictionary(); MessageManager.messageTypes = new Dictionary(); MessageManager.messageCallbacks = new Dictionary>>(); @@ -378,6 +380,9 @@ namespace MLAPI.MonoBehaviours.Core MessageManager.messageTypes.Add("MLAPI_SYNC_VAR_UPDATE", 9); MessageManager.messageTypes.Add("MLAPI_ADD_OBJECTS", 10); MessageManager.messageTypes.Add("MLAPI_TIME_SYNC", 11); + MessageManager.messageTypes.Add("MLAPI_COMMAND", 12); + MessageManager.messageTypes.Add("MLAPI_RPC", 13); + MessageManager.messageTypes.Add("MLAPI_TARGET", 14); List messageTypes = new List(NetworkConfig.MessageTypes) { @@ -1000,6 +1005,24 @@ namespace MLAPI.MonoBehaviours.Core InternalMessageHandler.HandleTimeSync(clientId, incommingData, channelId); } break; + case 12: + if (isServer) + { + InternalMessageHandler.HandleCommand(clientId, incommingData, channelId); + } + break; + case 13: + if (isClient) + { + InternalMessageHandler.HandleRpc(clientId, incommingData, channelId); + } + break; + case 14: + if (isClient) + { + InternalMessageHandler.HandleTargetRpc(clientId, incommingData, channelId); + } + break; } #endregion } diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs index 02beb75..79529ae 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitReader.cs @@ -54,6 +54,13 @@ namespace MLAPI.NetworkingManagerComponents.Binary public int[] ReadIntArray(int known = -1) => ReadArray(ReadInt, known); public long[] ReadLongArray(int known = -1) => ReadArray(ReadLong, known); public string ReadString() => Encoding.UTF8.GetString(ReadByteArray()); + public byte ReadBits(int bits) + { + byte b = 0; + for (int i = 0; --bits >= 0; ++i) + b |= (byte)((ReadBool() ? 1 : 0) << i); + return b; + } public ulong ReadULong() { diff --git a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs index a0167c4..9550b4a 100644 --- a/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs +++ b/MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs @@ -105,6 +105,10 @@ namespace MLAPI.NetworkingManagerComponents.Binary public void WriteShortArray(short[] s, bool known = false) => PushArray(s, known); public void WriteIntArray(int[] i, bool known = false) => PushArray(i, known); public void WriteLongArray(long[] l, bool known = false) => PushArray(l, known); + public void WriteBits(byte value, int bits) + { + for (int i = 0; i < bits; ++i) WriteBool((value & (1 << i)) != 0); + } private void PushArray(T[] t, bool knownSize = false) { @@ -268,7 +272,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary WriteByte(writeTo, (value >> 32) & 255, bitOffset + 40, isAligned); if (value > 1099511627775) { - WriteByte(writeTo, (value >> 40) & 55, bitOffset + 48, isAligned); + WriteByte(writeTo, (value >> 40) & 255, bitOffset + 48, isAligned); if (value > 281474976710655) { WriteByte(writeTo, (value >> 48) & 255, bitOffset + 56, isAligned); diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs index 1c3aecd..847132e 100644 --- a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs @@ -1,4 +1,5 @@ -using System.Security.Cryptography; +using System.Reflection; +using System.Security.Cryptography; using MLAPI.Data; using MLAPI.MonoBehaviours.Core; using MLAPI.NetworkingManagerComponents.Binary; @@ -384,6 +385,54 @@ namespace MLAPI.NetworkingManagerComponents.Core if ((NetworkError)error != NetworkError.Ok) msDelay = 0; netManager.networkTime = netTime + (msDelay / 1000f); - } + } + + internal static void HandleCommand(uint clientId, byte[] incommingData, int channelId) + { + BitReader reader = new BitReader(incommingData); + uint networkId = reader.ReadUInt(); + ushort orderId = reader.ReadUShort(); + ulong hash = reader.ReadULong(); + NetworkedBehaviour behaviour = SpawnManager.spawnedObjects[networkId].GetBehaviourAtOrderIndex(orderId); + if (clientId != behaviour.ownerClientId) + return; // Not owner + MethodInfo targetMethod = null; + if (behaviour.cachedMethods.ContainsKey(Data.Cache.GetAttributeMethodName(hash))) + targetMethod = behaviour.cachedMethods[Data.Cache.GetAttributeMethodName(hash)]; + byte paramCount = reader.ReadBits(5); + object[] methodParams = FieldTypeHelper.ReadObjects(reader, paramCount); + targetMethod.Invoke(behaviour, methodParams); + } + + internal static void HandleRpc(uint clientId, byte[] incommingData, int channelId) + { + Debug.LogError("RPC inc"); + BitReader reader = new BitReader(incommingData); + uint networkId = reader.ReadUInt(); + ushort orderId = reader.ReadUShort(); + ulong hash = reader.ReadULong(); + NetworkedBehaviour behaviour = SpawnManager.spawnedObjects[networkId].GetBehaviourAtOrderIndex(orderId); + MethodInfo targetMethod = null; + if (behaviour.cachedMethods.ContainsKey(Data.Cache.GetAttributeMethodName(hash))) + targetMethod = behaviour.cachedMethods[Data.Cache.GetAttributeMethodName(hash)]; + byte paramCount = reader.ReadBits(5); + object[] methodParams = FieldTypeHelper.ReadObjects(reader, paramCount); + targetMethod.Invoke(behaviour, methodParams); + } + + internal static void HandleTargetRpc(uint clientId, byte[] incommingData, int channelId) + { + BitReader reader = new BitReader(incommingData); + uint networkId = reader.ReadUInt(); + ushort orderId = reader.ReadUShort(); + ulong hash = reader.ReadULong(); + NetworkedBehaviour behaviour = SpawnManager.spawnedObjects[networkId].GetBehaviourAtOrderIndex(orderId); + MethodInfo targetMethod = null; + if (behaviour.cachedMethods.ContainsKey(Data.Cache.GetAttributeMethodName(hash))) + targetMethod = behaviour.cachedMethods[Data.Cache.GetAttributeMethodName(hash)]; + byte paramCount = reader.ReadBits(5); + object[] methodParams = FieldTypeHelper.ReadObjects(reader, paramCount); + targetMethod.Invoke(behaviour, methodParams); + } } } From 566328530993356fb637eaf38f6b34a8f0c7d270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Fri, 20 Apr 2018 12:35:33 +0200 Subject: [PATCH 44/47] Fixed issue causing the wrong clientId to get added --- .../Core/InternalMessageHandler.Receive.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs index 1c3aecd..24cc620 100644 --- a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs @@ -78,7 +78,7 @@ namespace MLAPI.NetworkingManagerComponents.Core msDelay = 0; netManager.networkTime = netTime + (msDelay / 1000f); - netManager.connectedClients.Add(clientId, new NetworkedClient() { ClientId = clientId }); + netManager.connectedClients.Add(netManager.MyClientId, new NetworkedClient() { ClientId = netManager.MyClientId }); int clientCount = reader.ReadInt(); for (int i = 0; i < clientCount; i++) { @@ -128,7 +128,7 @@ namespace MLAPI.NetworkingManagerComponents.Core netManager._isClientConnected = true; if (netManager.OnClientConnectedCallback != null) - netManager.OnClientConnectedCallback.Invoke(clientId); + netManager.OnClientConnectedCallback.Invoke(netManager.MyClientId); } internal static void HandleAddObject(uint clientId, byte[] incommingData, int channelId) From 916f4677f62bd71bd4865602812b875124909d3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Fri, 20 Apr 2018 12:42:41 +0200 Subject: [PATCH 45/47] Fixed parameter read issue --- MLAPI/Data/FieldType.cs | 4 ++-- .../MonoBehaviours/Core/NetworkedBehaviour.cs | 23 ------------------- 2 files changed, 2 insertions(+), 25 deletions(-) diff --git a/MLAPI/Data/FieldType.cs b/MLAPI/Data/FieldType.cs index ef8c102..3c761e3 100644 --- a/MLAPI/Data/FieldType.cs +++ b/MLAPI/Data/FieldType.cs @@ -378,8 +378,8 @@ namespace MLAPI.Data object[] returnVal = new object[paramCount]; for (int i = 0; i < paramCount; i++) { - //FieldType fieldType = (FieldType)reader.ReadBits(5); - FieldType fieldType = (FieldType)reader.ReadByte(); + FieldType fieldType = (FieldType)reader.ReadBits(5); + switch (fieldType) { case FieldType.Bool: diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index f640a82..87cdc1c 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -174,28 +174,6 @@ namespace MLAPI.MonoBehaviours.Core return; } - /* This would not allow for cross projects. - MethodInfo method = null; - if (cachedMethods.ContainsKey(methodName)) - method = cachedMethods[methodName]; - else - method = GetType().GetMethod(methodName, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.NonPublic); - - if (method.GetParameters().Length != methodParams.Length) - { - Debug.LogWarning("MLAPI: The parameter amounts are not matching."); - return; - } - - for (int i = 0; i < method.GetParameters().Length; i++) - { - if (method.GetParameters()[i].GetType() != methodParams[i].GetType()) - { - Debug.LogWarning("MLAPI: The " + (i + 1) + "th parameter has the wrong type"); - return; - } - } - */ ulong hash = Data.Cache.GetMessageAttributeHash(methodName); using (BitWriter writer = new BitWriter()) { @@ -210,7 +188,6 @@ namespace MLAPI.MonoBehaviours.Core FieldTypeHelper.WriteFieldType(writer, methodParams[i], fieldType); } - //SendToServerTarget("MLAPI_COMMAND", "MLAPI_INTERNAL", writer.Finalize()); InternalMessageHandler.Send(NetId.ServerNetId.GetClientId(), "MLAPI_COMMAND", "MLAPI_INTERNAL", writer.Finalize()); } } From 0b3dec1bcf33973d3f4fd3cd2e57c70511173c4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Fri, 20 Apr 2018 12:47:06 +0200 Subject: [PATCH 46/47] Removed debug logs --- MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs | 1 - .../Core/InternalMessageHandler.Receive.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index 87cdc1c..186709d 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -194,7 +194,6 @@ namespace MLAPI.MonoBehaviours.Core protected void InvokeClientRpc(string methodName, params object[] methodParams) { - Debug.LogError("InvokeRPc"); if (!NetworkingManager.singleton.isServer) { Debug.LogWarning("MLAPI: Cannot invoke ClientRpc from client"); diff --git a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs index 847132e..9b0f232 100644 --- a/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs +++ b/MLAPI/NetworkingManagerComponents/Core/InternalMessageHandler.Receive.cs @@ -406,7 +406,6 @@ namespace MLAPI.NetworkingManagerComponents.Core internal static void HandleRpc(uint clientId, byte[] incommingData, int channelId) { - Debug.LogError("RPC inc"); BitReader reader = new BitReader(incommingData); uint networkId = reader.ReadUInt(); ushort orderId = reader.ReadUShort(); From 8c755307b11ae8fe8ccfe34260e853bb65670879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Fri, 20 Apr 2018 13:02:32 +0200 Subject: [PATCH 47/47] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0405301..aa4ca25 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ There is also a autogenerated Sandcastle [API reference](https://twotenpvp.githu * Targeted Synced Vars \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/SyncedVars#target)\] * Encryption \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/Message-Encryption)\] * Super efficient BitWriter & BitReader \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/BitWriter-&-BitReader)\] +* Command & Rpc system like HLAPI to allow for quick transfer from HLAPI to MLAPI \[[Wiki page](https://github.com/TwoTenPvP/MLAPI/wiki/Attribute-Message-System)\] ## Example [Example project](https://github.com/TwoTenPvP/MLAPI-Examples)