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
+7 -7
View File
@@ -43,13 +43,13 @@ daE_HM_HIO_c::daE_HM_HIO_c() {
void daE_HM_HIO_c::genMessage(JORMContext* ctx) {
// "Himekuji"
// appears to be a portmanteau - "ヒメ" = small (prefix), "ナメクジ" = slug)
ctx->genLabel("ヒメクジ", 0x80000001, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("サーチエリア", &searchArea, 0.0f, 2000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("飛ばし方向スピード", &flyDirSpeed, 0.0f, -100.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("飛ばし方向Yスピード", &flyDirYSpeed, 0.0f, 100.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("重力設定", &gravity, 0.0f, -20.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("攻撃範囲", &attackRange, -1.0f, 20.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genSlider("疾風受け時間", &galeStunTime, 0.0f, 1000.0f, 0, NULL, 0xffff, 0xffff, 0x200, 0x18);
ctx->genLabel("ヒメクジ", 0x80000001);
ctx->genSlider("サーチエリア", &searchArea, 0.0f, 2000.0f);
ctx->genSlider("飛ばし方向スピード", &flyDirSpeed, 0.0f, -100.0f);
ctx->genSlider("飛ばし方向Yスピード", &flyDirYSpeed, 0.0f, 100.0f);
ctx->genSlider("重力設定", &gravity, 0.0f, -20.0f);
ctx->genSlider("攻撃範囲", &attackRange, -1.0f, 20.0f);
ctx->genSlider("疾風受け時間", &galeStunTime, 0.0f, 1000.0f);
}
#endif