Appearance
@loontail/minecraft-kit / LaunchOptions
Type Alias: LaunchOptions
ts
type LaunchOptions = {
auth: LaunchAuth;
extraGameArgs?: readonly string[];
extraJvmArgs?: readonly string[];
features?: Readonly<Record<string, boolean>>;
fullscreen?: boolean;
launcherName?: string;
launcherVersion?: string;
memory?: LaunchMemoryOptions;
resolution?: LaunchResolutionOptions;
};Defined in: src/types/launch.ts:24
Inputs for kit.launch.compose (and the lower-level composeLaunch helper).
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
auth | readonly | LaunchAuth | - | src/types/launch.ts:25 |
extraGameArgs? | readonly | readonly string[] | Extra game args appended after composed game args. | src/types/launch.ts:36 |
extraJvmArgs? | readonly | readonly string[] | Extra JVM args appended after composed JVM args. | src/types/launch.ts:34 |
features? | readonly | Readonly<Record<string, boolean>> | Set of feature flags evaluated by argument rules (e.g. is_demo_user). | src/types/launch.ts:38 |
fullscreen? | readonly | boolean | - | src/types/launch.ts:28 |
launcherName? | readonly | string | Brand string injected as ${launcher_name}. | src/types/launch.ts:30 |
launcherVersion? | readonly | string | Version string injected as ${launcher_version}. | src/types/launch.ts:32 |
memory? | readonly | LaunchMemoryOptions | - | src/types/launch.ts:26 |
resolution? | readonly | LaunchResolutionOptions | - | src/types/launch.ts:27 |