Use default parameter values in JORMContext calls where appropriate (#3057)

This commit is contained in:
Max Roncace
2026-01-19 21:18:30 -05:00
committed by GitHub
parent d83996c711
commit 1fba6e13e5
134 changed files with 5369 additions and 6826 deletions
+5 -7
View File
@@ -20,17 +20,15 @@ daObj_Kita_HIO_c::daObj_Kita_HIO_c() {
#if DEBUG
void daObj_Kita_HIO_c::genMessage(JORMContext* ctx) {
ctx->genLabel("  風で動く連続板", 0x80000001, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genLabel("  風で動く連続板", 0x80000001);
// Model Size X
ctx->genSlider("モデルサイズX", &mModelSizeX, 0.0f, 10.0f, 0, NULL, 0xffff, 0xffff, 0x200,
0x18);
ctx->genSlider("モデルサイズX", &mModelSizeX, 0.0f, 10.0f);
// Model Size Z
ctx->genSlider("モデルサイズZ", &mModelSizeZ, 0.0f, 10.0f, 0,
NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("モデルサイズZ", &mModelSizeZ, 0.0f, 10.0f);
// Gap
ctx->genSlider("隙間", &mGap, 0.0f, 500.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("隙間", &mGap, 0.0f, 500.0f);
// Swing Range
ctx->genSlider("揺れ幅", &mSwingRange, 0.0f, 2.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("揺れ幅", &mSwingRange, 0.0f, 2.0f);
}
#endif