You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`onLoad?`|`(spline: Application) => void`| Gets called once the scene has loaded. The `spline` parameter is an instance of the [Spline Application](#spline-app-methods)|
262
-
|`renderOnDemand?`|`boolean`| Wether or not to enable [on demand rendering](https://threejs.org/manual/#en/rendering-on-demand). Default `true`. |
263
-
|`className?`|`string`| CSS classes |
264
-
|`style?`|`object`| CSS style |
265
-
|`id?`|`string`| Canvas id |
266
-
|`ref?`|`React.Ref<HTMLDivElement>`| A ref pointing to div container element. |
267
-
|`onWheel?`|`(e: SplineEvent) => void`| Gets called on the [`wheel`](https://developer.mozilla.org/en-US/docs/Web/API/Element/wheel_event) event on the canvas|
268
-
|`onMouseDown?`|`(e: SplineEvent) => void`| Gets called once a Spline `Mouse Down` event is fired|
269
-
|`onMouseHover?`|`(e: SplineEvent) => void`| Gets called once a Spline `Mouse Hover` event is fired |
270
-
|`onMouseUp?`|`(e: SplineEvent) => void`| Gets called once a Spline `Mouse Up` event is fired |
271
-
|`onKeyDown?`|`(e: SplineEvent) => void`| Gets called once a Spline `Key Down` event is fired |
272
-
|`onKeyUp?`|`(e: SplineEvent) => void`| Gets called once a Spline `Key Up` event is fired |
273
-
|`onStart?`|`(e: SplineEvent) => void`| Gets called once a Spline `Start` event is fired|
274
-
|`onLookAt?`|`(e: SplineEvent) => void`| Gets called once a Spline `Look At` event is fired|
275
-
|`onFollow?`|`(e: SplineEvent) => void`| Gets called once a Spline `Mouse Up` event is fired |
|`onLoad?`|`(spline: Application) => void`| Gets called once the scene has loaded. The `spline` parameter is an instance of the [Spline Application](#spline-app-methods)|
262
+
|`renderOnDemand?`|`boolean`| Wether or not to enable [on demand rendering](https://threejs.org/manual/#en/rendering-on-demand). Default `true`. |
263
+
|`className?`|`string`| CSS classes |
264
+
|`style?`|`object`| CSS style |
265
+
|`id?`|`string`| Canvas id |
266
+
|`ref?`|`React.Ref<HTMLDivElement>`| A ref pointing to div container element. |
267
+
|`onSplineMouseDown?`|`(e: SplineEvent) => void`| Gets called once a Spline `Mouse Down` event is fired |
268
+
|`onSplineMouseHover?`|`(e: SplineEvent) => void`| Gets called once a Spline `Mouse Hover` event is fired |
269
+
|`onSplineMouseUp?`|`(e: SplineEvent) => void`| Gets called once a Spline `Mouse Up` event is fired|
270
+
|`onSplineKeyDown?`|`(e: SplineEvent) => void`| Gets called once a Spline `Key Down` event is fired |
271
+
|`onSplineKeyUp?`|`(e: SplineEvent) => void`| Gets called once a Spline `Key Up` event is fired|
272
+
|`onSplineStart?`|`(e: SplineEvent) => void`| Gets called once a Spline `Start` event is fired|
273
+
|`onSplineLookAt?`|`(e: SplineEvent) => void`| Gets called once a Spline `Look At` event is fired |
274
+
|`onSplineFollow?`|`(e: SplineEvent) => void`| Gets called once a Spline `Mouse Up` event is fired |
275
+
|`onSplineScroll?`|`(e: SplineEvent) => void`| Gets called once a Spline `Scroll` event is fired|
0 commit comments