Visit the Documentation of the upcoming Threlte 6.
  1. @threlte/theatre
  2. Editable

@threlte/theatre

Editable

A component <Editable> represents a set of editable and animatable properties of its parent. This component is creating a Theatre.js sheet object under the hood and therefore all original concepts apply.

Open

Import

Source

Github View Source Code

Package

NPM View Package

Related Docs


Auto Props

Declaring Auto Props

Similar to the magic that's driving the components <Three>/<T>, the component <Editable> is able to automatically pick up props from its parent.

<script>
	import { T } from '@threlte/core'
	import { Editable } from '@threlte/theatre'
</script>

<T.Mesh>
	<!--
		Picks up the "position" and "scale" properties of
		the Mesh and makes them editable and animatable.
	-->
	<Editable name="Cube" position scale />

	<T.BoxGeometry />

	<T.MeshStandardMaterial color="red">
		<!--
			Picks up the material properties "color", "roughness"
			and "metalness" and their initial values ("red" in
			the case of "color", default values for others) and
			makes them editable and animatable.
		 -->
		<Editable name="Material" color roughness metalness />
	</T.MeshStandardMaterial>
</T.Mesh>

Pierced Auto Props

Similarly to the pierced props of <Three>/ <T>, the props of the component <Editable> can be notated in the same fashion:

<script>
	import { T } from '@threlte/core'
	import { Editable } from '@threlte/theatre'
</script>

<T.Mesh>
	<!--
		Picks up only the x value of the position of
		the Mesh and makes it editable and animatable.
	-->
	<Editable name="Cube" position.x />

	<T.BoxGeometry />
	<T.MeshStandardMaterial />
</T.Mesh>

Labeling Auto Props

To label an auto prop, just provide a string instead of a boolean value.

<script>
	import { T } from '@threlte/core'
	import { Editable } from '@threlte/theatre'
</script>

<T.Mesh>
	<!--
		Picks up only the x value of the position of
		the Mesh and makes it editable and animatable
		as the sheet object's property called "x".
	-->
	<Editable name="Cube" position.x="x" />

	<T.BoxGeometry />
	<T.MeshStandardMaterial />
</T.Mesh>

Special Auto Props

Some props are treated differently.

<script>
	import { T } from '@threlte/core'
	import { Editable } from '@threlte/theatre'
</script>

<T.Mesh>
	<!--
		Picks up the rotation of the Mesh and
		transforms radians to degrees automatically.
		All properties that represent a THREE.Euler
		are automatically converted from radians to
		degrees.
	-->
	<Editable name="Cube" rotation />

	<T.BoxGeometry />
	<T.MeshStandardMaterial color="red">
		<!--
			All properties that represent a THREE.Color
			object can be edited with a Color-focused UI.
		 -->
		<Editable name="Material" color emissive />
	</T.MeshStandardMaterial>
</T.Mesh>

Transform Shorthand

To easily add all transform properties to an <Editable> component, simply provide the flag transform. If transform is provided, add the flag controls to automatically add THREE.TransformControls when an object is selected in the Theatre.js Outliner.

<script>
	import { T } from '@threlte/core'
	import { Editable } from '@threlte/theatre'
</script>

<T.Mesh>
	<!--
		Picks up the position, rotation and scale of
		the Mesh and makes them editable and animatable.
		If the object is selected in the Theatre.js studio,
		TransformControls will appear and let you edit your
		object directly in the scene.
	-->
	<Editable name="Cube" transform controls />

	<T.BoxGeometry />
	<T.MeshStandardMaterial />
</T.Mesh>

Configuring the Controls

The THREE.TransformControls added by the flag controls provide snapping to automatically snap an object along its axes. Hold down "shift" to enable snapping while dragging the controls. Provide the property snap to configure the snap settings:

<script>
	import { T } from '@threlte/core'
	import { Editable } from '@threlte/theatre'
</script>

<T.Mesh>
	<Editable
		name="Cube"
		transform
		controls
		snap={{
			translate: 0.1,
			rotate: 15 * DEG2RAD,
			scale: 0.1
		}}
	/>

	<T.BoxGeometry />
	<T.MeshStandardMaterial />
</T.Mesh>

Read Current Prop Values

We've talked about using the provided THREE.TransformControls and the interface Theatre.js provides to edit and animate auto props of an <Editable> component. Sometimes this is not sufficient. If you want to for example use <OrbitControls> to edit the transforms of a camera and commit changes to the Theatre.js animation, you can use the prop read to notify the component <Editable> that the underlying data has changed and the values should be read and commited. This only happens when the Theatre.js Studio is used.

<script lang="ts">
	import { OrbitControls, T } from '@threlte/core'
	import { Editable } from '@threlte/theatre'

	/**
	 * "read" is a function that *reads* the values of all declared auto props (in
	 * this case the transforms of the camera) and commits them as keyframes at
	 * the current playhead position. This only happens when the Theatre.js Studio
	 * is used. It can be used to read and commit changes at the press of a button
	 * too, which comes in handy for custom animation workflows! In this particular
	 * case, we use the event "change" of the OrbitControls to automatically commit
	 * changes to the camera transforms.
	*/
	let read: (() => void) | undefined = undefined
</script>

<T.PerspectiveCamera position={[10, 10, 10]}>
	<Editable name="Camera" transform let:read bind:read>
		<OrbitControls on:change={read} target={{ y: 1.5 }} />
	</Editable>
</T.PerspectiveCamera>

Manual Props

There are cases where auto props are not suitable. For these cases, it's possible to define custom, manual props. These props are then passed to the Theatre.js sheet object initializer as-is. Using the slot prop values it's easy to receive the result and work it into the rest of your component. Additionally, the change event can be used to update things based on changing values.

INFO

The component <Editable> does not need to be the child of any particular component in this scenario. It's acting as a provider of values now.

<script>
	import { T } from '@threlte/core'
	import { Editable } from '@threlte/theatre'
</script>

<Editable
	name="Cube"
	props={{
		showCube: true
	}}
	let:values={{ showCube }}
	on:change={({ showCube }) => {
		console.log('showCube changed!', showCube)
	}}
>
	{#if showCube}
		<T.Mesh>
			<T.BoxGeometry />
			<T.MeshStandardMaterial />
		</T.Mesh>
	{/if}
</Editable>