There are a features that are user specific, not something everyone needs; therefore we created the Zea Ux plug-in. It adds powerful features to the engine, that enrich the user experience like creation tools, UndoRedo System, etc.
Full documentation with concepts, tutorials, live examples, API documentation and more; can be found at the zea ux docs site: https://docs.zea.live/zea-ux
These docs allow developers to get started with the Zea UX by downloading free and open-source demo content and using Zea's publicly distributed client-side libraries.
The Zea UX plug-in is under a MIT
license.
The process to add Zea UX to your projects is easy.
For static websites or quick implementation you can always use CDNs like JsDelivr or Unpkg:
<script crossorigin src="https://cdn.jsdelivr.net/npm/@zeainc/zea-ux/dist/index.umd.min.js"></script>
<script crossorigin src="https://unpkg.com/@zeainc/zea-ux/dist/index.umd.js"></script>
<script>
const { UndoRedoManager } = globalThis.zeaUx
</script>
But if you want to use it like a module, then install the package in your project using npm
or yarn
:
npm i @zeainc/zea-ux
## Or
yarn add @zeainc/zea-ux
import { UndoRedoManager } from '@zeainc/zea-ux'
// ...
This plug-in depends on ZeaEngine. So, if you're using CDNs, make sure to import it before UX.
For questions on licensing, please fill out the contact form on our website: zea.live