@dcl/sdk 7.0.0-2947735169.commit-65163b3 → 7.0.0-2956503917.commit-061e376

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.
@@ -250,6 +250,8 @@ export declare namespace Components {
250
250
  const TextShape: ComponentDefinition<ISchema<PBTextShape>, PBTextShape>;
251
251
  /** @public */
252
252
  const UiText: ComponentDefinition<ISchema<PBUiText>, PBUiText>;
253
+ /** @public */
254
+ const VisibilityComponent: ComponentDefinition<ISchema<PBVisibilityComponent>, PBVisibilityComponent>;
253
255
  }
254
256
 
255
257
  /**
@@ -438,6 +440,7 @@ declare function defineSdkComponents(engine: PreEngine): {
438
440
  SphereShape: ComponentDefinition<ISchema<PBSphereShape>, PBSphereShape>;
439
441
  TextShape: ComponentDefinition<ISchema<PBTextShape>, PBTextShape>;
440
442
  UiText: ComponentDefinition<ISchema<PBUiText>, PBUiText>;
443
+ VisibilityComponent: ComponentDefinition<ISchema<PBVisibilityComponent>, PBVisibilityComponent>;
441
444
  };
442
445
 
443
446
  /**
@@ -1717,6 +1720,11 @@ declare interface PBUiText {
1717
1720
  textColor: Color3 | undefined;
1718
1721
  }
1719
1722
 
1723
+ declare interface PBVisibilityComponent {
1724
+ /** default=true */
1725
+ visible?: boolean | undefined;
1726
+ }
1727
+
1720
1728
  /**
1721
1729
  * Represens a plane by the equation ax + by + cz + d = 0
1722
1730
  * @public
@@ -2385,6 +2393,9 @@ declare interface Vector3_2 {
2385
2393
  z: number;
2386
2394
  }
2387
2395
 
2396
+ /** @public */
2397
+ export declare const VisibilityComponent: ComponentDefinition<ISchema<PBVisibilityComponent>, PBVisibilityComponent>;
2398
+
2388
2399
  declare namespace WireMessage {
2389
2400
  enum Enum {
2390
2401
  RESERVED = 0,