dos h0063 defaultFrzColorUse - cwtickle/danoniplus-docs GitHub Wiki
English | Japanese
Home > Chart settings specification > Initial settings during play > Arrow and freeze arrow color settings
| <- defaultColorgrd | defaultFrzColorUse | frzScopeFromAC -> |
defaultFrzColorUse
- Whether to use the default set when the initial color of the freeze arrow is unspecified
- Common settings -> g_presetObj.frzColors
Usage
|defaultFrzColorUse=false|
Overview
If a freeze-arrow color (frzColor) is not specified, data completion is performed.
For that completion method, you can choose whether to get it from the default freeze-arrow color set or from the arrow color setting (setColor). The default is true
(former).
Value | Default | Description |
---|---|---|
false | Get from arrow color setting (setColor) | |
true | * | Get from default freeze-arrow color set |
Additional information
This setting can also be set from danoni_setting.js
as an overall setting.
If both settings are present, the chart settings value (defaultFrzColorUse) takes precedence.
// use default freeze arrow color set or not (true: use, false: set arrow color first)
g_presetObj.frzColors = true;
Also, since v13.3.1, g_presetObj.frzColors
defined in danoni_setting.js
is false
, or
or chart settings |defaultFrzColorUse=false|
.
If frzColor
is defined for at least one element, the value of that frzColor
is used.
|setColor=a,b,c,d,e|
|frzColor=A,B,C,D|
-> |frzColor=A,B,C,D$A,B,C,D$A,B,C,D$A,B,C,D$A,B,C,D|
|setColor=a,b,c,d,e|
|frzColor=A,B|
-> |frzColor=A,B,A,B$A,B,A,B$A,B,A,B$A,B,A,B$A,B,A,B|
|setColor=a,b,c,d,e|
|frzColor=,,A,B|
-> |frzColor=a,a,A,B$b,b,A,B$c,c,A,B$d,d,A,B$e,e,A,B|
|setColor=a,b,c,d,e|
-> |frzColor=a,a,a,a$b,b,b,b$c,c,c,c$d,d,d,d$e,e,e,e|
Related pages
- frzColor :pencil: Initial color settings for freeze-arrows for each color group
- frzScopeFromAC :pencil: Setting the range within which the arrow color change is automatically applied to the freeze-arrow color change
- Common settings > Freeze arrow settings
Changelog
Version | Change details |
---|---|
v25.5.1 | - When set to "false", the automatic application of freeze-arrow color change from arrow color change is disabled. |
v25.1.0 | - When set to "false", individual and overall color changes applied to arrows are now also applied to freeze arrows. |
v13.3.1 | - Partially changed completion rules for freeze-arrow color (frzColor) |
v13.1.1 | - Initial implementation |
| <- defaultColorgrd | defaultFrzColorUse | frzScopeFromAC -> |