Skip to content
Merged

- #678

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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/2d/blendMode/basic/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
</head>
<body>
</body>
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/blendMode/basic/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../dist/index.js?t=1770713934910";

/**
* [KO] Blend Mode 예제
Expand Down Expand Up @@ -208,11 +208,11 @@ function createSourceView(redGPUContext, scene, texture_blendTest_base, texture_
* @param {RedGPU.Display.Sprite2D} shape
*/
const renderTestPane = async (redGPUContext, base, shape) => {
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const {
setRedGPUTest_pane,
setDebugButtons
} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770698056099");
} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770713934910");
setDebugButtons(RedGPU, redGPUContext);
const pane = new Pane();
setRedGPUTest_pane(pane, redGPUContext, false);
Expand Down
4 changes: 2 additions & 2 deletions examples/2d/group2D/basic/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
</head>
<body>
</body>
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/group2D/basic/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../dist/index.js?t=1770713934910";

/**
* [KO] Group2D 예제
Expand Down Expand Up @@ -116,9 +116,9 @@ const createChildSprite2D = (redGPUContext, parent) => {
* @param {RedGPU.Display.Sprite2D} child
*/
const renderTestPane = async (redGPUContext, rootGroup, parent, child) => {
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const pane = new Pane();
const {setDebugButtons} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770698056099");
const {setDebugButtons} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770713934910");
setDebugButtons(RedGPU, redGPUContext);
const maxW = redGPUContext.screenRectObject.width;
const maxH = redGPUContext.screenRectObject.height;
Expand Down
4 changes: 2 additions & 2 deletions examples/2d/helloWorld2D/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
</head>
<body>
</body>
Expand Down
8 changes: 4 additions & 4 deletions examples/2d/helloWorld2D/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../dist/index.js?t=1770713934910";

/**
* [KO] Hello World 2D 예제
Expand Down Expand Up @@ -100,9 +100,9 @@ RedGPU.init(
* @param {RedGPU.RedGPUContext} redGPUContext
*/
const renderTestPane = async (redGPUContext) => {
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const {setRedGPUTest_pane} = await import("../../exampleHelper/createExample/panes/index.js?t=1770698056099");
const {setDebugButtons} = await import('../../exampleHelper/createExample/panes/index.js?t=1770698056099');
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const {setRedGPUTest_pane} = await import("../../exampleHelper/createExample/panes/index.js?t=1770713934910");
const {setDebugButtons} = await import('../../exampleHelper/createExample/panes/index.js?t=1770713934910');
setDebugButtons(RedGPU, redGPUContext);
const pane = new Pane();
setRedGPUTest_pane(pane, redGPUContext, true);
Expand Down
4 changes: 2 additions & 2 deletions examples/2d/interaction/keyboardEvent/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link href="../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
</head>
<body>
</body>
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/interaction/keyboardEvent/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../dist/index.js?t=1770713934910";

const canvas = document.createElement('canvas');
document.body.appendChild(canvas);
Expand Down Expand Up @@ -76,8 +76,8 @@ RedGPU.init(
);

const renderTestPane = async (redGPUContext, keyboardKeyBuffer) => {
const { Pane } = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const { setDebugButtons } = await import("../../../exampleHelper/createExample/panes/index.js?t=1770698056099");
const { Pane } = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const { setDebugButtons } = await import("../../../exampleHelper/createExample/panes/index.js?t=1770713934910");
setDebugButtons(RedGPU, redGPUContext)
const pane = new Pane();
pane.addBlade({
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/interaction/mouseEvent/sprite2D/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js?t=1770698056099"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js?t=1770713934910"></script>
</head>
<body>
</body>
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/interaction/mouseEvent/sprite2D/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../../dist/index.js?t=1770713934910";

/**
* [KO] Sprite2D Mouse Event 예제
Expand Down Expand Up @@ -145,7 +145,7 @@ const createSampleSprite2D = async (redGPUContext, scene, updateInfo) => {
* @param {RedGPU.RedGPUContext} redGPUContext
*/
const renderTestPane = async (redGPUContext) => {
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const {setDebugButtons} = await import("../../../../exampleHelper/createExample/panes/index.js?t=1770698056099");
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const {setDebugButtons} = await import("../../../../exampleHelper/createExample/panes/index.js?t=1770713934910");
setDebugButtons(RedGPU, redGPUContext);
};
6 changes: 3 additions & 3 deletions examples/2d/interaction/mouseEvent/spriteSheet2D/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js?t=1770698056099"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js?t=1770713934910"></script>
</head>
<body>
</body>
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/interaction/mouseEvent/spriteSheet2D/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../../dist/index.js?t=1770713934910";

/**
* [KO] SpriteSheet2D Mouse Event 예제
Expand Down Expand Up @@ -143,7 +143,7 @@ const createSampleSprite2D = async (redGPUContext, scene, updateInfo) => {
* @param {RedGPU.RedGPUContext} redGPUContext
*/
const renderTestPane = async (redGPUContext) => {
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const {setDebugButtons} = await import("../../../../exampleHelper/createExample/panes/index.js?t=1770698056099");
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const {setDebugButtons} = await import("../../../../exampleHelper/createExample/panes/index.js?t=1770713934910");
setDebugButtons(RedGPU, redGPUContext);
};
6 changes: 3 additions & 3 deletions examples/2d/interaction/mouseEvent/textField2D/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js?t=1770698056099"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js?t=1770713934910"></script>
</head>
<body>
</body>
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/interaction/mouseEvent/textField2D/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../../dist/index.js?t=1770713934910";

/**
* [KO] TextField2D Mouse Event 예제
Expand Down Expand Up @@ -150,7 +150,7 @@ function getRandomHexValue() {
* @param {RedGPU.RedGPUContext} redGPUContext
*/
const renderTestPane = async (redGPUContext) => {
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const {setDebugButtons} = await import("../../../../exampleHelper/createExample/panes/index.js?t=1770698056099");
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const {setDebugButtons} = await import("../../../../exampleHelper/createExample/panes/index.js?t=1770713934910");
setDebugButtons(RedGPU, redGPUContext);
};
4 changes: 2 additions & 2 deletions examples/2d/line2D/linear/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
</head>
<body>
</body>
Expand Down
4 changes: 2 additions & 2 deletions examples/2d/line2D/linear/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// RedGPU 사용을 위한 모듈 임포트
import * as RedGPU from "../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../dist/index.js?t=1770713934910";

/**
* [KO] Line2D (Linear) 예제
Expand Down Expand Up @@ -130,7 +130,7 @@ function getRainbowColor(t) {

/* 6. 디버그 UI 패널 */
async function setupDebugPanel(redGPUContext, groups, updateLinesCallback, getPointsPerLine, setPointsPerLine) {
const {Pane} = await import("https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099");
const {Pane} = await import("https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910");
const pane = new Pane();

const debugOptions = {
Expand Down
4 changes: 2 additions & 2 deletions examples/2d/opacity/basic/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
</head>
<body>
</body>
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/opacity/basic/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../dist/index.js?t=1770713934910";

/**
* [KO] Opacity 예제
Expand Down Expand Up @@ -148,9 +148,9 @@ const createChildTextField2D = (redGPUContext, parent) => {
* @param {Array<RedGPU.Display.DisplayObject2D>} children
*/
const renderTestPane = async (redGPUContext, parent, children) => {
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const pane = new Pane();
const {setDebugButtons} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770698056099");
const {setDebugButtons} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770713934910");
setDebugButtons(RedGPU, redGPUContext);
const maxW = redGPUContext.screenRectObject.width;
const maxH = redGPUContext.screenRectObject.height;
Expand Down
4 changes: 2 additions & 2 deletions examples/2d/sprite2D/basic/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
</head>
<body>
</body>
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/sprite2D/basic/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../dist/index.js?t=1770713934910";

/**
* [KO] Sprite2D Basic 예제
Expand Down Expand Up @@ -63,11 +63,11 @@ RedGPU.init(
* @param {RedGPU.Display.Sprite2D} sprite2D
*/
const renderTestPane = async (redGPUContext, sprite2D) => {
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const {
setDebugButtons,
setRedGPUTest_pane
} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770698056099");
} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770713934910");
setDebugButtons(RedGPU, redGPUContext);
const pane = new Pane();
setRedGPUTest_pane(pane, redGPUContext, false);
Expand Down
4 changes: 2 additions & 2 deletions examples/2d/sprite2D/childMethod/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
</head>
<body>
</body>
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/sprite2D/childMethod/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../dist/index.js?t=1770713934910";

/**
* [KO] Sprite2D Child Method 예제
Expand Down Expand Up @@ -79,12 +79,12 @@ const createInitialObjects = (redGPUContext, scene) => {
* @param {RedGPU.Display.Scene} scene
*/
const createPaneUI = async (redGPUContext, scene) => {
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const pane = new Pane();
const {
setDebugButtons,
setRedGPUTest_pane
} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770698056099");
} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770713934910");
setDebugButtons(RedGPU, redGPUContext);
pane.addButton({title: 'Add Child'}).on('click', () => {
addChildObject(redGPUContext, scene);
Expand Down
4 changes: 2 additions & 2 deletions examples/2d/sprite2D/hierarchy/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
</head>
<body>
</body>
Expand Down
6 changes: 3 additions & 3 deletions examples/2d/sprite2D/hierarchy/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as RedGPU from "../../../../dist/index.js?t=1770698056099";
import * as RedGPU from "../../../../dist/index.js?t=1770713934910";

/**
* [KO] Sprite2D Hierarchy 예제
Expand Down Expand Up @@ -98,12 +98,12 @@ const createChildSprite2D = (redGPUContext, parent) => {
* @param {RedGPU.Display.Sprite2D} child
*/
const renderTestPane = async (redGPUContext, parent, child) => {
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770698056099');
const {Pane} = await import('https://cdn.jsdelivr.net/npm/tweakpane@4.0.3/dist/tweakpane.min.js?t=1770713934910');
const pane = new Pane();
const {
setDebugButtons,
setRedGPUTest_pane
} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770698056099");
} = await import("../../../exampleHelper/createExample/panes/index.js?t=1770713934910");
setDebugButtons(RedGPU, redGPUContext);
const maxW = redGPUContext.screenRectObject.width;
const maxH = redGPUContext.screenRectObject.height;
Expand Down
4 changes: 2 additions & 2 deletions examples/2d/sprite2D/pivot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<meta content="width=device-width, initial-scale=1.0" name="viewport">

<link href="../../../exampleHelper/createExample/example.css" rel="stylesheet"/>
<script src="index.js?t=1770698056099" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770698056099" type="module"></script>
<script src="index.js?t=1770713934910" type="module"></script>
<script src="../../../exampleHelper/createExample/loadExampleInfo/index.js?t=1770713934910" type="module"></script>
</head>
<body>
</body>
Expand Down
Loading
Loading