UNPKG

react-native-filament

Version:

A real-time physically based 3D rendering engine for React Native

16 lines 519 B
import React from 'react'; import { EnvironmentalLight } from './EnvironmentalLight'; import { Light } from './Light'; export function DefaultLight() { return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(EnvironmentalLight, { source: { uri: 'RNF_default_env_ibl.ktx' } }), /*#__PURE__*/React.createElement(Light, { type: "directional", intensity: 10_000, colorKelvin: 6_500, castShadows: true })); } //# sourceMappingURL=DefaultLight.js.map