model-action 1.0.13 → 1.0.14
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/modules/Scene.d.ts +2 -2
- package/dist/modules/Scene.js +2 -2
- package/package.json +1 -1
- package/src/modules/Scene.ts +2 -2
package/dist/modules/Scene.d.ts
CHANGED
@@ -14,8 +14,8 @@ type SceneType = {
|
|
14
14
|
export declare class SceneAction extends Action {
|
15
15
|
/**
|
16
16
|
* 独显某场景模型
|
17
|
-
* @param {*} action
|
17
|
+
* @param {*} action 1进入独显 0退出独显
|
18
18
|
*/
|
19
|
-
static
|
19
|
+
static singleShow(action: SceneActionType, isAdjustLight: SceneType["isAdjustLight"] | undefined, tag: SceneType['tag']): void;
|
20
20
|
}
|
21
21
|
export {};
|
package/dist/modules/Scene.js
CHANGED
@@ -10,9 +10,9 @@ var SceneActionType;
|
|
10
10
|
export class SceneAction extends Action {
|
11
11
|
/**
|
12
12
|
* 独显某场景模型
|
13
|
-
* @param {*} action
|
13
|
+
* @param {*} action 1进入独显 0退出独显
|
14
14
|
*/
|
15
|
-
static
|
15
|
+
static singleShow(action, isAdjustLight = false, tag) {
|
16
16
|
const param = {
|
17
17
|
cmd: "POI",
|
18
18
|
action,
|
package/package.json
CHANGED
package/src/modules/Scene.ts
CHANGED
@@ -20,9 +20,9 @@ type SceneType = {
|
|
20
20
|
export class SceneAction extends Action {
|
21
21
|
/**
|
22
22
|
* 独显某场景模型
|
23
|
-
* @param {*} action
|
23
|
+
* @param {*} action 1进入独显 0退出独显
|
24
24
|
*/
|
25
|
-
static
|
25
|
+
static singleShow(action:SceneActionType,isAdjustLight:SceneType['isAdjustLight'] = false,tag:SceneType['tag']) {
|
26
26
|
const param: SceneType = {
|
27
27
|
cmd: "POI",
|
28
28
|
action,
|