git404hub

what is unirx fr?

neuecc/unirx — explained in plain English

Analysis updated 2026-06-24

7,323C#Audience · developerComplexity · 3/5Setup · easy

tl;dr

UniRx is a Unity library that replaces messy coroutine code with clean, stream-based event handling, letting game developers filter, combine, and react to inputs, network calls, and frame updates in a readable query style.

vibe map

mindmap
  root((repo))
    What It Does
      Event streams
      Async handling
      Replaces coroutines
    Stream Operations
      Filter events
      Combine streams
      Delay and debounce
    Platforms
      PC and Mac
      Android and iOS
      WebGL support
    Status
      Superseded by R3
      UniTask companion

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Replace tangled Unity coroutines with readable reactive streams that can return values and catch errors

VIBE 2

Handle button clicks, frame updates, and sensor input as composable event streams in a Unity game

VIBE 3

Detect complex input patterns like double-clicks by composing timing checks over click event streams

VIBE 4

Manage parallel network requests with cancellation and progress tracking in a mobile Unity project

what's the stack?

C#Unity.NET

how it stacks up fr

neuecc/unirxricosuter/nswagmob-sakai/uieffect
Stars7,3237,3297,302
LanguageC#C#C#
Setup difficultyeasymoderatemoderate
Complexity3/53/52/5
Audiencedeveloperdeveloperdeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · easy time til it works · 30min

Author now recommends the successor library Cysharp/R3 for new projects, UniRx is in maintenance mode.

in plain english

UniRx is a library for Unity game developers that makes it easier to write code that responds to events and handles asynchronous operations. Unity's built-in approach to asynchronous work uses a mechanism called coroutines, but coroutines have real limitations: they cannot return values and cannot handle exceptions, which tends to produce tangled, hard-to-maintain code. UniRx provides a different approach based on Reactive Extensions (Rx), a programming pattern originally from the .NET world. The core idea is to treat events as streams that you can filter, combine, delay, and transform using a query style that looks similar to database queries. In practice, this means things like button clicks, game loop updates (every frame), sensor input from devices like Kinect or VR controllers, and network responses can all be treated as observable event streams. You write rules about how those streams should behave, and the library handles the details. For example, detecting a double-click means watching a stream of click events and checking whether two arrive within 250 milliseconds. The library also makes network requests cancellable, supports running multiple requests in parallel, and includes progress tracking. UniRx supports PC, Mac, Android, iOS, WebGL, and Windows Store. It was written to work around Unity-specific platform issues, particularly compatibility problems with iOS's IL2CPP compilation mode that the official .NET Rx library did not handle. The library is free and was available through the Unity Asset Store. The README opens with an important note: the author now distributes an evolved successor called Cysharp/R3 and recommends using that instead of UniRx. Async/await integration was also separated into a companion project called UniTask after version 7.0. The full README is longer than what was shown.

prompts (copy fr)

prompt 1
Using UniRx in Unity, show me how to detect a double-click on a UI button where two clicks arrive within 250 milliseconds
prompt 2
I have multiple HTTP requests in a Unity game. Show me how to run them in parallel with UniRx and combine their results once all finish
prompt 3
Using UniRx, how do I debounce a Unity search input field so the search only fires after the user stops typing for half a second?
prompt 4
Convert this Unity coroutine that downloads a file and updates a progress bar into a UniRx observable stream
prompt 5
Show me how to combine keyboard input and mouse position into a single observable stream in Unity using UniRx

Frequently asked questions

what is unirx fr?

UniRx is a Unity library that replaces messy coroutine code with clean, stream-based event handling, letting game developers filter, combine, and react to inputs, network calls, and frame updates in a readable query style.

What language is unirx written in?

Mainly C#. The stack also includes C#, Unity, .NET.

How hard is unirx to set up?

Setup difficulty is rated easy, with roughly 30min to a first successful run.

Who is unirx for?

Mainly developer.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.