Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
node-version: [18.x, 20.x, 22.x]
node-version: [20.x, 22.x]

env:
CI: true
Expand Down
Binary file modified TestData/CharactorBoxSamples/box_00_00.ssfb
Binary file not shown.
Binary file modified TestData/MeshBone/Knight.ssfb
Binary file not shown.
1 change: 0 additions & 1 deletion docs/Player/sample.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ const testVersion = "sampleAnimation3";
// (通常のPIXI.jsアプリケーションの初期化手順)
const app = new PIXI.Application();
await app.init({
preference: 'webgpu',
width: 1280,
height: 720,
backgroundColor: 0x606060
Expand Down
2 changes: 1 addition & 1 deletion docs/ViewerPlayer/ss6player-viewer.min.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion docs/ViewerPlayer/ss6player-viewer.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -15819,7 +15819,6 @@ var ss6PlayerViewer = (function (exports, pixi_js) {
const pixiApplication = new pixi_js.Application();
const pixiOptions = options === void 0 || options === null ? {
// default options
preference: "webgpu",
width: this.canvasWidth,
height: this.canvasHeight,
backgroundAlpha: 0
Expand Down
1 change: 0 additions & 1 deletion docs/ui-examples/SS6_UIDemo.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
// (通常のPIXI.jsアプリケーションの初期化手順)
const app = new PIXI.Application();
await app.init({
preference: 'webgpu',
width: 960,
height: 720,
backgroundColor: 0x606060,
Expand Down
37 changes: 37 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

import js from "@eslint/js";
import ts from "@typescript-eslint/eslint-plugin";
import tsParser from "@typescript-eslint/parser";

export default [
{
files: ["**/*.ts", "**/*.tsx"],
ignores: ["**/node_modules/**", "**/dist/**"],
languageOptions: {
parser: tsParser,
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
project: ["./tsconfig.json"],
},
},
plugins: {
"@typescript-eslint": ts,
},
rules: {
...js.configs.recommended.rules,
...ts.configs.recommended.rules,
"no-undef": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-this-alias": "off"
},
},

{
files: ["**/*.js", "**/*.cjs", "**/*.mjs"],
...js.configs.recommended,
rules: {
}
}
];
Loading