mirror of
https://github.com/rive-app/rive-react.git
synced 2026-03-13 08:22:30 +08:00
13 lines
318 B
TypeScript
13 lines
318 B
TypeScript
import { UseRiveOptions } from './types';
|
|
|
|
const defaultOptions = {
|
|
useDevicePixelRatio: true,
|
|
fitCanvasToArtboardHeight: false,
|
|
useOffscreenRenderer: true,
|
|
shouldResizeCanvasToContainer: true,
|
|
};
|
|
|
|
export function getOptions(opts: Partial<UseRiveOptions>) {
|
|
return Object.assign({}, defaultOptions, opts);
|
|
}
|