diff --git a/package-lock.json b/package-lock.json index 75c4d21cf..306ba50ad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,7 +11,7 @@ "license": "Apache-2.0", "dependencies": { "@actions/core": "^1.10.0", - "@dcl/protocol": "1.0.0-11599848164.commit-ef74edc", + "@dcl/protocol": "https://sdk-team-cdn.decentraland.org/@dcl/protocol/branch//dcl-protocol-1.0.0-12033283336.commit-2ca1798.tgz", "@dcl/quickjs-emscripten": "^0.21.0-3680274614.commit-1808aa1", "@dcl/ts-proto": "1.153.0", "@types/fs-extra": "^9.0.12", @@ -577,9 +577,10 @@ } }, "node_modules/@dcl/protocol": { - "version": "1.0.0-11599848164.commit-ef74edc", - "resolved": "https://registry.npmjs.org/@dcl/protocol/-/protocol-1.0.0-11599848164.commit-ef74edc.tgz", - "integrity": "sha512-XSUOA0LbchlBUk5/BMJFBl0+qOm4UOIxwMGp38A1n4LQAatGO/RXjzReJRveqiFma+X7eq3e6+KCDqTLwepN0w==", + "version": "1.0.0-12033283336.commit-2ca1798", + "resolved": "https://sdk-team-cdn.decentraland.org/@dcl/protocol/branch//dcl-protocol-1.0.0-12033283336.commit-2ca1798.tgz", + "integrity": "sha512-Gi+Pg6XT6vvTWBcmyQ1qxKd3rzCgO1LeJKkXU1HfFHSwOQUhsJUlM1ZcJGdPD5sIWieobh28PDe8Z/cd6oUvbw==", + "license": "Apache-2.0", "dependencies": { "@dcl/ts-proto": "1.154.0" } @@ -8232,9 +8233,8 @@ } }, "@dcl/protocol": { - "version": "1.0.0-11599848164.commit-ef74edc", - "resolved": "https://registry.npmjs.org/@dcl/protocol/-/protocol-1.0.0-11599848164.commit-ef74edc.tgz", - "integrity": "sha512-XSUOA0LbchlBUk5/BMJFBl0+qOm4UOIxwMGp38A1n4LQAatGO/RXjzReJRveqiFma+X7eq3e6+KCDqTLwepN0w==", + "version": "https://sdk-team-cdn.decentraland.org/@dcl/protocol/branch//dcl-protocol-1.0.0-12033283336.commit-2ca1798.tgz", + "integrity": "sha512-Gi+Pg6XT6vvTWBcmyQ1qxKd3rzCgO1LeJKkXU1HfFHSwOQUhsJUlM1ZcJGdPD5sIWieobh28PDe8Z/cd6oUvbw==", "requires": { "@dcl/ts-proto": "1.154.0" }, diff --git a/package.json b/package.json index 28538db1a..bbb4c326a 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "bugs": "https://github.com/decentraland/js-sdk-toolchain/issues", "dependencies": { "@actions/core": "^1.10.0", - "@dcl/protocol": "1.0.0-11599848164.commit-ef74edc", + "@dcl/protocol": "https://sdk-team-cdn.decentraland.org/@dcl/protocol/branch//dcl-protocol-1.0.0-12033283336.commit-2ca1798.tgz", "@dcl/quickjs-emscripten": "^0.21.0-3680274614.commit-1808aa1", "@dcl/ts-proto": "1.153.0", "@types/fs-extra": "^9.0.12", diff --git a/packages/@dcl/playground-assets/etc/playground-assets.api.md b/packages/@dcl/playground-assets/etc/playground-assets.api.md index 5560ba59a..bdcccb3c1 100644 --- a/packages/@dcl/playground-assets/etc/playground-assets.api.md +++ b/packages/@dcl/playground-assets/etc/playground-assets.api.md @@ -626,6 +626,7 @@ export const componentDefinitionByName: { "core::EngineInfo": LwwComponentGetter>; "core::GltfContainer": LwwComponentGetter>; "core::GltfContainerLoadingState": LwwComponentGetter>; + "core::GltfNode": LwwComponentGetter>; "core::InputModifier": LwwComponentGetter>; "core::MainCamera": LwwComponentGetter>; "core::Material": LwwComponentGetter>; @@ -1203,6 +1204,9 @@ export const GltfContainer: LastWriteWinElementSetComponentDefinition; +// @public (undocumented) +export const GltfNode: LastWriteWinElementSetComponentDefinition; + // @public (undocumented) export interface GrowOnlyValueSetComponentDefinition extends BaseComponent { addValue(entity: Entity, val: DeepReadonly): DeepReadonlySet; @@ -2346,6 +2350,20 @@ export namespace PBGltfContainerLoadingState { export function encode(message: PBGltfContainerLoadingState, writer?: _m0.Writer): _m0.Writer; } +// @public (undocumented) +export interface PBGltfNode { + gltfContainerEntity: number; + nodePath: string; +} + +// @public (undocumented) +export namespace PBGltfNode { + // (undocumented) + export function decode(input: _m0.Reader | Uint8Array, length?: number): PBGltfNode; + // (undocumented) + export function encode(message: PBGltfNode, writer?: _m0.Writer): _m0.Writer; +} + // @public (undocumented) export interface PBInputModifier { // (undocumented) @@ -2889,6 +2907,9 @@ export interface PBTween { } | { $case: "scale"; scale: Scale; + } | { + $case: "textureMove"; + textureMove: TextureMove; } | undefined; playing?: boolean | undefined; } @@ -3891,8 +3912,10 @@ export const TextShape: LastWriteWinElementSetComponentDefinition; // @public (undocumented) export interface Texture { filterMode?: TextureFilterMode | undefined; + offset?: PBVector2 | undefined; // (undocumented) src: string; + tiling?: PBVector2 | undefined; wrapMode?: TextureWrapMode | undefined; } @@ -3930,6 +3953,30 @@ export interface TextureHelper { // @public export type TextureMode = 'nine-slices' | 'center' | 'stretch'; +// @public (undocumented) +export interface TextureMove { + // (undocumented) + end: PBVector2 | undefined; + movementType?: TextureMovementType | undefined; + // (undocumented) + start: PBVector2 | undefined; +} + +// @public (undocumented) +export namespace TextureMove { + // (undocumented) + export function decode(input: _m0.Reader | Uint8Array, length?: number): TextureMove; + // (undocumented) + export function encode(message: TextureMove, writer?: _m0.Writer): _m0.Writer; +} + +// @public (undocumented) +export const enum TextureMovementType { + TMT_OFFSET = 0, + // (undocumented) + TMT_TILING = 1 +} + // @public (undocumented) export interface TextureUnion { // (undocumented)