UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines (8 loc) 304 B
import { TypeEditor } from "../../TypeEditor.js"; import { makeV3_editor } from "../common/makeV3_editor.js"; export class Vector3Editor extends TypeEditor { build(parent, field) { const v3 = field.adapter.read(parent, field.name); return makeV3_editor(v3); } }