@dcl/playground-assets 7.0.6-3832097301.commit-4e46b20 → 7.0.6-3832283592.commit-1c3d2d6

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 CHANGED
@@ -120,8 +120,11 @@ export declare const enum BackgroundTextureMode {
120
120
  export declare const Billboard: ComponentDefinition<PBBillboard>;
121
121
 
122
122
  export declare const enum BillboardMode {
123
- BM_ALL_AXES = 0,
124
- BM_Y_AXE = 1
123
+ BM_NONE = 0,
124
+ BM_X = 1,
125
+ BM_Y = 2,
126
+ BM_Z = 4,
127
+ BM_ALL = 7
125
128
  }
126
129
 
127
130
  /** Defines indents from respective edges */
@@ -2976,10 +2979,8 @@ export declare const PBAvatarShape: {
2976
2979
  };
2977
2980
 
2978
2981
  export declare interface PBBillboard {
2979
- /** default=BM_ALL_AXES */
2982
+ /** default=BM_ALL */
2980
2983
  billboardMode?: BillboardMode | undefined;
2981
- /** default=false */
2982
- oppositeDirection?: boolean | undefined;
2983
2984
  }
2984
2985
 
2985
2986
  /**
package/dist/beta.d.ts CHANGED
@@ -120,8 +120,11 @@ export declare const enum BackgroundTextureMode {
120
120
  export declare const Billboard: ComponentDefinition<PBBillboard>;
121
121
 
122
122
  export declare const enum BillboardMode {
123
- BM_ALL_AXES = 0,
124
- BM_Y_AXE = 1
123
+ BM_NONE = 0,
124
+ BM_X = 1,
125
+ BM_Y = 2,
126
+ BM_Z = 4,
127
+ BM_ALL = 7
125
128
  }
126
129
 
127
130
  /** Defines indents from respective edges */
@@ -2976,10 +2979,8 @@ export declare const PBAvatarShape: {
2976
2979
  };
2977
2980
 
2978
2981
  export declare interface PBBillboard {
2979
- /** default=BM_ALL_AXES */
2982
+ /** default=BM_ALL */
2980
2983
  billboardMode?: BillboardMode | undefined;
2981
- /** default=false */
2982
- oppositeDirection?: boolean | undefined;
2983
2984
  }
2984
2985
 
2985
2986
  /**
@@ -120,8 +120,11 @@ export declare const enum BackgroundTextureMode {
120
120
  export declare const Billboard: ComponentDefinition<PBBillboard>;
121
121
 
122
122
  export declare const enum BillboardMode {
123
- BM_ALL_AXES = 0,
124
- BM_Y_AXE = 1
123
+ BM_NONE = 0,
124
+ BM_X = 1,
125
+ BM_Y = 2,
126
+ BM_Z = 4,
127
+ BM_ALL = 7
125
128
  }
126
129
 
127
130
  /** Defines indents from respective edges */
@@ -2976,10 +2979,8 @@ export declare const PBAvatarShape: {
2976
2979
  };
2977
2980
 
2978
2981
  export declare interface PBBillboard {
2979
- /** default=BM_ALL_AXES */
2982
+ /** default=BM_ALL */
2980
2983
  billboardMode?: BillboardMode | undefined;
2981
- /** default=false */
2982
- oppositeDirection?: boolean | undefined;
2983
2984
  }
2984
2985
 
2985
2986
  /**
package/dist/index.js CHANGED
@@ -9477,11 +9477,14 @@
9477
9477
  /* eslint-disable */
9478
9478
  exports.BillboardMode = void 0;
9479
9479
  (function (BillboardMode) {
9480
- BillboardMode[BillboardMode["BM_ALL_AXES"] = 0] = "BM_ALL_AXES";
9481
- BillboardMode[BillboardMode["BM_Y_AXE"] = 1] = "BM_Y_AXE";
9480
+ BillboardMode[BillboardMode["BM_NONE"] = 0] = "BM_NONE";
9481
+ BillboardMode[BillboardMode["BM_X"] = 1] = "BM_X";
9482
+ BillboardMode[BillboardMode["BM_Y"] = 2] = "BM_Y";
9483
+ BillboardMode[BillboardMode["BM_Z"] = 4] = "BM_Z";
9484
+ BillboardMode[BillboardMode["BM_ALL"] = 7] = "BM_ALL";
9482
9485
  })(exports.BillboardMode || (exports.BillboardMode = {}));
9483
9486
  function createBasePBBillboard() {
9484
- return { billboardMode: undefined, oppositeDirection: undefined };
9487
+ return { billboardMode: undefined };
9485
9488
  }
9486
9489
  /**
9487
9490
  * Internal
@@ -9491,9 +9494,6 @@
9491
9494
  if (message.billboardMode !== undefined) {
9492
9495
  writer.uint32(8).int32(message.billboardMode);
9493
9496
  }
9494
- if (message.oppositeDirection !== undefined) {
9495
- writer.uint32(16).bool(message.oppositeDirection);
9496
- }
9497
9497
  return writer;
9498
9498
  },
9499
9499
  decode(input, length) {
@@ -9506,9 +9506,6 @@
9506
9506
  case 1:
9507
9507
  message.billboardMode = reader.int32();
9508
9508
  break;
9509
- case 2:
9510
- message.oppositeDirection = reader.bool();
9511
- break;
9512
9509
  default:
9513
9510
  reader.skipType(tag & 7);
9514
9511
  break;