lyb-pixi-js 1.12.64 → 1.12.66

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/README.md CHANGED
@@ -1281,4 +1281,4 @@ LibPixiEmitContainerEvent(this, "EVENT_NAME", {});
1281
1281
 
1282
1282
  ### LibPixiLocalBoundary-本地边界坐标
1283
1283
 
1284
- > 需要配合 `libJsResizeWatcher` 或 `libJsHorizontal`,因为它俩通过当前项目或游戏的适配模式获取的时机宽高
1284
+ >
@@ -1,6 +1,7 @@
1
1
  import { Container } from "pixi.js";
2
2
  /** @description 获取本地边界坐标
3
- * 需要配合libJsResizeWatcher或libJsHorizontal,因为它俩通过当前项目或游戏的适配模式获取的时机宽高
3
+ * @param stage 舞台
4
+ * @param mode 模式:hv 横竖屏都适用,h 横屏,v 竖屏
4
5
  */
5
6
  export declare const libPixiLocalBoundary: (stage: Container, mode: string) => {
6
7
  isMobile: boolean;
@@ -2,7 +2,8 @@ import { libJsIsMobile } from "lyb-js/Browser/LibJsIsMobile.js";
2
2
  import { libJsIsPad } from "lyb-js/Browser/LibJsIsPad.js";
3
3
  import { libJsHorizontal } from "lyb-js/Misc/LibJsHorizontal.js";
4
4
  /** @description 获取本地边界坐标
5
- * 需要配合libJsResizeWatcher或libJsHorizontal,因为它俩通过当前项目或游戏的适配模式获取的时机宽高
5
+ * @param stage 舞台
6
+ * @param mode 模式:hv 横竖屏都适用,h 横屏,v 竖屏
6
7
  */
7
8
  export const libPixiLocalBoundary = (stage, mode) => {
8
9
  const { w, h } = libJsHorizontal(mode);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lyb-pixi-js",
3
- "version": "1.12.64",
3
+ "version": "1.12.66",
4
4
  "description": "自用Pixi.JS方法库",
5
5
  "license": "ISC",
6
6
  "exports": {