Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.17 KB

readme.md

File metadata and controls

39 lines (28 loc) · 1.17 KB

Tweakpane plugin Import / Export

build release

Plugin that provides a user interface to import / export values within Tweakpane.


Tweakpane plugin Import/Export preview

Install

pnpm add tweakpane-plugin-import-export

Usage

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' })