Преглед на файлове

Scene Manager: V5.0.0-A20

Scene Manager Update
Mackey Kinard преди 4 години
родител
ревизия
630bb5ce35
променени са 2 файла, в които са добавени 13 реда и са изтрити 11 реда
  1. 2 0
      Playground/libs/babylon.manager.d.ts
  2. 11 11
      Playground/libs/babylon.manager.js

+ 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. */

Файловите разлики са ограничени, защото са твърде много
+ 11 - 11
Playground/libs/babylon.manager.js