barsdeveloper a5813d0b4d Niagara and Metasound nodes WIP
* Keep track of entities

* Fix renaming

* Niagara variables wip

* Several niagara decode and test

* Move nodeTemplate code to dedicated file, self node added

* Move node decoding functions to dedicated files

* Move pin decoding logic to dedicated files

* Accept space separated keys in objects

* Build

* Prevent a crash in case of incomplete object

* Avoid creating objects unnecessarily

* types formatting

* Initial metasound style

* Common pcg nodes colors

* Fix string serialization

* Metasound new styles and fixes

* More metasound styles and colors

* WIP

* Several fixes

* More tests and fixes

* Clean gitignore
2024-05-20 12:56:36 +02:00
2024-05-20 12:56:36 +02:00
2023-05-19 00:06:11 +02:00
2024-05-20 12:56:36 +02:00
2024-05-20 12:56:36 +02:00
2024-05-20 12:56:36 +02:00
2024-05-20 12:56:36 +02:00
2024-05-20 12:56:36 +02:00
2023-05-15 22:29:52 +02:00
2023-05-24 19:46:42 +02:00
2021-06-29 16:26:39 +02:00
2024-05-20 12:56:36 +02:00
2023-05-25 17:56:54 +02:00
2024-05-20 12:56:36 +02:00

UEBlueprint

A stand alone editor implementation of the UE's Blueprint visual language. (WIP)

Features:

  • Intercommunicates with UE (can copy nodes both ways).
  • Can be used as a WEB library to visualize, interact and modify Blueprint graphs.
  • Can be used inside VS Code to operate directly on files from a UE project (in the future).
  • Graph shown is pixel-similar to how it appears in UE.
  • Graph behaves the same way as it does in UE (with the default settings).
  • All the information shown in he graph is just the one embedded in the serialized text (in VS Code it should be able to access assets also).
  • Modern object oriented, clean, JavaScript codebase.

Demo:

Try it!

img1

Getting started:

Run locally

  1. Open a terminal in the main folder.
  2. Run the following commands.
npm install
npm run build
npx http-server
  1. Open the link you see in the last message printed.

Use in a web page

You can check index.html for a working example, the main steps are the following:

  1. Include dist/css/ueb-style.css stylesheet in your page.
  2. Define eventual CSS variables.
<style>
    ueb-blueprint {
        --ueb-height: 500px;
    }
</style>
  1. Import the class Blueprint in JavaScript (this library uses modules).
<script type="module">
    import { Blueprint } from "./dist/ueblueprint.js"
</script>
  1. Define your blueprint the by just writing the code inside a ueb-blueprint, inside a template element.
<ueb-blueprint>
    <template>
        ...                   
    </template>
</ueb-blueprint>
Description
Unreal Engine's Blueprint visualization web library
Readme MIT 11 MiB
Languages
JavaScript 88.9%
HTML 7.3%
SCSS 3.8%