浏览代码

Scene Manager: V5.0.0-A31

Unity Ecosystem Update: Houdini Engine And Substance Painter Support
Mackey Kinard 4 年之前
父节点
当前提交
17a8b7db1a
共有 2 个文件被更改,包括 15 次插入11 次删除
  1. 4 0
      Playground/libs/babylon.manager.d.ts
  2. 11 11
      Playground/libs/babylon.manager.js

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

@@ -34,6 +34,10 @@ declare module BABYLON {
         static GetLocalStorageItem(key: string): string;
         /** Set an item to top window local storage. */
         static SetLocalStorageItem(key: string, value: string): void;
+        /** Get an item from top window session storage. */
+        static GetSessionStorageItem(key: string): string;
+        /** Set an item to top window session storage. */
+        static SetSessionStorageItem(key: string, value: string): void;
         /** Store data object in the window state cache */
         static SetWindowState(name: string, data: any): void;
         /** Retrieve data object from the window state cache */

文件差异内容过多而无法显示
+ 11 - 11
Playground/libs/babylon.manager.js