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 = 0Automatically selects the appropriate stream type based on the context and environment.
GDStream = 2Uses the Godot-specific stream implementation that integrates with Godot's file system.
IOStream = 1Uses 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.