@dcl/playground-assets 7.15.2 → 7.15.3-20441958958.commit-0dc5702
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/alpha.d.ts +8 -0
- package/dist/beta.d.ts +8 -0
- package/dist/index.bundled.d.ts +8 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +8 -0
- package/etc/playground-assets.api.json +27 -0
- package/etc/playground-assets.api.md +1 -0
- package/package.json +4 -4
package/dist/alpha.d.ts
CHANGED
|
@@ -6057,6 +6057,14 @@ export declare namespace PBVirtualCamera {
|
|
|
6057
6057
|
export declare interface PBVisibilityComponent {
|
|
6058
6058
|
/** default=true */
|
|
6059
6059
|
visible?: boolean | undefined;
|
|
6060
|
+
/**
|
|
6061
|
+
* Propagation follows certain rules:
|
|
6062
|
+
* - Any own visibility component takes priority
|
|
6063
|
+
* - If no own visibility component, visibility is determined by visibility of the nearest parent with propagate = true
|
|
6064
|
+
* - If no own component and no parent with propagate = true, visibility is "visible"
|
|
6065
|
+
* - Visibility is always updated, whenever hierarchy, parent component or own component changes
|
|
6066
|
+
*/
|
|
6067
|
+
propagateToChildren?: boolean | undefined;
|
|
6060
6068
|
}
|
|
6061
6069
|
|
|
6062
6070
|
/**
|
package/dist/beta.d.ts
CHANGED
|
@@ -6029,6 +6029,14 @@ export declare namespace PBVirtualCamera {
|
|
|
6029
6029
|
export declare interface PBVisibilityComponent {
|
|
6030
6030
|
/** default=true */
|
|
6031
6031
|
visible?: boolean | undefined;
|
|
6032
|
+
/**
|
|
6033
|
+
* Propagation follows certain rules:
|
|
6034
|
+
* - Any own visibility component takes priority
|
|
6035
|
+
* - If no own visibility component, visibility is determined by visibility of the nearest parent with propagate = true
|
|
6036
|
+
* - If no own component and no parent with propagate = true, visibility is "visible"
|
|
6037
|
+
* - Visibility is always updated, whenever hierarchy, parent component or own component changes
|
|
6038
|
+
*/
|
|
6039
|
+
propagateToChildren?: boolean | undefined;
|
|
6032
6040
|
}
|
|
6033
6041
|
|
|
6034
6042
|
/**
|
package/dist/index.bundled.d.ts
CHANGED
|
@@ -6029,6 +6029,14 @@ export declare namespace PBVirtualCamera {
|
|
|
6029
6029
|
export declare interface PBVisibilityComponent {
|
|
6030
6030
|
/** default=true */
|
|
6031
6031
|
visible?: boolean | undefined;
|
|
6032
|
+
/**
|
|
6033
|
+
* Propagation follows certain rules:
|
|
6034
|
+
* - Any own visibility component takes priority
|
|
6035
|
+
* - If no own visibility component, visibility is determined by visibility of the nearest parent with propagate = true
|
|
6036
|
+
* - If no own component and no parent with propagate = true, visibility is "visible"
|
|
6037
|
+
* - Visibility is always updated, whenever hierarchy, parent component or own component changes
|
|
6038
|
+
*/
|
|
6039
|
+
propagateToChildren?: boolean | undefined;
|
|
6032
6040
|
}
|
|
6033
6041
|
|
|
6034
6042
|
/**
|