Giter VIP home page Giter VIP logo

ueblueprint's Introduction

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>

ueblueprint's People

Contributors

barsdeveloper avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.