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
+10 -10
View File
@@ -46,16 +46,16 @@ daE_SH_HIO_c::daE_SH_HIO_c() {
#if DEBUG
void daE_SH_HIO_c::genMessage(JORMContext* ctx) {
// "Stalhound"
ctx->genLabel(" スタルハウンド", 0x80000001, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("基本サイズ", &mBaseSize, 0.0f, 3.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("歩き速度", &mWalkSpeed, 0.0f, 60.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("走り速度", &mRunSpeed, 0.0f, 60.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("チェック1", &mCheck1, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("チェック2", &mCheck2, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("チェック3", &mCheck3, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("チェック4", &mCheck4, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("チェック5", &mCheck5, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genCheckBox("時間無視", &mIgnoreTime, 1, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genLabel(" スタルハウンド", 0x80000001);
ctx->genSlider("基本サイズ", &mBaseSize, 0.0f, 3.0f);
ctx->genSlider("歩き速度", &mWalkSpeed, 0.0f, 60.0f);
ctx->genSlider("走り速度", &mRunSpeed, 0.0f, 60.0f);
ctx->genSlider("チェック1", &mCheck1, 0.0f, 2000.0f);
ctx->genSlider("チェック2", &mCheck2, 0.0f, 2000.0f);
ctx->genSlider("チェック3", &mCheck3, 0.0f, 2000.0f);
ctx->genSlider("チェック4", &mCheck4, 0.0f, 2000.0f);
ctx->genSlider("チェック5", &mCheck5, 0.0f, 2000.0f);
ctx->genCheckBox("時間無視", &mIgnoreTime, 0x1);
}
#endif