dos s0001 makerInfo - cwtickle/danoniplus-docs GitHub Wiki
English | Japanese
^ Return to Common setting file specification
< Definition of custom key types || Maker credits and basic settings | Custom file settings >
Maker credits and basic settings
g_presetObj.tuning - Charts maker
-> Priority chart settings if specified : tuning
- Sets the value to be specified for the default creator name. If set together with the chart creator URI below, you can omit the chart settings: tuning.
g_presetObj.tuning = `name`;
g_presetObj.tuningEn = `name`; // 言語が英語のときに表示
g_presetObj.tuningJa = `名前`; // 言語が日本語のときに表示
g_presetObj.tuningUrl - Charts maker's URI
-> Priority chart settings if specified : tuning
- Set the default creator name URI.
g_presetObj.tuningUrl = `https://www.google.co.jp/`;
g_presetObj.autoSpread - Automatic width expansion setting
-> Priority chart settings if specified : autoSpread
- Sets whether or not the width is adjusted to take into account the minimum width by key.
Default istrue
(enabled).
g_presetObj.autoSpread = false;
g_presetObj.autoMinWidth - Minimum width setting
-> Priority chart settings if specified : windowWidth
- Sets the minimum width common to all works. The default value is
500px
. This setting does not work when the automatic width extension setting is disabled.
g_presetObj.autoMinWidth = 600;
g_presetObj.autoMinHeight - Minimum height setting
-> Priority chart settings if specified : windowHeight
- Sets the minimum height common to all works. The default value is
500px
.
g_presetObj.autoMinHeight = 500;
g_presetObj.heightVariable - Variable screen window height setting
-> Priority chart settings if specified : heightVariable
- Sets whether the height of the screen window for this work can be controlled with the parameter
h
. The default isfalse
(no control).
The control range of parameterh
is from 400px to 1000px. If less than 500px is specified, the height will be 500px and the size of the play screen will be reduced to the specified value.
g_presetObj.heightVariable = true;
g_presetObj.windowAlign - Window position
-> Priority chart settings if specified : windowAlign
- Select the window position of the work section from
left
,center
, orright
. The default iscenter
.
g_presetObj.windowAlign = `left`;
Changelog
Version | Change details |
---|---|
v35.0.0 | - Added variable screen window height setting (g_presetObj.heightVariable) |
v33.7.0 | - Added minimum height setting (g_presetObj.autoMinHeight) |
v29.2.0 | - Added language-specific settings for chart maker name (g_presetObj.tuning) |
v27.1.0 | - Added automatic width expansion setting (g_presetObj.autoSpread), minimum width setting (g_presetObj.autoMinWidth), window position (g_presetObj.windowAlign) |
v26.3.1 | << Variable name change >> - g_presetTuning -> g_presetObj.tuning - g_presetTuningUrl -> g_presetObj.tuningUrl |
v3.0.0 | - Initial Implementation |
< Definition of custom key types || Maker credits and basic settings | Custom file settings >