import { type ElementAttributes } from '@lume/element'; import { Mesh, type MeshAttributes } from './Mesh.js'; export type MixedPlaneAttributes = MeshAttributes; /** * @class MixedPlane - * * Element: `` * * This element is useful for rendering regular DOM content (`
`, ``, * etc) mixed with WebGL content. Any regular DOM content placed as children of * this element will be visible in the 3D scene and can be occluded by 3D * elements as well as occlude other 3D elements. * * For best results, set the background of the DOM content to a solid color, * take up 100% width and height of the lume-mixed-plane element, and don't use * border radius (for now), otherwise transparent parts of the regular DOM * content will not receal 3D content that would be expected to be behind them. * * See [`MixedPlaneGeometryBehavior`](../behaviors/mesh-behaviors/geometries/MixedPlaneGeometryBehavior) and [`MixedPlaneMaterialBehavior`](../behaviors/mesh-behaviors/materials/MixedPlaneMaterialBehavior) for * available properties. * * * * @extends Mesh */ export declare class MixedPlane extends Mesh { initialBehaviors: { geometry: string; material: string; }; } declare module 'solid-js' { namespace JSX { interface IntrinsicElements { 'lume-mixed-plane': ElementAttributes; } } } declare global { interface HTMLElementTagNameMap { 'lume-mixed-plane': MixedPlane; } } //# sourceMappingURL=MixedPlane.d.ts.map