Table of Contents

Enum StreamType

Namespace
Cobilas.GodotEngine.Utility.IO
Assembly
com.cobilas.godot.utility.dll

Specifies the type of stream to be used for archive operations.

public enum StreamType : byte

Fields

Auto = 0

Automatically selects the appropriate stream type based on the context and environment.

GDStream = 2

Uses the Godot-specific stream implementation that integrates with Godot's file system.

IOStream = 1

Uses the standard .NET I/O stream implementation for file operations.

Remarks

This enumeration determines which underlying stream implementation will be used when working with archive files in the Godot engine environment.