@lukekaalim/act-three 5.6.4 → 5.7.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.
Files changed (2) hide show
  1. package/objects.js +2 -1
  2. package/package.json +2 -2
package/objects.js CHANGED
@@ -1,5 +1,4 @@
1
1
  // @flow strict
2
- /*:: import type { Object3D } from "three"; */
3
2
  /*:: import type { PropDiff } from '@lukekaalim/act-reconciler'; */
4
3
  import {
5
4
  Group,
@@ -20,12 +19,14 @@ import {
20
19
  Bone,
21
20
  Sprite,
22
21
  LOD,
22
+ Object3D,
23
23
  } from "three";
24
24
 
25
25
  export const threeObjectClasses/*: { [string]: Class<Object3D> }*/ = Object.fromEntries(Object.entries({
26
26
  // grouping
27
27
  Scene,
28
28
  Group,
29
+ Object3D,
29
30
 
30
31
  // lights
31
32
  DirectionalLight,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lukekaalim/act-three",
3
- "version": "5.6.4",
3
+ "version": "5.7.0",
4
4
  "description": "Render threejs content using act",
5
5
  "main": "entry.js",
6
6
  "type": "module",
@@ -12,7 +12,7 @@
12
12
  "author": "Luke Kaalim",
13
13
  "license": "ISC",
14
14
  "peerDependencies": {
15
- "three": "^0.141.0"
15
+ "three": "^0.144.0"
16
16
  },
17
17
  "dependencies": {
18
18
  "@lukekaalim/act": "^2.2.0",