All Projects → LazyTurtle → YetAnotherGraphPlugin

LazyTurtle / YetAnotherGraphPlugin

Licence: MIT license
A simple plugin for creating graph-like assets for Unreal Engine 4

Programming Languages

C++
36643 projects - #6 most used programming language
C#
18002 projects
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to YetAnotherGraphPlugin

kglib
TypeDB-ML is the Machine Learning integrations library for TypeDB
Stars: ✭ 523 (+1643.33%)
Mutual labels:  graphs
Realistic-Atmosphere-Godot-and-UE4
A realistic atmosphere material for both the Godot game engine and Unreal Engine 4
Stars: ✭ 119 (+296.67%)
Mutual labels:  unreal-engine-4
COVIDstats
COVID-19 Statistical Analysis Simulator App using R deployed on shinyapps.io a John Hopkins University COVID count clone and simulator
Stars: ✭ 13 (-56.67%)
Mutual labels:  graphs
RyansUE4Helpers
Extremely helpful helper functions for developing Blueprint and C++ projects in Unreal Engine.
Stars: ✭ 55 (+83.33%)
Mutual labels:  unreal-engine-4
BluePrintRenderer
Javascript Unreal Engine 4 Blueprints Renderer
Stars: ✭ 81 (+170%)
Mutual labels:  unreal-engine-4
gnn-lspe
Source code for GNN-LSPE (Graph Neural Networks with Learnable Structural and Positional Representations), ICLR 2022
Stars: ✭ 165 (+450%)
Mutual labels:  graphs
UT Framework
Various advanced tools built for Unreal Engine 4
Stars: ✭ 45 (+50%)
Mutual labels:  unreal-engine-4
TwitchAuth
Unreal Engine 4 Plugin for In-Game Twitch Authentication.
Stars: ✭ 21 (-30%)
Mutual labels:  unreal-engine-4
beapi-bench
Tool for benchmarking apis. Uses ApacheBench(ab) to generate data and gnuplot for graphing. Adding new features almost daily
Stars: ✭ 16 (-46.67%)
Mutual labels:  graphs
morphologica
A library of supporting code for numerical modelling (JSON config, HDF5 data, Modern OpenGL visualization)
Stars: ✭ 118 (+293.33%)
Mutual labels:  graphs
ntds 2018
Material for the EPFL master course "A Network Tour of Data Science", edition 2018.
Stars: ✭ 59 (+96.67%)
Mutual labels:  graphs
WebCameraFeed
Web Camera plugin for Unreal Engine
Stars: ✭ 50 (+66.67%)
Mutual labels:  unreal-engine-4
SwiftCharts
Easy to use and highly customizable charts library for iOS
Stars: ✭ 2,405 (+7916.67%)
Mutual labels:  graphs
topometry
A comprehensive dimensional reduction framework to recover the latent topology from high-dimensional data.
Stars: ✭ 64 (+113.33%)
Mutual labels:  graphs
DlgSystem
Dialogue Plugin System for Unreal Engine | 🪞 Mirror of https://bit.ly/DlgSource
Stars: ✭ 136 (+353.33%)
Mutual labels:  unreal-engine-4
Neural-Plot-Development
A Library for visualizing Neural Networks of the TensorFlow/Keras models.
Stars: ✭ 16 (-46.67%)
Mutual labels:  graphs
graph-transformer-pytorch
Implementation of Graph Transformer in Pytorch, for potential use in replicating Alphafold2
Stars: ✭ 81 (+170%)
Mutual labels:  graphs
PCGML-Game-Mechanics
Master thesis: "Using Procedural Content Generation via Machine Learning as a Game Mechanic" with a prototype in Unreal Engine 4.22.
Stars: ✭ 43 (+43.33%)
Mutual labels:  unreal-engine-4
kaliningraph
🕸️ Graphs, finite fields and discrete dynamical systems in Kotlin
Stars: ✭ 62 (+106.67%)
Mutual labels:  graphs
graph datasets
A Repository of Benchmark Graph Datasets for Graph Classification (31 Graph Datasets In Total).
Stars: ✭ 227 (+656.67%)
Mutual labels:  graphs

YetAnotherGraphPlugin

Making graphs effortless.

A plugin for Unreal Engine 4 that allows to create graph-like assets.

Getting started

  • Clone or copy the plugin into the "Plugins" folder of your project. Create one if there is none.
  • Generate Visual Studio project files.

Native Features

Naming Nodes

Is now possible to name nodes. Named nodes can be accessed directly using the NamedNodes property of the graph asset

Native Nodes

The Plugin comes with 6 different nodes for basic graph creations. They are divided into 3 groups:

  • Empty Nodes: This nodes don't have any property and are to be used as parent class of the nodes that will store the informations.

  • Action Nodes: This are transparent nodes. In other words they aren't visible when navigating the graph using the function GetChildren of a node and at their place there will be their subnode. Before returning the subnode they perform a blueprintable function. With the plugin there are 2 implementation that store a named variable and its value on the external UObject owner of the graph that must implement the YetAnotherGraphInterface interface (for exchanging informations between graphs and objects). If there isn't just a single subnode (there are 0 or more then 1 subnodes) the node will not perform the action and will not return its subnode. The two implementation are:

    • Store Boolean: stores a named boolean variable
    • Store Integer: stores a named integer.

  • Flow Control: The task of this nodes is to change dinamically the node they return when navigating the graph. Much like the action nodes they're completely transparent when using the graph. When using the function GetChildren on any node if among those subnodes there is a Flow Control node it will not be seen. Instead, in place of the flow control node, there will be one of its subnodes, depending on the specific result of the evaluation implemented. There are 2 flow control abstract classes you can inherit: BinarySelector and MultiNodeSelector. But there are 2 implementations that take advantage of the action nodes:

    • Boolean Selector will look up the boolean value associated with the variable name and that returns one of at most two nodes. On true it will return the node on the left. If there are 0 or more than 2 nodes or the evaluation turns out to be false on a single subnode, it will not return anything.

    • Nth Selector will look up the integer associated with the variable name and return the nth-subnode, counting them from left to right and starting from 0. If there are 0 nodes or the evaluation calculate an index outside the number of nodes, it will not return anything.

If a flow control node doesn't return any node, it won't appear among the children of the node that called the function. If needed it's still possible to have a reference of this nodes. They are present in the 'Nodes' property of the graph asset, and they can be named and referenced directly using the NamedNodes map property.

Creating new graphs and nodes

  • Create a new Blueprint Graph asset.

  • Create a new blueprint that inherits SimpleNode or StartNode blueprintable classes.

  • Customize the new blueprint node. overriding few functions.
    • GetTitleNode to change the name displayed int he graph editor.
    • HasOutpitPins to remove the bottom area of the node, usually dedicated to the output pins.
    • HasInputPins to remove the upper area of the node, usually dedicated to the input pins.
    • Add any kind of new variable that you wish.

  • Add your categories separated by a | for creating your own list on the graph

  • Spawn the node in the graph editor by dragging an arrow from its parent or by right clicking on the graph editor.

This project is licensed under the MIT License - see the LICENSE file for details

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].