chore: update packages

This commit is contained in:
2023-08-24 12:43:00 +02:00
parent 713c212a8c
commit 50f2b7cc52
5 changed files with 1401 additions and 1066 deletions

View File

@@ -13,10 +13,10 @@ export const createPane = (ctx: any) => {
const rotation = ctx.pane.addFolder({
title: 'Rotation',
})
rotation.addInput(ctx.params, 'autoRotate', {
rotation.addBinding(ctx.params, 'autoRotate', {
label: 'Auto-rotate',
})
rotation.addInput(ctx.params, 'speed', {
rotation.addBinding(ctx.params, 'speed', {
label: 'Rotation speed',
min: 0.01,
max: 2,
@@ -31,10 +31,10 @@ export const createPane = (ctx: any) => {
const markers = ctx.pane.addFolder({
title: 'Markers',
})
markers.addInput(ctx.params, 'enableMarkers', {
markers.addBinding(ctx.params, 'enableMarkers', {
label: 'Enable markers',
})
markers.addInput(ctx.params, 'enableMarkersLinks', {
markers.addBinding(ctx.params, 'enableMarkersLinks', {
label: 'Interactive',
})
}
@@ -47,7 +47,7 @@ export const createPane = (ctx: any) => {
title: 'Misc',
})
// Sun position
misc.addInput(ctx.params, 'sunAngle', {
misc.addBinding(ctx.params, 'sunAngle', {
label: 'Sun angle',
min: 0,
max: 1,