Skip to content

Commit

Permalink
Merge pull request #4 from cwtickle/develop
Browse files Browse the repository at this point in the history
[ti-6.2] ver3.6対応(custom→settingへの移動)
  • Loading branch information
cwtickle authored Apr 4, 2019
2 parents bccfcea + e8faad7 commit 35b79e7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
11 changes: 1 addition & 10 deletions js/danoni_custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,7 @@ function customLoadingProgress(_event) {
function customTitleInit() {

// バージョン表記
g_localVersion = `ti-6.1`;

// デフォルトの曲名表示を利用しない場合は、下記をコメント化してください。
// もう一方のcustomファイルを使って再上書きも可能です。

g_headerObj.customTitleUse = `false`;
g_headerObj.customTitleArrowUse = `false`;
g_headerObj.customBackUse = `false`;
g_headerObj.customBackMainUse = `false`;
g_headerObj.customReadyUse = `false`;
g_localVersion = `ti-6.2`;

// 製作者のデフォルトアドレス
if (g_headerObj.creatorUrl === location.href) {
Expand Down
18 changes: 14 additions & 4 deletions js/danoni_setting.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ const g_presetTuningUrl = `http://cw7.sakura.ne.jp/`;

// ゲージ設定(デフォルト)
const g_presetGauge = {
Border: 70, // ノルマ制でのボーダーライン、ライフ制にしたい場合は `x` を指定
Recovery: 2, // 回復量
Damage: 7, // ダメージ量
Init: 25, // 初期値
// Border: 70, // ノルマ制でのボーダーライン、ライフ制にしたい場合は `x` を指定
// Recovery: 2, // 回復量
// Damage: 7, // ダメージ量
// Init: 25, // 初期値
};

// ゲージ設定(デフォルト以外)
Expand All @@ -38,6 +38,16 @@ const g_presetGaugeCustom = {
},
};

// デフォルトのデザインを使用せず、独自のデザインを使用するかを指定
// カスタムデザインにする場合は `true` を指定
const g_presetCustomDesignUse = {
title: `false`,
titleArrow: `false`,
back: `false`,
backMain: `false`,
ready: `false`,
}

// オプション利用設定(デフォルト)
// 一律使用させたくない場合は `false` を指定(デフォルトは `true`)
const g_presetSettingUse = {
Expand Down

0 comments on commit 35b79e7

Please sign in to comment.