Пример #1
0
 /// <summary>
 /// Creates a NetworkVariable with a custom value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkVariable</param>
 /// <param name="value">The initial value to use for the NetworkVariable</param>
 public NetworkVariable(NetworkVariableSettings settings, T value)
 {
     Settings        = settings;
     m_InternalValue = value;
 }
Пример #2
0
 /// <summary>
 /// Creates a NetworkVariable with the default value and custom settings
 /// </summary>
 /// <param name="settings">The settings to use for the NetworkVariable</param>
 public NetworkVariable(NetworkVariableSettings settings)
 {
     Settings = settings;
 }