Skip to content

Commit

Permalink
Updated protocol and rebuilt API
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAlvarezMelucciDCL committed Nov 12, 2024
1 parent bb3ebd9 commit 8c080b7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"bugs": "https://github.com/decentraland/js-sdk-toolchain/issues",
"dependencies": {
"@actions/core": "^1.10.0",
"@dcl/protocol": "https://sdk-team-cdn.decentraland.org/@dcl/protocol/branch//dcl-protocol-1.0.0-11802510129.commit-91d9d14.tgz",
"@dcl/protocol": "https://sdk-team-cdn.decentraland.org/@dcl/protocol/branch//dcl-protocol-1.0.0-11805206145.commit-0b77ed9.tgz",
"@dcl/quickjs-emscripten": "^0.21.0-3680274614.commit-1808aa1",
"@dcl/ts-proto": "1.153.0",
"@types/fs-extra": "^9.0.12",
Expand Down
14 changes: 7 additions & 7 deletions packages/@dcl/playground-assets/etc/playground-assets.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3939,9 +3939,9 @@ export type TextureMode = 'nine-slices' | 'center' | 'stretch';
export interface TextureMove {
// (undocumented)
end: PBVector2 | undefined;
movementType?: TextureMovementType | undefined;
// (undocumented)
start: PBVector2 | undefined;
textureMovement?: TextureMovement | undefined;
textureToMove?: TextureToMove | undefined;
}

Expand All @@ -3954,23 +3954,23 @@ export namespace TextureMove {
}

// @public (undocumented)
export const enum TextureMovement {
TM_OFFSET = 0,
export const enum TextureMovementType {
TMT_OFFSET = 0,
// (undocumented)
TM_OFFSET_AND_TILING = 3,
TMT_OFFSET_AND_TILING = 3,
// (undocumented)
TM_TILING = 1
TMT_TILING = 1
}

// @public (undocumented)
export const enum TextureToMove {
TTM_ALBEDO = 0,
// (undocumented)
TTM_ALPHA = 1,
// (undocumented)
TTM_BUMP = 3,
// (undocumented)
TTM_EMISSIVE = 2
TTM_EMISSIVE = 2,
TTM_TEXTURE = 0
}

// @public (undocumented)
Expand Down

0 comments on commit 8c080b7

Please sign in to comment.