angular-three 2.0.0-beta.294 → 2.0.0-beta.295

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/lib/canvas.d.ts CHANGED
@@ -97,7 +97,6 @@ export declare class NgtCanvas {
97
97
  getWorldQuaternion?: ((target: import("three").Quaternion) => import("three").Quaternion) | undefined;
98
98
  getWorldScale?: ((target: Vector3) => Vector3) | undefined;
99
99
  getWorldDirection?: ((target: Vector3) => Vector3) | undefined;
100
- raycast?: ((raycaster: Raycaster, intersects: import("three").Intersection[]) => void) | undefined;
101
100
  traverse?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
102
101
  traverseVisible?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
103
102
  traverseAncestors?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
@@ -118,6 +117,7 @@ export declare class NgtCanvas {
118
117
  quaternion: import("angular-three").NgtQuaternion;
119
118
  layers: import("angular-three").NgtLayers;
120
119
  dispose: (() => void) | null;
120
+ raycast: import("three").Object3D["raycast"] | null;
121
121
  } & {
122
122
  addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three").PerspectiveCamera>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three").PerspectiveCamera, typeof import("three").PerspectiveCamera>, ev: import("angular-three").NgtNodeEventMap<import("three").PerspectiveCamera>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
123
123
  removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three").PerspectiveCamera>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three").PerspectiveCamera, typeof import("three").PerspectiveCamera>, ev: import("angular-three").NgtNodeEventMap<import("three").PerspectiveCamera>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
@@ -199,7 +199,6 @@ export declare class NgtCanvas {
199
199
  getWorldQuaternion?: ((target: import("three").Quaternion) => import("three").Quaternion) | undefined;
200
200
  getWorldScale?: ((target: Vector3) => Vector3) | undefined;
201
201
  getWorldDirection?: ((target: Vector3) => Vector3) | undefined;
202
- raycast?: ((raycaster: Raycaster, intersects: import("three").Intersection[]) => void) | undefined;
203
202
  traverse?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
204
203
  traverseVisible?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
205
204
  traverseAncestors?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
@@ -240,6 +239,7 @@ export declare class NgtCanvas {
240
239
  quaternion: import("angular-three").NgtQuaternion;
241
240
  layers: import("angular-three").NgtLayers;
242
241
  dispose: (() => void) | null;
242
+ raycast: import("three").Object3D["raycast"] | null;
243
243
  } & {
244
244
  addEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three").OrthographicCamera>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three").OrthographicCamera, typeof import("three").OrthographicCamera>, ev: import("angular-three").NgtNodeEventMap<import("three").OrthographicCamera>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
245
245
  removeEventListener: (<TEventKey extends keyof import("angular-three").NgtNodeEventMap<import("three").OrthographicCamera>>(type: TEventKey, listener: (this: import("angular-three").NgtNodeElement<import("three").OrthographicCamera, typeof import("three").OrthographicCamera>, ev: import("angular-three").NgtNodeEventMap<import("three").OrthographicCamera>[TEventKey]) => any) => void) & (<TEventKey extends keyof import("angular-three").NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: any, ev: import("angular-three").NgtAllObject3DEventsMap[TEventKey]) => any) => void);
@@ -321,7 +321,6 @@ export declare class NgtCanvas {
321
321
  getWorldQuaternion?: ((target: import("three").Quaternion) => import("three").Quaternion) | undefined;
322
322
  getWorldScale?: ((target: Vector3) => Vector3) | undefined;
323
323
  getWorldDirection?: ((target: Vector3) => Vector3) | undefined;
324
- raycast?: ((raycaster: Raycaster, intersects: import("three").Intersection[]) => void) | undefined;
325
324
  traverse?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
326
325
  traverseVisible?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
327
326
  traverseAncestors?: ((callback: (object: import("three").Object3D) => any) => void) | undefined;
@@ -353,6 +352,7 @@ export declare class NgtCanvas {
353
352
  quaternion: import("angular-three").NgtQuaternion;
354
353
  layers: import("angular-three").NgtLayers;
355
354
  dispose: (() => void) | null;
355
+ raycast: import("three").Object3D["raycast"] | null;
356
356
  }>) & {
357
357
  manual?: boolean;
358
358
  }) | undefined> | undefined>;
@@ -51,6 +51,7 @@ export type NgtObject3DNode<TOriginal, TConstructor, TNoEvent = NoEvent<TOrigina
51
51
  quaternion: NgtQuaternion;
52
52
  layers: NgtLayers;
53
53
  dispose: (() => void) | null;
54
+ raycast: Object3D['raycast'] | null;
54
55
  addEventListener<TEventKey extends keyof NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: NgtObject3DNode<TOriginal, TConstructor>, ev: NgtAllObject3DEventsMap[TEventKey]) => any): void;
55
56
  removeEventListener<TEventKey extends keyof NgtAllObject3DEventsMap>(type: TEventKey, listener: (this: NgtObject3DNode<TOriginal, TConstructor>, ev: NgtAllObject3DEventsMap[TEventKey]) => any): void;
56
57
  }>>;