Unityframework

Framework for Unity that includes lots of useful utility functions and helper classes.
Alternatives To Unityframework
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Puerts3,828
20 hours ago169otherC++
普洱TS!Write your game with TypeScript in UE or Unity. PuerTS can be pronounced as pu-erh TS
Xnode2,713
3 months ago70mitC#
Unity Node Editor: Lets you view and edit node graphs inside Unity
Node_editor_framework1,930
3 years ago11mitC#
A flexible and modular Node Editor Framework for creating node based displays and editors in Unity
Nodegraphprocessor1,509
8 months ago56mitC#
Node graph editor framework focused on data processing using Unity UIElements and C# 4.6
Mixture816
4 months ago11mitC#
Mixture is a powerful node-based tool crafted in unity to generate all kinds of textures in realtime
Unityoctree652
2 years agootherC#
A dynamic, loose octree implementation for Unity written in C#
Nodebaseddialoguesystem597
a month ago6mitC#
Node Based Dialogue System for Unity
Shader Graph Nodes430
2 years ago4mitC#
Custom Nodes for Unity Shader Graph
Socket.io Unity342
5 years ago37
socket.io client for Unity, power game client with node.js back-end
Entitiesbt313
a year ago4mitC#
Behavior Tree for Unity ECS (DOTS) framework
Alternatives To Unityframework
Select To Compare


Alternative Project Comparisons
Readme

UnityFramework

Framework for Unity that includes

  • Lots of useful utility classes.
  • Simple but powerful Event based Statemachine system with editor.
  • Localisation system
  • Fast and powerful NodeGraph system with editor.

Features

Statemachine Editor

Alt text Alt text

The statemachine editor allows you to create statemachines that can be used to drive logic in your project or be used for things like branching dialgoue. Statemachines are serialised to text assets (as xml) and they support cross scene references for gameobjects/components so can control your games flow whilst it loads / unloads different scenes.

Different types of states are supported:

  • Timeline states which can trigger events (and its easy to write/add your own)
  • Coroutine states that simply run and wait for a coroutine on a monobehaviour
  • Conditional states which will make the statemachine remain in the state until a condition is met. These can be used to branch logic or wait for an player action (its also easy to write/add your own conditions for branching logic)

NodeGraph Editor

Alt text

The node graph editor allows you to create node graphs that can be used to drive animations, blend values on materials, change light colors etc and are easily extendible to add your own nodes. Node graphs are likewise serialised to text assets (as xml) so can be reused throughout your project.

The component that runs the nodegraph can pass it unique data values via 'input nodes'. This means for example the same node graph that idly oscillates an object (eg a floating rock) can be reused on different objects each with different values for oscillation height and speed - you dont have to change the node graphs, instead simply use different input values on the component.

Node graphs can also have output nodes which allow them to be chained - one Node Graphs output can be hooked up to the input of another. This allows controlling a load of nodegraphs from one single one, eg controlling a scenes lighting and post effects based on a parent nodegraph that outputs the suns position in the sky.

Localisation Editor

Alt text

The Localisation system allows you to use localised strings as properties, or on Text or TextMesh components, or directly and edit them using a simple fast editor. It supports variable replacement either per string or globally (any global variables will automatically get replaced in all strings).

Popular Unity Projects
Popular Nodejs Projects
Popular Games Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
C Sharp
Node
Editor
Graph
Unity
Xml
Localisation
Timeline
Coroutines