Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 7 days 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 (10 months ago)
- Default Branch: main
- Last Pushed: 2024-05-21T12:37:02.000Z (6 months ago)
- Last Synced: 2024-11-03T12:51:44.578Z (14 days ago)
- Topics: tweakpane, tweakpane-plugin
- Language: TypeScript
- Homepage:
- Size: 104 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Tweakpane plugin Import / Export
[![build](https://github.com/juliendargelos/tweakpane-plugin-import-export/actions/workflows/build.yml/badge.svg)](https://github.com/juliendargelos/tweakpane-plugin-import-export/actions/workflows/build.yml)
[![release](https://github.com/juliendargelos/tweakpane-plugin-import-export/actions/workflows/release.yml/badge.svg)](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' })
```