mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-12 13:35:35 -04:00
Use default parameter values in JORMContext calls where appropriate (#3057)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user