@xviewer.js/core 1.0.0-alpha.36 → 1.0.0-alpha.37

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": "@xviewer.js/core",
3
- "version": "1.0.0-alpha.36",
3
+ "version": "1.0.0-alpha.37",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -52,7 +52,6 @@ export declare class FreelookVirtualCamera extends VirtualCamera {
52
52
  onEnable(): void;
53
53
  onDisable(): void;
54
54
  reset(): void;
55
- private _setSpherical;
56
55
  private _onPointerDown;
57
56
  private _onPointerUp;
58
57
  private _onPointerMove;
package/types/types.d.ts CHANGED
@@ -45,6 +45,10 @@ export type __P<T, K extends __C<T>> = __Properties<T> & {
45
45
  * Object's local rotation
46
46
  */
47
47
  rotation?: Euler;
48
+ /**
49
+ * Object's layer mask
50
+ */
51
+ layer?: number;
48
52
  };
49
53
  export type __Comp<T, K extends __C<T>> = __Properties<T> & {
50
54
  /**