Skip to content

Commit

Permalink
Merge pull request #155 from Next2D/develop
Browse files Browse the repository at this point in the history
不要な変数を削除
  • Loading branch information
ienaga authored Nov 2, 2023
2 parents 23b74bb + 525df61 commit bc52af7
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 78 deletions.
37 changes: 0 additions & 37 deletions DOCS.md

This file was deleted.

2 changes: 1 addition & 1 deletion next2d.js

Large diffs are not rendered by default.

28 changes: 13 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@next2d/player",
"version": "1.18.6",
"version": "1.18.7",
"description": "Experience the fast and beautiful anti-aliased rendering of WebGL. You can create rich, interactive graphics, cross-platform applications and games without worrying about browser or device compatibility.",
"author": "Toshiyuki Ienaga<ienaga@tvon.jp> (https://github.com/ienaga/)",
"author": "Toshiyuki Ienaga<ienaga@next2d.app> (https://github.com/ienaga/)",
"license": "MIT",
"homepage": "https://next2d.app",
"bugs": "https://github.com/Next2D/Player/issues",
Expand All @@ -26,8 +26,7 @@
"publish:dist": "tsc && node ./scripts/publish.js",
"clean": "node ./scripts/clean.js",
"build": "tsc && node ./scripts/build.js && webpack --mode production",
"test": "jest",
"jsdoc": "tsc && jsdoc -c jsdoc.conf.js -r dist DOCS.md"
"test": "jest"
},
"funding": {
"type": "github",
Expand All @@ -37,23 +36,22 @@
"htmlparser2": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.19",
"@babel/plugin-transform-modules-commonjs": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@next2d/jsdoc-template": "^1.0.7",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"@babel/core": "^7.23.2",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"@babel/preset-env": "^7.23.2",
"@types/jest": "^29.5.7",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-webpack-plugin": "^4.0.1",
"fflate": "^0.8.0",
"fflate": "^0.8.1",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
Expand Down
8 changes: 0 additions & 8 deletions packages/display/src/MovieClip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export class MovieClip extends Sprite
public _$currentFrame: number;
public _$stopFlag: boolean;
public _$canAction: boolean;
private _$childRemove: boolean;
public _$canSound: boolean;
public _$actionProcess: boolean;
public _$actions: Map<number, Function[]>;
Expand Down Expand Up @@ -86,13 +85,6 @@ export class MovieClip extends Sprite
*/
this._$canAction = true;

/**
* @type {boolean}
* @default false
* @private
*/
this._$childRemove = false;

/**
* @type {boolean}
* @default true
Expand Down
4 changes: 2 additions & 2 deletions packages/util/src/Util.ts

Large diffs are not rendered by default.

10 changes: 0 additions & 10 deletions packages/webgl/src/CanvasPatternToWebGL.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import type { CanvasToWebGLContext } from "./CanvasToWebGLContext";

/**
* @class
*/
export class CanvasPatternToWebGL
{
private readonly _$context: CanvasToWebGLContext;
private readonly _$texture: WebGLTexture;
private readonly _$repeat: boolean;
private readonly _$colorTransform: Float32Array;
Expand All @@ -15,18 +12,11 @@ export class CanvasPatternToWebGL
* @public
*/
constructor (
context: CanvasToWebGLContext,
texture: WebGLTexture,
repeat: boolean,
color_transform: Float32Array
) {

/**
* @type {CanvasToWebGLContext}
* @private
*/
this._$context = context;

/**
* @type {WebGLTexture}
* @private
Expand Down
2 changes: 1 addition & 1 deletion packages/webgl/src/CanvasToWebGLContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1824,7 +1824,7 @@ export class CanvasToWebGLContext
repeat: boolean,
color_transform: Float32Array
): CanvasPatternToWebGL {
return new CanvasPatternToWebGL(this, texture, repeat, color_transform);
return new CanvasPatternToWebGL(texture, repeat, color_transform);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Next2D } from "@next2d/core";

if (!("next2d" in window)) {

console.log("%c Next2D Player %c 1.18.6 %c https://next2d.app",
console.log("%c Next2D Player %c 1.18.7 %c https://next2d.app",
"color: #fff; background: #5f5f5f",
"color: #fff; background: #4bc729",
"");
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ const player = {
}
};

module.exports = [render_worker, player];
module.exports = [unzip_worker, render_worker, player];
2 changes: 1 addition & 1 deletion worker/renderer/RendererWorker.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion worker/unzip/UnzipWorker.min.js

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

0 comments on commit bc52af7

Please sign in to comment.