Table of Contents

Struct StreamingOptions

Namespace
Stride.Streaming
Assembly
Stride.Rendering.dll

Available options when streaming a resource.

public struct StreamingOptions
Inherited Members

Fields

Default

The default steaming options: KeepLoaded=false, ForceHighestQuality=false, LoadImmediately=false

public static StreamingOptions Default

Field Value

StreamingOptions

DoNotStream

Do not stream the texture always keep it to the higest quality

public static StreamingOptions DoNotStream

Field Value

StreamingOptions

ForceHighestQuality

Force the resource to be loaded at highest quality.

public bool ForceHighestQuality

Field Value

bool

IgnoreResource

Do not update the resource data

public bool IgnoreResource

Field Value

bool

KeepLoaded

Keep the resource loaded even if not rendered on the screen.

public bool KeepLoaded

Field Value

bool

LoadAtOnce

Request the immediate loading of the resource to its highest level of quality.

public static StreamingOptions LoadAtOnce

Field Value

StreamingOptions

LoadImmediately

Block the execution flow and load the resource up to maximum quality synchronously.

public bool LoadImmediately

Field Value

bool

Methods

CombineWith(StreamingOptions)

Merge and return the combination of two streaming options for a same resource.

public StreamingOptions CombineWith(StreamingOptions other)

Parameters

other StreamingOptions

Returns

StreamingOptions