@dcl/playground-assets 7.7.3-13090257149.commit-df175f2 → 7.7.3-13092882598.commit-32642df

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/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # @dcl/playground-assets
2
+
3
+ Assets package for the [Decentraland Playground](https://playground.decentraland.org/).
4
+
5
+ ## Overview
6
+
7
+ This package contains the built assets required by the Decentraland Playground - an experimental web IDE that allows developers to:
8
+
9
+ - Write and preview Decentraland scenes in real-time
10
+ - Share code snippets with other developers
11
+ - Test and iterate on scene code directly in the browser
12
+ - View changes instantly in the integrated Decentraland web explorer
13
+
14
+ Similar to [Babylon.js Playground](https://playground.babylonjs.com/), the Decentraland Playground provides an interactive environment for rapid prototyping and experimentation.
15
+
16
+ ## Development
17
+
18
+ The assets in this package are automatically built during the monorepo's build process:
19
+
20
+ ```bash
21
+ # From the root of the monorepo
22
+ make build
23
+ ```
24
+
25
+ ## Related Documentation
26
+
27
+ - [Playground](https://playground.decentraland.org)
package/dist/alpha.d.ts CHANGED
@@ -7946,7 +7946,11 @@ export declare type TransformTypeWithOptionals = Partial<TransformType>;
7946
7946
  * @public
7947
7947
  */
7948
7948
  export declare type Transport = {
7949
- send(message: Uint8Array): Promise<void>;
7949
+ /**
7950
+ * For Network messages its an Uint8Array[]. Due too the LiveKit MAX_SIZE = 13kb
7951
+ * For Renderer & Other transports we send a single Uint8Array
7952
+ */
7953
+ send(message: Uint8Array | Uint8Array[]): Promise<void>;
7950
7954
  onmessage?(message: Uint8Array): void;
7951
7955
  filter(message: Omit<TransportMessage, 'messageBuffer'>): boolean;
7952
7956
  type?: string;
package/dist/beta.d.ts CHANGED
@@ -7913,7 +7913,11 @@ export declare type TransformTypeWithOptionals = Partial<TransformType>;
7913
7913
  * @public
7914
7914
  */
7915
7915
  export declare type Transport = {
7916
- send(message: Uint8Array): Promise<void>;
7916
+ /**
7917
+ * For Network messages its an Uint8Array[]. Due too the LiveKit MAX_SIZE = 13kb
7918
+ * For Renderer & Other transports we send a single Uint8Array
7919
+ */
7920
+ send(message: Uint8Array | Uint8Array[]): Promise<void>;
7917
7921
  onmessage?(message: Uint8Array): void;
7918
7922
  filter(message: Omit<TransportMessage, 'messageBuffer'>): boolean;
7919
7923
  type?: string;
@@ -7913,7 +7913,11 @@ export declare type TransformTypeWithOptionals = Partial<TransformType>;
7913
7913
  * @public
7914
7914
  */
7915
7915
  export declare type Transport = {
7916
- send(message: Uint8Array): Promise<void>;
7916
+ /**
7917
+ * For Network messages its an Uint8Array[]. Due too the LiveKit MAX_SIZE = 13kb
7918
+ * For Renderer & Other transports we send a single Uint8Array
7919
+ */
7920
+ send(message: Uint8Array | Uint8Array[]): Promise<void>;
7917
7921
  onmessage?(message: Uint8Array): void;
7918
7922
  filter(message: Omit<TransportMessage, 'messageBuffer'>): boolean;
7919
7923
  type?: string;