Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leanmendoza committed Dec 28, 2024
1 parent 988ac19 commit aefc4e1
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 30 deletions.
58 changes: 29 additions & 29 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": "1.0.0-12415236132.commit-53e881e",
"@dcl/protocol": "https://sdk-team-cdn.decentraland.org/@dcl/protocol/branch//dcl-protocol-1.0.0-12529176980.commit-d01c1a4.tgz",
"@dcl/quickjs-emscripten": "^0.21.0-3680274614.commit-1808aa1",
"@dcl/ts-proto": "1.153.0",
"@types/fs-extra": "^9.0.12",
Expand Down
40 changes: 40 additions & 0 deletions packages/@dcl/playground-assets/etc/playground-assets.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,9 @@ export interface ByteBuffer {
// @public
export type Callback = () => void;

// @public (undocumented)
export const CameraLayers: LastWriteWinElementSetComponentDefinition<PBCameraLayers>;

// @public (undocumented)
export const CameraMode: LastWriteWinElementSetComponentDefinition<PBCameraMode>;

Expand Down Expand Up @@ -673,6 +676,7 @@ export const componentDefinitionByName: {
"core::AvatarModifierArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarModifierArea>>;
"core::AvatarShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBAvatarShape>>;
"core::Billboard": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBBillboard>>;
"core::CameraLayers": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraLayers>>;
"core::CameraMode": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraMode>>;
"core::CameraModeArea": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBCameraModeArea>>;
"core::EngineInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBEngineInfo>>;
Expand All @@ -697,6 +701,7 @@ export const componentDefinitionByName: {
"core::RealmInfo": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBRealmInfo>>;
"core::Spotlight": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBSpotlight>>;
"core::TextShape": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextShape>>;
"core::TextureCamera": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTextureCamera>>;
"core::Tween": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTween>>;
"core::TweenSequence": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenSequence>>;
"core::TweenState": LwwComponentGetter<LastWriteWinElementSetComponentDefinition<PBTweenState>>;
Expand Down Expand Up @@ -2340,6 +2345,20 @@ export namespace PBBillboard {
export function encode(message: PBBillboard, writer?: _m0.Writer): _m0.Writer;
}

// @public (undocumented)
export interface PBCameraLayers {
// (undocumented)
layers: number[];
}

// @public (undocumented)
export namespace PBCameraLayers {
// (undocumented)
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBCameraLayers;
// (undocumented)
export function encode(message: PBCameraLayers, writer?: _m0.Writer): _m0.Writer;
}

// @public (undocumented)
export interface PBCameraMode {
mode: CameraType;
Expand Down Expand Up @@ -3110,6 +3129,24 @@ export namespace PBTextShape {
export function encode(message: PBTextShape, writer?: _m0.Writer): _m0.Writer;
}

// @public (undocumented)
export interface PBTextureCamera {
// (undocumented)
height?: number | undefined;
// (undocumented)
layer?: number | undefined;
// (undocumented)
width?: number | undefined;
}

// @public (undocumented)
export namespace PBTextureCamera {
// (undocumented)
export function decode(input: _m0.Reader | Uint8Array, length?: number): PBTextureCamera;
// (undocumented)
export function encode(message: PBTextureCamera, writer?: _m0.Writer): _m0.Writer;
}

// @public (undocumented)
export interface PBTween {
currentTime?: number | undefined;
Expand Down Expand Up @@ -4234,6 +4271,9 @@ export namespace Texture {
export function encode(message: Texture, writer?: _m0.Writer): _m0.Writer;
}

// @public (undocumented)
export const TextureCamera: LastWriteWinElementSetComponentDefinition<PBTextureCamera>;

// @public (undocumented)
export const enum TextureFilterMode {
// (undocumented)
Expand Down

0 comments on commit aefc4e1

Please sign in to comment.