ohzi-core 9.2.0 → 9.3.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ohzi-core",
3
- "version": "9.2.0",
3
+ "version": "9.3.0",
4
4
  "description": "OHZI Core Library",
5
5
  "source": "src/index.js",
6
6
  "module": "build/index.module.js",
package/src/index.js CHANGED
@@ -5,6 +5,9 @@ import { BaseApplication } from './BaseApplication';
5
5
  import { BaseRender } from './render_mode/BaseRender';
6
6
  import { BaseShaderMaterial } from './materials/BaseShaderMaterial';
7
7
  import { BlitMaterial } from './materials/BlitMaterial';
8
+ import { AddMaterial } from './materials/AddMaterial';
9
+ import { UnrealBloomComposeMaterial } from './materials/UnrealBloomComposeMaterial';
10
+
8
11
  import { Browser } from './Browser';
9
12
  import { CameraManager } from './CameraManager';
10
13
  import { Capabilities } from './Capabilities';
@@ -145,6 +148,8 @@ export {
145
148
  Time,
146
149
  UI,
147
150
  BlitMaterial,
151
+ AddMaterial,
152
+ UnrealBloomComposeMaterial,
148
153
  BaseRender,
149
154
  ArrayUtilities,
150
155
  CameraUtilities,