Ejemplo n.º 1
0
 public static extern bool BindToNetwork(IntPtr gameObjectPtr, BindToNetworkMode mode);
Ejemplo n.º 2
0
 public bool BindToNetwork(BindToNetworkMode mode = BindToNetworkMode.Normal)
 {
     return(NativeGameObjectMethods.BindToNetwork(Handle, mode));
 }
Ejemplo n.º 3
0
 public static extern bool BindToNetwork(IntPtr gameObjectPtr, BindToNetworkMode mode);
Ejemplo n.º 4
0
 /// <summary>
 /// Binds the game object to the network.
 /// </summary>
 /// <remarks>Allows the entity to be synchronized over the network.</remarks>
 /// <param name="mode">Binding mode.</param>
 /// <returns>True, if successful.</returns>
 public bool BindToNetwork(BindToNetworkMode mode = BindToNetworkMode.Normal)
 {
     return GameObjectInterop.BindToNetwork(this.Handle, mode);
 }
Ejemplo n.º 5
0
 public bool BindToNetwork(BindToNetworkMode mode = BindToNetworkMode.Normal)
 {
     return NativeGameObjectMethods.BindToNetwork(Handle, mode);
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Binds the game object to the network.
 /// </summary>
 /// <remarks>Allows the entity to be synchronized over the network.</remarks>
 /// <param name="mode">Binding mode.</param>
 /// <returns>True, if successful.</returns>
 public bool BindToNetwork(BindToNetworkMode mode = BindToNetworkMode.Normal)
 {
     return(GameObjectInterop.BindToNetwork(this.Handle, mode));
 }