@dcl/playground-assets 7.0.6-3830539086.commit-6152fbd → 7.0.6-3832166523.commit-2a75a6b
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 +6 -9
- package/dist/beta.d.ts +6 -9
- package/dist/index.bundled.d.ts +6 -9
- package/dist/index.js +233 -258
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground/snippets/billboard.ts +3 -5
- package/dist/playground-assets.d.ts +6 -9
- package/etc/playground-assets.api.json +71 -35
- package/etc/playground-assets.api.md +8 -4
- package/package.json +3 -3
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
|
-
|
|
124
|
-
|
|
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 */
|
|
@@ -202,10 +205,6 @@ export declare type ByteBuffer = {
|
|
|
202
205
|
* @returns The offset when this reserving starts.
|
|
203
206
|
*/
|
|
204
207
|
incrementWriteOffset(amount: number): number;
|
|
205
|
-
/**
|
|
206
|
-
* @returns The total number of bytes writen in the buffer.
|
|
207
|
-
*/
|
|
208
|
-
size(): number;
|
|
209
208
|
/**
|
|
210
209
|
* Take care using this function, if you modify the data after, the
|
|
211
210
|
* returned subarray will change too. If you'll modify the content of the
|
|
@@ -2980,10 +2979,8 @@ export declare const PBAvatarShape: {
|
|
|
2980
2979
|
};
|
|
2981
2980
|
|
|
2982
2981
|
export declare interface PBBillboard {
|
|
2983
|
-
/** default=
|
|
2982
|
+
/** default=BM_ALL */
|
|
2984
2983
|
billboardMode?: BillboardMode | undefined;
|
|
2985
|
-
/** default=false */
|
|
2986
|
-
oppositeDirection?: boolean | undefined;
|
|
2987
2984
|
}
|
|
2988
2985
|
|
|
2989
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
|
-
|
|
124
|
-
|
|
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 */
|
|
@@ -202,10 +205,6 @@ export declare type ByteBuffer = {
|
|
|
202
205
|
* @returns The offset when this reserving starts.
|
|
203
206
|
*/
|
|
204
207
|
incrementWriteOffset(amount: number): number;
|
|
205
|
-
/**
|
|
206
|
-
* @returns The total number of bytes writen in the buffer.
|
|
207
|
-
*/
|
|
208
|
-
size(): number;
|
|
209
208
|
/**
|
|
210
209
|
* Take care using this function, if you modify the data after, the
|
|
211
210
|
* returned subarray will change too. If you'll modify the content of the
|
|
@@ -2980,10 +2979,8 @@ export declare const PBAvatarShape: {
|
|
|
2980
2979
|
};
|
|
2981
2980
|
|
|
2982
2981
|
export declare interface PBBillboard {
|
|
2983
|
-
/** default=
|
|
2982
|
+
/** default=BM_ALL */
|
|
2984
2983
|
billboardMode?: BillboardMode | undefined;
|
|
2985
|
-
/** default=false */
|
|
2986
|
-
oppositeDirection?: boolean | undefined;
|
|
2987
2984
|
}
|
|
2988
2985
|
|
|
2989
2986
|
/**
|
package/dist/index.bundled.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
|
-
|
|
124
|
-
|
|
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 */
|
|
@@ -202,10 +205,6 @@ export declare type ByteBuffer = {
|
|
|
202
205
|
* @returns The offset when this reserving starts.
|
|
203
206
|
*/
|
|
204
207
|
incrementWriteOffset(amount: number): number;
|
|
205
|
-
/**
|
|
206
|
-
* @returns The total number of bytes writen in the buffer.
|
|
207
|
-
*/
|
|
208
|
-
size(): number;
|
|
209
208
|
/**
|
|
210
209
|
* Take care using this function, if you modify the data after, the
|
|
211
210
|
* returned subarray will change too. If you'll modify the content of the
|
|
@@ -2980,10 +2979,8 @@ export declare const PBAvatarShape: {
|
|
|
2980
2979
|
};
|
|
2981
2980
|
|
|
2982
2981
|
export declare interface PBBillboard {
|
|
2983
|
-
/** default=
|
|
2982
|
+
/** default=BM_ALL */
|
|
2984
2983
|
billboardMode?: BillboardMode | undefined;
|
|
2985
|
-
/** default=false */
|
|
2986
|
-
oppositeDirection?: boolean | undefined;
|
|
2987
2984
|
}
|
|
2988
2985
|
|
|
2989
2986
|
/**
|