Example #1
0
 /// <inheritdoc />
 public NetworkedVarBool(NetworkedVarSettings settings, bool value) : base(settings, value)
 {
 }
Example #2
0
 /// <summary>
 /// Creates a NetworkedVar with the default value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkedVar</param>
 public NetworkedShotData(NetworkedVarSettings settings)
 {
     this.Settings = settings;
 }
Example #3
0
 /// <summary>
 /// Creates a NetworkedList with the default value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkedList</param>
 public NetworkedList(NetworkedVarSettings settings)
 {
     this.Settings = settings;
 }
Example #4
0
 /// <summary>
 /// Creates a NetworkedDictionary with a custom value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkedDictionary</param>
 /// <param name="value">The initial value to use for the NetworkedDictionary</param>
 public NetworkedDictionary(NetworkedVarSettings settings, IDictionary <TKey, TValue> value)
 {
     this.Settings   = settings;
     this.dictionary = value;
 }
Example #5
0
 /// <summary>
 /// Creates a NetworkedVar with a custom value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkedVar</param>
 /// <param name="value">The initial value to use for the NetworkedVar</param>
 public NetworkVarInternalID(NetworkedVarSettings settings, InternalID value)
 {
     this.Settings      = settings;
     this.InternalValue = value;
 }
Example #6
0
 /// <inheritdoc />
 public NetworkedVarRay(NetworkedVarSettings settings, Ray value) : base(settings, value)
 {
 }
Example #7
0
 /// <inheritdoc />
 public NetworkedVarQuaternion(NetworkedVarSettings settings, Quaternion value) : base(settings, value)
 {
 }
Example #8
0
 /// <inheritdoc />
 public NetworkedVarLong(NetworkedVarSettings settings) : base(settings)
 {
 }
Example #9
0
 /// <inheritdoc />
 public NetworkedVarLong(NetworkedVarSettings settings, long value) : base(settings, value)
 {
 }
Example #10
0
 /// <inheritdoc />
 public NetworkedVarUInt(NetworkedVarSettings settings) : base(settings)
 {
 }
Example #11
0
 /// <inheritdoc />
 public NetworkedVarInt(NetworkedVarSettings settings, int value) : base(settings, value)
 {
 }
Example #12
0
 /// <inheritdoc />
 public NetworkedVarShort(NetworkedVarSettings settings, short value) : base(settings, value)
 {
 }
Example #13
0
 /// <inheritdoc />
 public NetworkedVarSByte(NetworkedVarSettings settings, sbyte value) : base(settings, value)
 {
 }
Example #14
0
 /// <inheritdoc />
 public NetworkedVarSByte(NetworkedVarSettings settings) : base(settings)
 {
 }
Example #15
0
 /// <inheritdoc />
 public NetworkedVarColor32(NetworkedVarSettings settings, Color32 value) : base(settings, value)
 {
 }
Example #16
0
 /// <inheritdoc />
 public NetworkedVarFloat(NetworkedVarSettings settings) : base(settings)
 {
 }
Example #17
0
 /// <inheritdoc />
 public NetworkedVarRay(NetworkedVarSettings settings) : base(settings)
 {
 }
Example #18
0
 /// <inheritdoc />
 public NetworkedVarFloat(NetworkedVarSettings settings, float value) : base(settings, value)
 {
 }
Example #19
0
 /// <inheritdoc />
 public NetworkedVarQuaternion(NetworkedVarSettings settings) : base(settings)
 {
 }
Example #20
0
 /// <inheritdoc />
 public NetworkedVarDouble(NetworkedVarSettings settings) : base(settings)
 {
 }
Example #21
0
 /// <summary>
 /// Creates a NetworkedDictionary with the default value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkedDictionary</param>
 public NetworkedDictionary(NetworkedVarSettings settings)
 {
     this.Settings = settings;
 }
Example #22
0
 /// <inheritdoc />
 public NetworkedVarDouble(NetworkedVarSettings settings, double value) : base(settings, value)
 {
 }
Example #23
0
 /// <summary>
 /// Creates a NetworkedVar with the default value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkedVar</param>
 public NetworkVarInternalID(NetworkedVarSettings settings)
 {
     this.Settings = settings;
 }
Example #24
0
 /// <inheritdoc />
 public NetworkedVarVector4(NetworkedVarSettings settings) : base(settings)
 {
 }
Example #25
0
 /// <summary>
 /// Creates a NetworkedVar with a custom value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkedVar</param>
 /// <param name="value">The initial value to use for the NetworkedVar</param>
 public NetworkedVar(NetworkedVarSettings settings, T value)
 {
     this.Settings      = settings;
     this.InternalValue = value;
 }
Example #26
0
 /// <inheritdoc />
 public NetworkedVarVector4(NetworkedVarSettings settings, Vector4 value) : base(settings, value)
 {
 }
Example #27
0
 /// <summary>
 /// Creates a NetworkedVar with a custom value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkedVar</param>
 /// <param name="value">The initial value to use for the NetworkedVar</param>
 public NetworkedShotData(NetworkedVarSettings settings, ShotData value)
 {
     this.Settings      = settings;
     this.InternalValue = value;
 }
Example #28
0
 /// <inheritdoc />
 public NetworkedVarColor32(NetworkedVarSettings settings) : base(settings)
 {
 }
Example #29
0
 /// <summary>
 /// Creates a NetworkedList with a custom value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkedList</param>
 /// <param name="value">The initial value to use for the NetworkedList</param>
 public NetworkedList(NetworkedVarSettings settings, IList <T> value)
 {
     this.Settings = settings;
     this.list     = value;
 }
Example #30
0
 /// <inheritdoc />
 public NetworkedVarBool(NetworkedVarSettings settings) : base(settings)
 {
 }