bard-legends-framework 0.7.28 → 0.7.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/pixi/modules/CAMERA/camera.js +0 -5
- package/dist/pixi/modules/CAMERA/camera.js.map +1 -1
- package/dist/pixi/modules/CAMERA/index.d.ts +1 -1
- package/dist/pixi/modules/CAMERA/index.js +2 -1
- package/dist/pixi/modules/CAMERA/index.js.map +1 -1
- package/package.json +1 -1
- package/package.json.bak +1 -1
|
@@ -15,11 +15,6 @@ class Camera {
|
|
|
15
15
|
async setup() {
|
|
16
16
|
// @ts-ignore
|
|
17
17
|
this.layers = await this.cameraViewGateway.getLayers();
|
|
18
|
-
game_entities_1.UpdateCycle.beforeSceneUpdateAction
|
|
19
|
-
.subscribe(({ time, delta }) => {
|
|
20
|
-
this.cameraGateway.update(time, delta);
|
|
21
|
-
})
|
|
22
|
-
.skipAttachCheck();
|
|
23
18
|
}
|
|
24
19
|
setPosition(position, options) {
|
|
25
20
|
this.cameraGateway.setPosition(position, options);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"camera.js","sourceRoot":"","sources":["../../../../src/pixi/modules/CAMERA/camera.ts"],"names":[],"mappings":";;;AAEA,
|
|
1
|
+
{"version":3,"file":"camera.js","sourceRoot":"","sources":["../../../../src/pixi/modules/CAMERA/camera.ts"],"names":[],"mappings":";;;AAEA,0DAAiD;AACjD,uDAA8F;AAE9F,MAAa,MAAM;IAMjB,IAAI,QAAQ;QACV,OAAO,IAAI,CAAC,aAAa,CAAC,iBAAiB,EAAE,CAAC;IAChD,CAAC;IAED;QACE,IAAI,CAAC,aAAa,GAAG,uBAAO,CAAC,GAAG,CAAC,0BAAa,CAAC,CAAC;QAChD,IAAI,CAAC,iBAAiB,GAAG,uBAAO,CAAC,GAAG,CAAC,8BAAiB,CAAC,CAAC;QAExD,IAAI,CAAC,aAAa,CAAC,YAAY,EAAE,CAAC;IACpC,CAAC;IAED,KAAK,CAAC,KAAK;QACT,aAAa;QACb,IAAI,CAAC,MAAM,GAAG,MAAM,IAAI,CAAC,iBAAiB,CAAC,SAAS,EAAE,CAAC;IACzD,CAAC;IAED,WAAW,CAAC,QAAgB,EAAE,OAAyB;QACrD,IAAI,CAAC,aAAa,CAAC,WAAW,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;IACpD,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,EAAW;QACtB,OAAO,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IAC3C,CAAC;CACF;AA7BD,wBA6BC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { Camera } from './camera';
|
|
2
|
-
export { FocusingAnimation } from './⚜️gateways';
|
|
2
|
+
export { CameraGateway, FocusingAnimation } from './⚜️gateways';
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FocusingAnimation = exports.Camera = void 0;
|
|
3
|
+
exports.FocusingAnimation = exports.CameraGateway = exports.Camera = void 0;
|
|
4
4
|
var camera_1 = require("./camera");
|
|
5
5
|
Object.defineProperty(exports, "Camera", { enumerable: true, get: function () { return camera_1.Camera; } });
|
|
6
6
|
var __gateways_1 = require("./\u269C\uFE0Fgateways");
|
|
7
|
+
Object.defineProperty(exports, "CameraGateway", { enumerable: true, get: function () { return __gateways_1.CameraGateway; } });
|
|
7
8
|
Object.defineProperty(exports, "FocusingAnimation", { enumerable: true, get: function () { return __gateways_1.FocusingAnimation; } });
|
|
8
9
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/pixi/modules/CAMERA/index.ts"],"names":[],"mappings":";;;AAAA,mCAAkC;AAAzB,gGAAA,MAAM,OAAA;AACf,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/pixi/modules/CAMERA/index.ts"],"names":[],"mappings":";;;AAAA,mCAAkC;AAAzB,gGAAA,MAAM,OAAA;AACf,qDAAgE;AAAvD,2GAAA,aAAa,OAAA;AAAE,+GAAA,iBAAiB,OAAA"}
|
package/package.json
CHANGED