All Projects → Unity-Technologies → Com.unity.multiplayer.mlapi

Unity-Technologies / Com.unity.multiplayer.mlapi

Licence: mit
A game networking framework built for the Unity Engine to abstract game networking concepts.

Programming Languages

csharp
926 projects

Projects that are alternatives of or similar to Com.unity.multiplayer.mlapi

Forgenetworkingremastered
In short, Forge Networking is a free and open source multiplayer game (multi-user) networking system that has a very good integration with the Unity game engine. You wanna make a multiplayer game or real time multi-user application? This is the library for you.
Stars: ✭ 1,338 (+71.32%)
Mutual labels:  unity, unity3d, multiplayer, networking
Ubernet
Flexible networking library for Unity
Stars: ✭ 10 (-98.72%)
Mutual labels:  unity, unity3d, multiplayer, networking
Colyseus Unity3d
⚔ Colyseus Multiplayer SDK for Unity
Stars: ✭ 251 (-67.86%)
Mutual labels:  unity, unity3d, multiplayer, networking
Game Networking Resources
A Curated List of Game Network Programming Resources
Stars: ✭ 4,208 (+438.8%)
Mutual labels:  unity, unity3d, multiplayer, networking
Rimlight
Customizable rimlight shader for Unity that includes pulsation and noise scrolling. Give your scenes that extra oomph!
Stars: ✭ 170 (-78.23%)
Mutual labels:  unity, unity3d, unity-3d
Radialprogressbar
Customizable radial progress bar shader for Unity3D. Allows you to set arc range, minimum and maximum colors, textures, radius, and a few more things. Create HP Bars, Speedometers, rank progress, etc!
Stars: ✭ 714 (-8.58%)
Mutual labels:  unity, unity3d, unity-3d
Apple Signin Unity
Unity plugin to support Sign In With Apple Id
Stars: ✭ 228 (-70.81%)
Mutual labels:  unity, unity3d, unity-3d
Realtime Csg For Unity
Realtime-CSG, CSG level editor for Unity
Stars: ✭ 281 (-64.02%)
Mutual labels:  unity, unity3d, unity-3d
Gdk For Unity Fps Starter Project
SpatialOS GDK for Unity FPS Starter Project
Stars: ✭ 119 (-84.76%)
Mutual labels:  unity, unity3d, multiplayer
Ezsoftbone
A simple kinetic simulator for Unity, you can use it to simulate hair/tail/breast/skirt and other soft objects
Stars: ✭ 241 (-69.14%)
Mutual labels:  unity, unity3d, unity-3d
Mapssdk Unity
This repository contains samples, documentation, and supporting scripts for Maps SDK, a Microsoft Garage project.
Stars: ✭ 307 (-60.69%)
Mutual labels:  unity, unity3d, unity-3d
Unity Fastpacedmultiplayer
Features a Networking Framework to be used on top of Unity Networking, in order to implement an Authoritative Server with Lag Compensation, Client-Side Prediction/Server Reconciliation and Entity Interpolation
Stars: ✭ 162 (-79.26%)
Mutual labels:  unity, multiplayer, networking
Ignorance
Ignorance utilizes the power of ENet to provide a reliable UDP networking transport for Mirror Networking.
Stars: ✭ 158 (-79.77%)
Mutual labels:  unity, unity3d, networking
Arenagame
A Unity First Person Shooter game made with Forge networking as an example project.
Stars: ✭ 190 (-75.67%)
Mutual labels:  unity, multiplayer, networking
Ecs
ECS for Unity with full game state automatic rollbacks
Stars: ✭ 151 (-80.67%)
Mutual labels:  unity, unity3d, networking
Holoshield
Highly customizable sci-fi shield / force field shader for Unity3D. Allows you to set edge power & color, inner texture scrolling, waviness, scale pulsation and procedural intensity noise. Implements tessellation for low-poly base meshes.
Stars: ✭ 401 (-48.66%)
Mutual labels:  unity, unity3d, unity-3d
Opencvforunity
OpenCV for Unity (Untiy Asset Plugin)
Stars: ✭ 359 (-54.03%)
Mutual labels:  unity, unity3d, unity-3d
Networker
A simple to use TCP and UDP networking library for .NET. Compatible with Unity.
Stars: ✭ 408 (-47.76%)
Mutual labels:  unity, unity3d, networking
Entitas Sync Framework
Networking framework for Entitas ECS. Targeted at turnbased games or other slow-paced genres.
Stars: ✭ 98 (-87.45%)
Mutual labels:  unity, multiplayer, networking
Unitylibrary
📚 Library of all kind of scripts, snippets & shaders for Unity
Stars: ✭ 1,968 (+151.98%)
Mutual labels:  unity, unity3d, unity-3d

GitHub Release NuGet Release Github All Releases

Forums Discord Build Status AppVeyor Tests

Licence Website Api

The Unity MLAPI (Mid level API) is a framework that simplifies building networked games in Unity. It offers low level access to core networking while at the same time providing high level abstractions. The MLAPI aims to remove the repetitive tasks and reduces the network code dramatically, no matter how many of the modular features you use.

Hold on, heard the news?

On March 16th, during the Unity GDC keynote, we announced that we'd be releasing a new experimental netcode package - and live documentation site - alongside the new TechStream release. Please give us a few days more to polish the details ;)

In the meantime, don't forget to save the date for BossRoom

Getting Started

To get started, check the Multiplayer Docs Site.

Community and Feedback

For general questions, networking advice or discussions about MLAPI, please join our Discord Community or create a post in the Unity Multiplayer Forum.

Compatibility

The MLAPI supports all major Unity platforms. To use the WebGL platform a custom WebGL transport based on web sockets is needed.

MLAPI is compatible with Unity 2019 and newer versions.

Development

We follow the Gitflow Workflow. The master branch contains our latest stable release version while the develop branch tracks our current work.

Contributing

The MLAPI is an open-source project and we encourage and welcome contributions. If you wish to contribute, be sure to review our contribution guidelines

Issues and missing features

If you have an issue, bug or feature request, please follow the information in our contribution guidelines to submit an issue.

Example

Here is a sample MonoBehaviour showing a chat script where everyone can write and read from. This shows the basis of the MLAPI and the abstractions it adds.

public class Chat : NetworkedBehaviour
{
    private NetworkedList<string> ChatMessages = new NetworkedList<string>(new MLAPI.NetworkedVar.NetworkedVarSettings()
    {
        ReadPermission = MLAPI.NetworkedVar.NetworkedVarPermission.Everyone,
        WritePermission = MLAPI.NetworkedVar.NetworkedVarPermission.Everyone,
        SendTickrate = 5
    }, new List<string>());

    private string textField = "";

    private void OnGUI()
    {
        if (IsClient)
        {
            textField = GUILayout.TextField(textField, GUILayout.Width(200));
            
            if (GUILayout.Button("Send") && !string.IsNullOrWhiteSpace(textField))
            {
                ChatMessages.Add(textField);
                textField = "";
            }

            for (int i = ChatMessages.Count - 1; i >= 0; i--)
            {
                GUILayout.Label(ChatMessages[i]);
            }
        }
    }
}

License

MIT License

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].