UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

13 lines (9 loc) 359 B
import { TypeEditor } from "../../TypeEditor.js"; import { createObjectEditor } from "../../createObjectEditor.js"; export class ObjectEditor extends TypeEditor { inline = false; build(parent, field, registry) { const result = createObjectEditor(field.adapter.read(parent, field.name), registry); return result; } }