unreal-engine

Open-source projects categorized as unreal-engine

Top 23 unreal-engine Open-Source Projects

  • AirSim

    Open source simulator for autonomous vehicles built on Unreal Engine / Unity, from Microsoft AI & Research

    Project mention: Modding API for old game: Strategies to ensure it runs on older systems while not losing productivity? | /r/REGames | 2023-05-04
  • nakama

    Distributed server for social and realtime games and apps.

    Project mention: Game Server Framework Recommendation | /r/golang | 2023-07-09

    nakama: https://github.com/heroiclabs/nakama

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

  • GameNetworkingResources

    A Curated List of Multiplayer Game Network Programming Resources

    Project mention: A Curated List of Game Network Programming Resources | news.ycombinator.com | 2023-05-22
  • ue5-style-guide

    An attempt to make Unreal Engine 4 projects more consistent

    Project mention: Why does the documentation say to use naming conventions like SKEL, SK, PHYS for Skeleton, Skeletal Mesh, Physics Asset, but all the start content use other abbreviations like SK, SKM and PA instead? | /r/unrealengine | 2023-12-11

    Doesn’t matter what you use, as long as it’s consistant. Epic changed their recommendations for skeletal meshes and skeletons between UE 4 and 5, hence the inconsistency. Michael Allar’s UE style guide is a common, long standing one. Personally I use whatever Epic’s current standard is, or what my team is using. It’s also fine to not prefix stuff, but it helps for consistency and searchability. It’s honestly more important to name things well, with cascading specificity: assetprefix_assettype_assetsubtype00 e.g. SM_Rock_Desert01, SM_Foliage_Bush_Dry_Small01 etc.

  • GameDevMind

    最全面的游戏开发技术图谱。帮助游戏开发者们在已知问题上节省时间,省出更多的精力投入到更有创造性的工作中去。

  • ActionRoguelike

    Third-person Action Roguelike made in Unreal Engine C++. Project for Unreal Engine C++ Course & Stanford University

    Project mention: So You've Decided to Move from Unity to Unreal Engine | news.ycombinator.com | 2023-09-14

    A course that finally made Unreal "click" for me, after years of toying with it, was Tom Looman's 'Professional Game Development in C++ and Unreal Engine' course. The source for what you build (with the chapters available in the git history) is here. [1] It was based on a class he taught and so also includes homework, which I found infinitely more valuable than just following along in a 'Here's how to [x].' type lesson.

    [1] - https://github.com/tomlooman/ActionRoguelike

  • UnrealCLR

    Unreal Engine .NET 6 integration

    Project mention: Since you're asking yes u can use C# in unreal | /r/Unity3D | 2023-09-18
  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

  • UEVR

    Universal Unreal Engine VR Mod (4.8 - 5.3)

    Project mention: UEVR – Transform [Existing] Unreal Engine Games into VR Experiences | news.ycombinator.com | 2024-01-12
  • UEViewer

    Viewer and exporter for Unreal Engine 1-4 assets (UE Viewer).

    Project mention: I want to learn how to data mine games I enjoy, such as Animal Jam Classic, but I’m not sure where to start. | /r/learnprogramming | 2023-12-09

    If you're lucky, the developers will have used a standard format to store their assets and you can just use an existing asset extractor to do the dirty work for you: Unreal, Unity, and Flash (.swf) are some of the most popular ones.

  • simulator

    A ROS/ROS2 Multi-robot Simulator for Autonomous Vehicles

  • ALS-Community

    Replicated and optimized community version of Advanced Locomotion System V4 for Unreal Engine 5.3 with additional features & bug fixes

  • Blender-For-UnrealEngine-Addons

    I have created this addons for export asset from Blender to Unreal Engine 4

  • zfoo

    💡Extremely fast enterprise server framework, can be used in RPC, game server, web server.

  • VoxelPlugin

    Voxel Plugin for Unreal Engine

    Project mention: What are the limits of blueprints? | /r/unrealengine | 2023-05-25

    There's also a performance question. While we can now use Blueprint nativization to convert Blueprints to C++ the result will be a fairly naive version, fast enough for most purposes but not if you're trying to push every bit of performance. This is where you're looking at making sure you're hitting things such as using the CPU cache as well as possible for an ECS system (Look at ENTT or Flecs if you want to see what they're about and why you'd want one), or a system needing to process massive amounts of data quickly such as the Voxel Plugin.

  • RealtimeMeshComponent

    Unreal Engine 4 plugin component for rendering runtime generated content.

    Project mention: How to create a mesh programmatically? | /r/unrealengine | 2023-09-23

    Take a look at this: https://github.com/TriAxis-Games/RealtimeMeshComponent

  • HoudiniEngineForUnreal

    Houdini Engine Plugin for Unreal Engine.

  • FModel

    Unreal Engine Archives Explorer

  • unrealcpp

    Unreal Engine 4 C++ examples

  • PBCharacterMovement

    HL2-style, classic FPS movement for Unreal Engine implemented in C++

    Project mention: The Next Generation in Graphics, Part 1: Three Dimensions in Software | news.ycombinator.com | 2023-04-27

    Let me make the case that it's definitely not just nostalgia - or, at least, that Quake style movement didn't fade away because of any objective, rational process.

    One of the exasperating consequences of the rise of game engines has been that you have games shipping that have more and more of their game design inherited from their game engines.

    On some level this makes sense - games are just massively complicated, and so if you already have working, tested code, it's often quite tempting to just go with what already works (and not spend time really internalizing how working things work) and then focus on figuring out the particular things you are adding from that baseline.

    As just such an example, when I was working on Activision's Soldier of Fortune, we largely inherited Quake 2's movement code, and most of it was left untouched by the time we shipped. At some point, midway through development, inspired by Thief, I stayed late one night with a co-worker, and I added in leaning around corners to the player controls. I don't remember the particulars of that process, but (obviously) I had to make tons of aesthetic choices while doing that, because I was writing it from scratch. But the base movement we could inherit.

    If you go back and look at first person games from the late 90's, their aesthetic choices about basic player movement are all different in subtle ways. That makes sense, because most studios were writing their own bespoke engines at the time, and there was vastly less code sharing. So people were writing code because there was no particular alternative, and so they were making tons and tons of aesthetics choices whether they wanted to or not. Lots of those choices weren't always great, but they were often particular.

    It's clear at this point that lots and lots of FPS games just inherit Unreal Engines movement. Not because it's great, but because it comes with Unreal and it's a default. To me, there's something very specific about the way friction works with player movement in Unreal that feels very ... sticky? ... compared to Quake Engine games. Players come to a stop when input is released in a way that feels like being in glue - again, at least to me. There's more subtle gliding around in Quake. As far as I can tell, the difference rarely effects game play in most games. But it does change how it feels aesthetically to play moment by moment.

    Anyway, this topic feels intensely path dependent to me. Unreal's movement is the default because Unreal is the default engine (in a lot of contexts), but it didn't become the default because of anything specific about its player movement code. Those aesthetic decisions were just along for the ride, so to speak. Or at least, that's my sense.

    Interestingly, I found a github project a while ago that tried to reverse engineer Quake / Source's movement and put it into Unreal Engine 4. No idea how successful the project is, but I suspect it might be an interesting resource for seeing what's different between the two: https://github.com/ProjectBorealis/PBCharacterMovement

  • Photogrammetry-Guide

    Photogrammetry Guide. Photogrammetry is widely used for Aerial surveying, Agriculture, Architecture, 3D Games, Robotics, Archaeology, Construction, Emergency management, and Medical.

  • FlowGraph

    Design-agnostic node system for scripting game’s flow in Unreal Engine

  • Unreal-Engine-Guide

    Unreal Engine 5 Guide. Learn to develop games for Windows, Linux, macOS, iOS, Android, Xbox Series X|S, PlayStation 5, Nintendo Switch.

  • deepdrive

    Deepdrive is a simulator that allows anyone with a PC to push the state-of-the-art in self-driving

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2024-01-12.

unreal-engine related posts

Index

What are some of the best open-source unreal-engine projects? This list will help you:

Project Stars
1 AirSim 15,815
2 nakama 8,254
3 GameNetworkingResources 6,733
4 ue5-style-guide 4,851
5 GameDevMind 4,340
6 ActionRoguelike 3,165
7 UnrealCLR 3,035
8 UEVR 2,512
9 UEViewer 2,255
10 simulator 2,196
11 ALS-Community 2,063
12 Blender-For-UnrealEngine-Addons 1,842
13 zfoo 1,661
14 VoxelPlugin 1,496
15 RealtimeMeshComponent 1,454
16 HoudiniEngineForUnreal 1,264
17 FModel 1,219
18 unrealcpp 1,158
19 PBCharacterMovement 1,155
20 Photogrammetry-Guide 1,021
21 FlowGraph 1,003
22 Unreal-Engine-Guide 901
23 deepdrive 873
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com