Skip to content

Commit

Permalink
fix: [trans rule=] 時の GLSL を最適化
Browse files Browse the repository at this point in the history
  • Loading branch information
famibee committed Oct 18, 2024
1 parent 1b57f3b commit 2de36ae
Show file tree
Hide file tree
Showing 27 changed files with 786 additions and 832 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
- fix: [trans rule=] 時の GLSL を最適化
- fix: リファクタリング


## [1.60.7](https://github.com/famibee/SKYNovel/compare/v1.60.6...v1.60.7) (2024-10-17)


Expand Down
14 changes: 7 additions & 7 deletions dist/SoundMng.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/SoundMng.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/sn/Button.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Container, Rectangle, IDestroyOptions } from 'pixi.js';
import { Container, Rectangle } from 'pixi.js';
import { IEvtMng } from './CmnLib';
import { HArg } from './Grammar';
import { Config } from './Config';
Expand All @@ -14,7 +14,7 @@ export declare class Button extends Container {
setText(_text: string): void;
getBtnBounds: () => Rectangle;
constructor(hArg: HArg, evtMng: IEvtMng, resolve: () => void, canFocus: () => boolean);
destroy(_options?: IDestroyOptions | boolean): void;
destroy(): void;
makeDesignCast(_gdc: IMakeDesignCast): void;
showDesignCast(): void;
cvsResize(): void;
Expand Down
2 changes: 1 addition & 1 deletion dist/sn/Button.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions dist/sn/CmnTween.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@ export declare class CmnTween {
static cnvTweenArg(hArg: HArg, lay: any): {};
static stopAllTw(): void;
static tween(tw_nm: string, hArg: HArg, hNow: any, hTo: any, onUpdate: () => void, onComplete: () => void, onEnd: () => void): void;
static tweenA(tw_nm: string, hArg: HArg, hNow: any, hTo: any, onUpdate: () => void, onComplete: () => void, onEnd: () => void): Tween<any>;
static tweenB(chain: string | undefined, tw: Tween<any>): void;
static wt(hArg: HArg): boolean;
static readonly TW_INT_TRANS = "trans\n";
static get isTrans(): boolean;
static finish_trans(): boolean;
static wait_tsy(hArg: HArg): boolean;
static stop_tsy(hArg: HArg): boolean;
Expand Down
2 changes: 1 addition & 1 deletion dist/sn/CmnTween.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/sn/DesignCast.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ export declare class DesignCast {
static replaceToken(_o: any): void;
}
export declare class GrpLayDesignCast extends DesignCast {
constructor(_spLay: Sprite, _gl: GrpLayer);
constructor(_ctn: Sprite, _gl: GrpLayer);
setSp(_sp: Sprite): void;
}
export declare class TxtLayDesignCast extends DesignCast {
constructor(_spLay: Sprite, _ts: TxtStage);
constructor(_ctn: Sprite, _ts: TxtStage);
}
export declare class TxtLayPadDesignCast extends DesignCast {
constructor(_ts: TxtStage);
Expand Down
2 changes: 1 addition & 1 deletion dist/sn/DesignCast.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sn/LayerMng.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/sn/SpritesMng.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ type IFncCompSpr = (sp: Sprite) => void;
export declare class SpritesMng {
#private;
readonly csvFn: string;
readonly spLay?: Container | undefined;
readonly ctn?: Container | undefined;
private fncFirstComp;
private fncAllComp;
static init(cfg: Config, val: IVariable, sys: SysBase, main: IMain, sndMng: SoundMng): void;
static setEvtMng(evtMng: IEvtMng): void;
constructor(csvFn?: string, spLay?: Container | undefined, fncFirstComp?: IFncCompSpr, fncAllComp?: (isStop: boolean) => void);
constructor(csvFn?: string, ctn?: Container | undefined, fncFirstComp?: IFncCompSpr, fncAllComp?: (isStop: boolean) => void);
readonly ret: boolean;
destroy(): void;
static destroy(): void;
Expand Down
2 changes: 1 addition & 1 deletion dist/sn/SpritesMng.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2de36ae

Please sign in to comment.