diff options
Diffstat (limited to 'src/d/actor/d_a_e_hm.cpp')
| -rw-r--r-- | src/d/actor/d_a_e_hm.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/d/actor/d_a_e_hm.cpp b/src/d/actor/d_a_e_hm.cpp index 4aa37a6964..f6a473fe11 100644 --- a/src/d/actor/d_a_e_hm.cpp +++ b/src/d/actor/d_a_e_hm.cpp @@ -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 |
