https://github.com/juliendargelos/tweakpane-plugin-import-export
Plugin that provides a user interface to import / export values within Tweakpane.
https://github.com/juliendargelos/tweakpane-plugin-import-export
tweakpane tweakpane-plugin
Last synced: about 1 year ago
JSON representation
Plugin that provides a user interface to import / export values within Tweakpane.
- Host: GitHub
- URL: https://github.com/juliendargelos/tweakpane-plugin-import-export
- Owner: juliendargelos
- License: mit
- Created: 2024-02-01T15:55:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T12:37:02.000Z (about 2 years ago)
- Last Synced: 2025-04-28T06:04:27.583Z (about 1 year ago)
- Topics: tweakpane, tweakpane-plugin
- Language: TypeScript
- Homepage:
- Size: 104 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Tweakpane plugin Import / Export
[](https://github.com/juliendargelos/tweakpane-plugin-import-export/actions/workflows/build.yml)
[](https://github.com/juliendargelos/tweakpane-plugin-import-export/actions/workflows/release.yml)
Plugin that provides a user interface to import / export values within [Tweakpane](https://github.com/cocopon/tweakpane).
## Install
```bash
pnpm add tweakpane-plugin-import-export
```
## Usage
```ts
import { Pane } from 'tweakpane'
import * as ImportExportPlugin from 'tweakpane-plugin-import-export'
// Or using a CDN:
// import { Pane } from 'https://esm.sh/tweakpane'
// import * as ImportExportPlugin from 'https://esm.sh/tweakpane-plugin-import-export'
const pane = new Pane()
pane.registerPlugin(ImportExportPlugin)
pane.addBlade({ view: 'import-export' })
```