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:
+10
-10
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user