Skip to content

Commit

Permalink
3.1.0 Scene_TextLog クラスを公開
Browse files Browse the repository at this point in the history
  • Loading branch information
elleonard committed Nov 24, 2023
1 parent 2df4190 commit 2bfc42b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/codes/TextLog/DarkPlasma_TextLog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -936,8 +936,11 @@ TouchInput.isDownMoved = function () {
return this._deltaY > 0 && this._pressedTime % 10 === 0;
};

type _Scene_TextLog = typeof Scene_TextLog;
type _Window_TextLog = typeof Window_TextLog;
declare global {
var Scene_TextLog: _Scene_TextLog;
var Window_TextLog: _Window_TextLog;
}
window.Scene_TextLog = Scene_TextLog;
window.Window_TextLog = Window_TextLog;
3 changes: 3 additions & 0 deletions src/codes/TextLog/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ DarkPlasma_TextLog:
license: MIT
excludeLicenseManager: false
histories:
- date: 2023/11/24
version: 3.1.0
description: 'Scene_TextLog クラスを公開'
- date: 2023/11/23
version: 3.0.0
description: 'typescript移行'
Expand Down

0 comments on commit 2bfc42b

Please sign in to comment.