import React from 'react'
import { StoryFn, Meta } from '@storybook/react'
import Reset from '../components/decorator-reset'
import { useControls } from '../../src'
export default {
title: 'Inputs/Vector',
decorators: [Reset],
} as Meta
const Template: StoryFn = (args) => {
const values = useControls({
foo: args,
})
return (
{JSON.stringify(values, null, ' ')}
)
}
export const Vector2 = Template.bind({})
Vector2.args = {
value: { x: 0, y: 0 },
}
export const Vector2FromArray = Template.bind({})
Vector2FromArray.args = {
value: [1, 10],
}
export const Vector2WithLock = Template.bind({})
Vector2WithLock.args = {
value: [1, 10],
lock: true,
}
export const Vector2WithoutJoystick = Template.bind({})
Vector2WithoutJoystick.args = {
value: { x: 0, y: 0 },
joystick: false,
}
export const Vector2WithInvertedJoystickY = ({ value, invertY }) => (
)
Vector2WithInvertedJoystickY.args = {
value: [0, 0],
invertY: true,
}
export const Vector3 = Template.bind({})
Vector3.args = {
value: { x: 0, y: 0, z: 0 },
}
export const Vector3FromArray = Template.bind({})
Vector3FromArray.args = {
value: [1, 10, 0],
}
export const Vector3WithLock = Template.bind({})
Vector3WithLock.args = {
value: [1, 10, 0],
lock: true,
}