@dcl/playground-assets 7.0.6-3741197705.commit-bb37667 → 7.0.6-3767144242.commit-6bb12d2

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
@@ -1178,7 +1178,9 @@ export declare const executeTask: (task: Task<unknown>) => void;
1178
1178
  export declare type FloatArray = number[];
1179
1179
 
1180
1180
  export declare const enum Font {
1181
- F_SANS_SERIF = 0
1181
+ F_SANS_SERIF = 0,
1182
+ F_SERIF = 1,
1183
+ F_MONOSPACE = 2
1182
1184
  }
1183
1185
 
1184
1186
  export declare type GizmoDragEndEvent = {
@@ -3230,8 +3232,11 @@ export declare interface PBTextShape {
3230
3232
  paddingRight?: number | undefined;
3231
3233
  paddingBottom?: number | undefined;
3232
3234
  paddingLeft?: number | undefined;
3235
+ /** The amount of additional spacing to add between each lines of text. */
3233
3236
  lineSpacing?: number | undefined;
3237
+ /** Allows control over how many lines of text are displayed. */
3234
3238
  lineCount?: number | undefined;
3239
+ /** Enables text wrapping */
3235
3240
  textWrapping?: boolean | undefined;
3236
3241
  shadowBlur?: number | undefined;
3237
3242
  shadowOffsetX?: number | undefined;
package/dist/beta.d.ts CHANGED
@@ -1178,7 +1178,9 @@ export declare const executeTask: (task: Task<unknown>) => void;
1178
1178
  export declare type FloatArray = number[];
1179
1179
 
1180
1180
  export declare const enum Font {
1181
- F_SANS_SERIF = 0
1181
+ F_SANS_SERIF = 0,
1182
+ F_SERIF = 1,
1183
+ F_MONOSPACE = 2
1182
1184
  }
1183
1185
 
1184
1186
  export declare type GizmoDragEndEvent = {
@@ -3230,8 +3232,11 @@ export declare interface PBTextShape {
3230
3232
  paddingRight?: number | undefined;
3231
3233
  paddingBottom?: number | undefined;
3232
3234
  paddingLeft?: number | undefined;
3235
+ /** The amount of additional spacing to add between each lines of text. */
3233
3236
  lineSpacing?: number | undefined;
3237
+ /** Allows control over how many lines of text are displayed. */
3234
3238
  lineCount?: number | undefined;
3239
+ /** Enables text wrapping */
3235
3240
  textWrapping?: boolean | undefined;
3236
3241
  shadowBlur?: number | undefined;
3237
3242
  shadowOffsetX?: number | undefined;
@@ -1178,7 +1178,9 @@ export declare const executeTask: (task: Task<unknown>) => void;
1178
1178
  export declare type FloatArray = number[];
1179
1179
 
1180
1180
  export declare const enum Font {
1181
- F_SANS_SERIF = 0
1181
+ F_SANS_SERIF = 0,
1182
+ F_SERIF = 1,
1183
+ F_MONOSPACE = 2
1182
1184
  }
1183
1185
 
1184
1186
  export declare type GizmoDragEndEvent = {
@@ -3230,8 +3232,11 @@ export declare interface PBTextShape {
3230
3232
  paddingRight?: number | undefined;
3231
3233
  paddingBottom?: number | undefined;
3232
3234
  paddingLeft?: number | undefined;
3235
+ /** The amount of additional spacing to add between each lines of text. */
3233
3236
  lineSpacing?: number | undefined;
3237
+ /** Allows control over how many lines of text are displayed. */
3234
3238
  lineCount?: number | undefined;
3239
+ /** Enables text wrapping */
3235
3240
  textWrapping?: boolean | undefined;
3236
3241
  shadowBlur?: number | undefined;
3237
3242
  shadowOffsetX?: number | undefined;
package/dist/index.js CHANGED
@@ -14286,6 +14286,8 @@
14286
14286
  exports.Font = void 0;
14287
14287
  (function (Font) {
14288
14288
  Font[Font["F_SANS_SERIF"] = 0] = "F_SANS_SERIF";
14289
+ Font[Font["F_SERIF"] = 1] = "F_SERIF";
14290
+ Font[Font["F_MONOSPACE"] = 2] = "F_MONOSPACE";
14289
14291
  })(exports.Font || (exports.Font = {}));
14290
14292
 
14291
14293
  /**