Skip to content

v30.1.1

Compare
Choose a tag to compare
@cwtickle cwtickle released this 14 Feb 14:13
· 701 commits to develop since this release
701db38

Changelog: English | Japanese

GitHub Releases (by Release) GitHub commits since tagged version (branch)
▼ 更新用ファイルは下記 Files changed より
本体更新方法 / サポートバージョン / ソース構成 / 譜面の作成概要
要望・不具合報告 ( Gitter )

v30.0.1 -> v30.1.1 ( vs. latest v30 ) 📁 ▶️

🔃 Files changed (v30)

  • danoni_setting.js, danoni_legacy_function.js の変更は、追加した設定を使用しない限り、更新不要です。
フォルダ
Directory
ファイル名
FileName
最終更新
Last Updated
/js danoni_main.js 📥 v30.1.1
/js/lib danoni_constants.js 📥 v30.1.1
/js/template danoni_setting(-template).js 📥 v30.1.1
(参考)v29以前の差分ファイル一覧
フォルダ ファイル名 最終更新
/js/lib danoni_localbinary.js 📥 v15.1.0
/js/lib danoni_legacy_function.js 📥 v27.0.0
/css danoni_main.css 📥 v28.3.1
/img aaShadow.svg
arrow.svg
arrowShadow.svg
borderline.svg
c.svg
cursor.svg
giko.svg
iyo.svg
monar.svg
morara.svg
onigiri.svg
📥 v15.1.0
/skin danoni_skin_default.css
danoni_skin_light.css
danoni_skin_skyblue.css
📥
📥
📥
v21.4.2
Details (詳細)

⭐ New Features

  • 背景・マスクモーションに色付きオブジェクトが使えるよう変更 ( PR #1399, Issue #900 )
  • 背景・マスクモーションの座標部分に埋め込み変数が使えるよう変更 ( PR #1401 )
  • 背景・マスクモーションの項目に「animation-fill-mode」を追加 ( PR #1399 )

📔 Documentation

🐝 Functions & Variables Changed

Functions & Variables
Add convertStrToVal
Change
Delete

🍀 Remarks

1. 背景・マスクモーションにおける色付きオブジェクトについて

  • 矢印、おにぎり関連の作品中色付けするオブジェクトを背景・マスクで使用できるようになりました。
    g_imgObjのプロパティ名を指定して使用します。
    下記の場合はg_imgObj.gikoの画像が参照され、それに赤~黄色のグラデーションが適用されます。
|backtitle_data=
330,3,[c]giko/#ff9999:yellow,,5,200,200,200,0,spinY,120,forwards
480,3
|
  • なお、下記のg_imgObjではImgTypeの設定により画像が変化するため、固定化したい場合はImgTypeを固定化するか、g_imgObj にcustomjsにカスタムの変数を定義することで可能です。
    なお、danoni_localbinary.jsに未定義の画像はローカルファイルからは表示できません。ローカルサーバーが必要です。

customjsでのカスタム画像指定例

function addImages(){
	g_imgObj.arrowSpecial = `../img/classic/arrow.png`;  // 対象の画像を直接指定
}
g_customJsObj.preTitle.push(addImages); // 挿入する場所はcustomJsのpreTitle(読込前)

譜面側の定義(上で定義したarrowSpecialを指定)

|backtitle_data=
330,3,[c]arrowSpecial/#ff9999:yellow,,5,200,200,200,0,spinY,120
480,3
|

2. 背景・マスクモーションの「animation-fill-mode」実装について

  • 背景・マスクデータにanimationFillModeを指定できるようにしました。(最後に追加)
    https://developer.mozilla.org/ja/docs/Web/CSS/animation-fill-mode
  • 互換性の関係でデフォルトは指定なしとしています。
    デフォルト値を設定したい場合は、共通設定ファイルから設定が可能です。
    g_presetObj.animationFillMode = `forwards`;

💡 Recent Changes