---
title: Tweakpane
description: How to use tweakpane to control your scene
author: alvarosabu
thumbnail: /recipes/tweakpane.png
difficulty: 0
---
# Tweakpane
To make it easier to control the parameters of your scene, you can use [Tweakpane](https://tweakpane.github.io/docs/). In this guide, we will show you how to use Tweakpane to control the parameters of your scene.
## Installation
First, you need to install Tweakpane:
```bash
pnpm add tweakpane
```
Additionally install type defs
```bash
$ pnpm add -D @tweakpane/core
```
## Usage
In this example, we will create a simple scene with a cube and use Tweakpane to control background color and the cube material `wireframe` property.
```vue
```