glodrei
Version:
useful add-ons for react-three-fiber
20 lines (16 loc) • 437 B
text/mdx
title: Billboard
sourcecode: src/core/Billboard.tsx
[](https://drei.pmnd.rs/?path=/story/abstractions-billboard--billboard-st)
Adds a `<group />` that always faces the camera.
```jsx
<Billboard
follow={true}
lockX={false}
lockY={false}
lockZ={false} // Lock the rotation on the z axis (default=false)
>
<Text fontSize={1}>I'm a billboard</Text>
</Billboard>
```