A stand alone editor implementation of the UE's Blueprint visual language.
https://www.npmjs.com/package/ueblueprint
1) Open a terminal in the main folder. 2) Run the following commands.
npm install
npm run build
npx http-server
3) Open the link you see in the last message printed.
You can check index.html
for a working example, the main steps are the following:
dist
directory available in your website by copying it or installing through npm npm i ueblueprint
.dist/css/ueb-style.css
stylesheet in your page.<style>
ueb-blueprint {
--ueb-height: 500px;
}
</style>
<script type="module">
import { Blueprint } from "./dist/ueblueprint.min.js"
</script>
template
, inside a ueb-blueprint
element.
<ueb-blueprint>
<template>
...
</template>
</ueb-blueprint>