Prechádzať zdrojové kódy

Scene Manager: V5.0.0-A20

Scene Manager Update
Mackey Kinard 4 rokov pred
rodič
commit
630bb5ce35

+ 2 - 0
Playground/libs/babylon.manager.d.ts

@@ -152,6 +152,8 @@ declare module BABYLON {
         static LoadTextFile(url: string, onSuccess: (data: string) => void, onProgress?: (data: any) => void, onError?: (request?: WebRequest, exception?: any) => void): BABYLON.IFileRequest;
         /** Load a text based file */
         static LoadTextFileAsync(url: string): Promise<string>;
+        /** Post data to server */
+        static PostDataToServer(url: string, data: string | Document | Blob | ArrayBufferView | ArrayBuffer | FormData | URLSearchParams | ReadableStream<Uint8Array>, contentType?: string, onComplete?: (status: int) => void): XMLHttpRequest;
         /** Shows the default page scene loader. */
         static ShowDefaultLoader(show: boolean): void;
         /** Update the default page scene loader status. */

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 11 - 11
Playground/libs/babylon.manager.js