Skip to content

Commit

Permalink
deploy: 44dcd86
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusLongmuir committed Nov 28, 2024
1 parent 473d6bb commit 166d2f7
Show file tree
Hide file tree
Showing 10 changed files with 95 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
calculateContentBounds,
envMaps,
parseXYZ
} from "./chunk-47AAFC7E.js";
} from "./chunk-QFVJS2CI.js";
import {
Audio as Audio2,
AudioGraphics,
Expand All @@ -19,6 +19,7 @@ import {
InteractionGraphics,
LabelGraphics,
LightGraphics,
LinkGraphics,
LoadingInstanceManager,
MELEMENT_PROPERTY_NAME,
MElement,
Expand Down Expand Up @@ -57,7 +58,7 @@ import {
getRelativePositionAndRotationRelativeToObject,
parseColorAttribute,
setDebugGlobals
} from "./chunk-6SSQCGZS.js";
} from "./chunk-ZQTL6OLU.js";

// ../../node_modules/playcanvas/build/playcanvas/src/core/constants.js
var TRACEID_GPU_TIMINGS = "GpuTimings";
Expand Down Expand Up @@ -55509,6 +55510,22 @@ var PlayCanvasLight = class extends LightGraphics {
lightEntity.removeComponent("light");
}
};
var PlayCanvasLink = class extends LinkGraphics {
constructor(link) {
super(link);
this.link = link;
}
disable() {
}
enable() {
}
setHref() {
}
setTarget() {
}
dispose() {
}
};
var PlayCanvasMElement = class extends MElementGraphics {
constructor(element) {
super(element);
Expand Down Expand Up @@ -56686,6 +56703,7 @@ var PlayCanvasGraphicsInterface = {
MMLInteractionGraphicsInterface: (element) => new PlayCanvasInteraction(element),
MMLLabelGraphicsInterface: (element) => new PlayCanvasLabel(element),
MMLLightGraphicsInterface: (element) => new PlayCanvasLight(element),
MMLLinkGraphicsInterface: (element) => new PlayCanvasLink(element),
MMLModelGraphicsInterface: (element, updateMeshCallback) => new PlayCanvasModel(element, updateMeshCallback),
MMLPlaneGraphicsInterface: (element) => new PlayCanvasPlane(element),
MMLPositionProbeGraphicsInterface: (element) => new PlayCanvasPositionProbe(element),
Expand Down Expand Up @@ -57504,4 +57522,4 @@ var PlayCanvasModeInternal = class {
export {
PlayCanvasModeInternal
};
//# sourceMappingURL=PlayCanvasModeInternal-NSYWTFOA.js.map
//# sourceMappingURL=PlayCanvasModeInternal-PKZXB6CS.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
calculateContentBounds,
envMaps,
parseXYZ
} from "./chunk-47AAFC7E.js";
} from "./chunk-QFVJS2CI.js";
import {
Audio,
AudioGraphics,
Expand All @@ -20,6 +20,7 @@ import {
LabelGraphics,
LightGraphics,
LightTypes,
LinkGraphics,
LoadingInstanceManager,
MELEMENT_PROPERTY_NAME,
MElement,
Expand Down Expand Up @@ -58,7 +59,7 @@ import {
parseColorAttribute,
radToDeg,
setDebugGlobals
} from "./chunk-6SSQCGZS.js";
} from "./chunk-ZQTL6OLU.js";

// ../../node_modules/three/build/three.module.js
var REVISION = "163";
Expand Down Expand Up @@ -31190,6 +31191,22 @@ var ThreeJSLight = class extends LightGraphics {
}
}
};
var ThreeJSLink = class extends LinkGraphics {
constructor(link) {
super(link);
this.link = link;
}
disable() {
}
enable() {
}
setHref() {
}
setTarget() {
}
dispose() {
}
};
var ThreeJSMElement = class extends MElementGraphics {
constructor(element) {
super(element);
Expand Down Expand Up @@ -32288,6 +32305,7 @@ var ThreeJSGraphicsInterface = {
MMLInteractionGraphicsInterface: (element) => new ThreeJSInteraction(element),
MMLLabelGraphicsInterface: (element) => new ThreeJSLabel(element),
MMLLightGraphicsInterface: (element) => new ThreeJSLight(element),
MMLLinkGraphicsInterface: (element) => new ThreeJSLink(element),
MMLModelGraphicsInterface: (element, updateMeshCallback) => new ThreeJSModel(element, updateMeshCallback),
MMLPlaneGraphicsInterface: (element) => new ThreeJSPlane(element),
MMLPositionProbeGraphicsInterface: (element) => new ThreeJSPositionProbe(element),
Expand Down Expand Up @@ -33976,4 +33994,4 @@ three/examples/jsm/libs/fflate.module.js:
version 0.8.2
*)
*/
//# sourceMappingURL=ThreeJSModeInternal-KWFBG2JH.js.map
//# sourceMappingURL=ThreeJSModeInternal-PJLBOXJK.js.map

Large diffs are not rendered by default.

7 changes: 0 additions & 7 deletions pull/205/v1/chunk-6SSQCGZS.js.map

This file was deleted.

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

File renamed without changes.
41 changes: 35 additions & 6 deletions pull/205/v1/chunk-6SSQCGZS.js → pull/205/v1/chunk-ZQTL6OLU.js

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

7 changes: 7 additions & 0 deletions pull/205/v1/chunk-ZQTL6OLU.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pull/205/v1/index.js

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

0 comments on commit 166d2f7

Please sign in to comment.