@wonderlandengine/editor-api 1.4.5 → 1.4.6-rc.2

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/dist/data.d.ts CHANGED
@@ -128,7 +128,6 @@ export declare class RenderingSettings extends Access {
128
128
  maxShadows: number;
129
129
  usePreZ: boolean;
130
130
  useMultiDraw: boolean;
131
- useFrustumCulling: boolean;
132
131
  useTextureStreaming: boolean;
133
132
  sky: SkySettings;
134
133
  bloom: BloomSettings;
package/dist/data.js CHANGED
@@ -140,7 +140,6 @@ export class RenderingSettings extends Access {
140
140
  maxShadows = 4;
141
141
  usePreZ = false;
142
142
  useMultiDraw = false;
143
- useFrustumCulling = true;
144
143
  useTextureStreaming = true;
145
144
  sky = new SkySettings();
146
145
  bloom = new BloomSettings();
package/dist/index.d.ts CHANGED
@@ -7,6 +7,10 @@ export * from './workspace.js';
7
7
  export declare class EditorPlugin {
8
8
  /** Name of the plugin */
9
9
  name: string;
10
+ /**
11
+ * Called periodically to update the plugin before {@link #draw()}.
12
+ */
13
+ update?(): void;
10
14
  /**
11
15
  * Called to let the plugin draw it's ui. See {@link ui}.
12
16
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wonderlandengine/editor-api",
3
- "version": "1.4.5",
3
+ "version": "1.4.6-rc.2",
4
4
  "description": "Wonderland Engine's Editor API for plugins - very experimental.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",