useSpace
Examples
Section titled “Examples”import { useSpace } from '@threlte/studio/extensions'
const space = useSpace()
// toggle the working spacespace.toggleSpace()
// set the working space to localspace.setSpace('local')
// set the working space to worldspace.setSpace('world')
// get the working spaceconsole.log(space.space) // 'world'