react-native-filament
Version:
A real-time physically based 3D rendering engine for React Native
19 lines • 632 B
TypeScript
import { TextureFlags, TransformationProps } from '../types';
import React from 'react';
import { FilamentBuffer } from '../native/FilamentBuffer';
export type SelectorProps = {
byName: string;
} | {
byIndex: number;
};
export type TextureMap = {
materialName: string;
textureSource: FilamentBuffer;
textureFlags?: TextureFlags;
};
export type ModifierProps = TransformationProps & {
textureMap?: TextureMap;
};
export type EntitySelectorProps = SelectorProps & ModifierProps;
export declare function EntitySelector(props: EntitySelectorProps): React.JSX.Element;
//# sourceMappingURL=EntitySelector.d.ts.map