Struct NetworkDriverStore.NetworkDriverInstance
Struct that contains a Unity.Networking.Transport.NetworkDriver and relative pipelines.
Inherited Members
Namespace: Unity.NetCode
Assembly: Unity.NetCode.dll
Syntax
public struct NetworkDriverStore.NetworkDriverInstance
Fields
driver
The Unity.Networking.Transport.NetworkDriver instance. Can be invalid if the NetworkDriver instance has not been initialized.
Declaration
public NetworkDriver driver
Field Value
Type | Description |
---|---|
NetworkDriver |
reliablePipeline
The pipeline used for sending reliable messages
Declaration
public NetworkPipeline reliablePipeline
Field Value
Type | Description |
---|---|
NetworkPipeline |
unreliableFragmentedPipeline
The pipeline used for sending big unreliable messages that requires fragmentation.
Declaration
public NetworkPipeline unreliableFragmentedPipeline
Field Value
Type | Description |
---|---|
NetworkPipeline |
unreliablePipeline
The pipeline used for sending unreliable messages and snapshots
Declaration
public NetworkPipeline unreliablePipeline
Field Value
Type | Description |
---|---|
NetworkPipeline |
Properties
simulatorEnabled
Flag set when the driver pipelines uses the Unity.Networking.Transport.SimulatorPipelineStage.
Declaration
public bool simulatorEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool |