mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-23 14:43:38 +00:00
23 lines
570 B
Plaintext
23 lines
570 B
Plaintext
option('ui_backend',
|
|
type : 'combo',
|
|
choices: ['shiggy', 'java'],
|
|
value : 'shiggy',
|
|
description : 'Specifies a backend implementation for the game UI.')
|
|
|
|
option('classic_panorama',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Enable classic java edition panorama (ui_backend=java ONLY).')
|
|
|
|
option('enable_vsync',
|
|
type : 'boolean',
|
|
value : true,
|
|
description : 'Toggles V-Sync and adds options to unlock maximum in-game framerate.')
|
|
|
|
option(
|
|
'gles',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Use OpenGL ES instead of Desktop GL',
|
|
)
|