@dcl/playground-assets 7.6.4 → 7.6.5-11672040830.commit-680459b
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 +103 -8
- package/dist/beta.d.ts +103 -8
- package/dist/index.bundled.d.ts +103 -8
- package/dist/index.js +6 -6
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/dcl-sdk.package.json +3 -3
- package/dist/playground-assets.d.ts +103 -8
- package/etc/playground-assets.api.json +332 -12
- package/etc/playground-assets.api.md +30 -2
- package/package.json +4 -4
@@ -1130,6 +1130,7 @@ export type EventSystemOptions = {
|
|
1130
1130
|
hoverText?: string;
|
1131
1131
|
maxDistance?: number;
|
1132
1132
|
showFeedback?: boolean;
|
1133
|
+
showHighlight?: boolean;
|
1133
1134
|
};
|
1134
1135
|
|
1135
1136
|
// @public
|
@@ -1167,6 +1168,11 @@ export function getComponentEntityTree<T>(engine: Pick<IEngine, 'getEntitiesWith
|
|
1167
1168
|
// @public @deprecated (undocumented)
|
1168
1169
|
export function getCompositeRootComponent(engine: IEngine): LastWriteWinElementSetComponentDefinition<CompositeRootType>;
|
1169
1170
|
|
1171
|
+
// Warning: (ae-missing-release-tag) "getDefaultOpts" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
1172
|
+
//
|
1173
|
+
// @public (undocumented)
|
1174
|
+
export const getDefaultOpts: (opts?: Partial<EventSystemOptions>) => EventSystemOptions;
|
1175
|
+
|
1170
1176
|
// Warning: (ae-missing-release-tag) "GlobalDirectionRaycastOptions" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
|
1171
1177
|
//
|
1172
1178
|
// @public (undocumented)
|
@@ -2677,6 +2683,7 @@ export interface PBPointerEvents_Info {
|
|
2677
2683
|
hoverText?: string | undefined;
|
2678
2684
|
maxDistance?: number | undefined;
|
2679
2685
|
showFeedback?: boolean | undefined;
|
2686
|
+
showHighlight?: boolean | undefined;
|
2680
2687
|
}
|
2681
2688
|
|
2682
2689
|
// @public (undocumented)
|
@@ -4228,13 +4235,34 @@ export type ValueSetOptions<T> = {
|
|
4228
4235
|
maxElements: number;
|
4229
4236
|
};
|
4230
4237
|
|
4238
|
+
// @public
|
4239
|
+
export type Vector2 = Vector2.ReadonlyVector2;
|
4240
|
+
|
4241
|
+
// @public
|
4242
|
+
export namespace Vector2 {
|
4243
|
+
export function create(
|
4244
|
+
x?: number,
|
4245
|
+
y?: number): MutableVector2;
|
4246
|
+
export type Mutable = MutableVector2;
|
4247
|
+
export type MutableVector2 = {
|
4248
|
+
x: number;
|
4249
|
+
y: number;
|
4250
|
+
};
|
4251
|
+
export function One(): MutableVector2;
|
4252
|
+
export type ReadonlyVector2 = {
|
4253
|
+
readonly x: number;
|
4254
|
+
readonly y: number;
|
4255
|
+
};
|
4256
|
+
export function Zero(): MutableVector2;
|
4257
|
+
}
|
4258
|
+
|
4231
4259
|
// @public
|
4232
4260
|
export type Vector3 = Vector3.ReadonlyVector3;
|
4233
4261
|
|
4234
4262
|
// @public
|
4235
4263
|
export namespace Vector3 {
|
4236
4264
|
export function add(vector1: ReadonlyVector3, vector2: ReadonlyVector3): MutableVector3;
|
4237
|
-
export function addToRef(
|
4265
|
+
export function addToRef(vectorA: ReadonlyVector3, vectorB: ReadonlyVector3, result: MutableVector3): void;
|
4238
4266
|
export function applyMatrix4(vector: ReadonlyVector3, matrix: Matrix.ReadonlyMatrix): MutableVector3;
|
4239
4267
|
export function applyMatrix4ToRef(vector: ReadonlyVector3, matrix: Matrix.ReadonlyMatrix, result: MutableVector3): void;
|
4240
4268
|
export function Backward(): MutableVector3;
|
@@ -4312,7 +4340,7 @@ export namespace Vector3 {
|
|
4312
4340
|
export function scaleToRef(vector: ReadonlyVector3, scale: number, result: MutableVector3): void;
|
4313
4341
|
export function subtract(vector1: ReadonlyVector3, vector2: ReadonlyVector3): MutableVector3;
|
4314
4342
|
export function subtractFromFloatsToRef(vector1: ReadonlyVector3, x: number, y: number, z: number, result: MutableVector3): void;
|
4315
|
-
export function subtractToRef(
|
4343
|
+
export function subtractToRef(vectorA: ReadonlyVector3, vectorB: ReadonlyVector3, result: MutableVector3): void;
|
4316
4344
|
export function toString(vector: ReadonlyVector3): string;
|
4317
4345
|
export function transformCoordinates(vector: ReadonlyVector3, transformation: Matrix.ReadonlyMatrix): MutableVector3;
|
4318
4346
|
export function transformCoordinatesFromFloatsToRef(x: number, y: number, z: number, transformation: Matrix.ReadonlyMatrix, result: MutableVector3): void;
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/playground-assets",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.6.
|
4
|
+
"version": "7.6.5-11672040830.commit-680459b",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
|
-
"@dcl/js-runtime": "7.6.
|
8
|
-
"@dcl/sdk": "7.6.
|
7
|
+
"@dcl/js-runtime": "7.6.5-11672040830.commit-680459b",
|
8
|
+
"@dcl/sdk": "7.6.5-11672040830.commit-680459b"
|
9
9
|
},
|
10
10
|
"devDependencies": {
|
11
11
|
"@microsoft/api-extractor": "^7.33.8"
|
@@ -32,5 +32,5 @@
|
|
32
32
|
},
|
33
33
|
"types": "./dist/index.d.ts",
|
34
34
|
"typings": "./dist/index.d.ts",
|
35
|
-
"commit": "
|
35
|
+
"commit": "680459b70e094fd92c59c9f041546792d160056d"
|
36
36
|
}
|