Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

What game or library is using UniRx? #152

Open
neuecc opened this issue Jun 9, 2016 · 19 comments
Open

What game or library is using UniRx? #152

neuecc opened this issue Jun 9, 2016 · 19 comments

Comments

@neuecc
Copy link
Owner

neuecc commented Jun 9, 2016

Please comment it.
I'll list to ReadMe.
https://github.com/neuecc/UniRx/blob/master/README.md#what-game-or-library-is-using-unirx

@neuecc neuecc changed the title What game or framework is using UniRx? What game or library is using UniRx? Jun 9, 2016
@reinterpretcat
Copy link

I'm using it in my projects:

https://github.com/ActionStreetMap/demo (deprecated, but has more information in description)
https://github.com/reinterpretcat/utymap (new one, still in progress)

Many thanks to you for the project: it helped me to implement concurrency in the Unity apps in nice way.

@neuecc
Copy link
Owner Author

neuecc commented Jun 14, 2016

Thank you, I've added it.

@Skybladev2
Copy link
Contributor

@neuecc I found a game: https://twitter.com/dash_and_dot/status/765106758608191488

@shiwano
Copy link
Contributor

shiwano commented Oct 27, 2016

https://github.com/shiwano/submarine

I'm using UniRX in my project (but it's not be released yet 😅). I could learn convenience of reactive programming by UniRX, thank you so much.

@neuecc
Copy link
Owner Author

neuecc commented Oct 28, 2016

@shiwano Thank you, added!

@saynomoo
Copy link

We are using it in our both published games:

http://www.farmawaygame.com/
http://www.buildawaygame.com/

Thank you for such a nice library :)

@FodderMK
Copy link

We use it extensively in most of our games. The biggest two:

AdVenture Capitalist: http://hyperhippo.ca/games/adventure-capitalist/
AdVenture Communist: http://hyperhippo.ca/games/adventure-communist/

I also mentioned it in a talk I gave at GDC: https://youtu.be/j3YhG91mPsU?t=9m12s

@neuecc
Copy link
Owner Author

neuecc commented Dec 5, 2016

@saynomoo @FodderMK
Thank you and sorry for delay response.
I've added your great works!

@polats
Copy link

polats commented Jan 8, 2017

Hello! I used UniRx to recreate the Suggestion Box from @staltz's Reactive Programming tutorial, maybe other people will find it useful: https://github.com/polats/UniRxWhoToFollowExample

@grofit
Copy link

grofit commented Mar 15, 2017

Hey, you have one of my other libs on here EcsRx I have just done a simple 2-way binding system on top of unirx for unity BindingsRx, up to you if you want it added to the docs.

@neonaleon
Copy link

I am using UniRx for many UI, and some messaging between game systems.
You can check the game out at http://thegentlebros.com/catquest/

kimsama pushed a commit to kimsama/UniRx that referenced this issue Apr 21, 2017
@hbodev
Copy link

hbodev commented May 9, 2017

It seems that "Super Mario Run" (iOS) is using your library.

Go to "Options" -> "About this App" -> "Copyright" -> First library listed

@holycattle
Copy link

holycattle commented Aug 29, 2017

Hi! We're using UniRx for UI components as well as web API calls to an in-house web service that we're using to build a Steam game that's coming out on Early Access: https://store.steampowered.com/app/672630/Academia__School_Simulator/

@flycarl
Copy link

flycarl commented Nov 17, 2017

Hi! All the game logic and UI in our game use UniRx
http://store.steampowered.com/app/686110/Robot_Heroes/

One of a highlight of using UniRx is follow three line code I imply a logic of attack combo, very excite~
Public ReactiveProperty<int> effectAttack = new ReactiveProperty<int>(0);
var throttleStream = effectAttack.Throttle(System.TimeSpan.FromMilliseconds(ComboTime)).StartWith(0);
effectAttack.WithLatestFrom(throttleStream, (k, t) => k - t) .Subscribe(c => ShowCombo(c)) .AddTo(this);

@periodyctom
Copy link

Hello. I used UniRx to handle a lot of the Server call and UI update logic for Viveport VR: https://www.youtube.com/watch?v=PfBQGtdHH7c

@otri
Copy link

otri commented May 14, 2018

Conquer uses UniRX for coordinating all the UI and gameplay elements in PeriopSim VR Simulation.
https://conquerexperience.com/experienceplatform

@timmeh4242
Copy link

i use in at least a couple of projects:

AlphaECS - yet another Entity Component System framework for Unity that uses UniRx for fully reactive systems and includes support for dependency injection (we use Zenject). It's a fork of EcsRx and heavily inspired by uFrame. https://github.com/tbriley/AlphaECS

Mecanator - a simple set of tools that add visual scripting power to Mecanim. It uses UniRx for fully reactive state machines. Mecanator is currently in an early / experimental stage, so expect things to improve and also change and break from time to time. https://github.com/tbriley/mecanator

@liangxiegame
Copy link

liangxiegame commented Sep 11, 2018

We are using UniRx for include library. https://github.com/liangxiegame/QFramework
this is a RAD framework. The goal of QFramework is made fresh man develop game as fast as poisible.

And I am writing the chinese version of UniRx Tutorial.

@selfsx
Copy link

selfsx commented Oct 2, 2018

Using it (Forked) in our battle royale game (soon will be available world wide):
Trailer (RUS) - https://www.youtube.com/watch?v=CgZwvC-QP5Q
iOS - https://itunes.apple.com/by/app/the-last-stand-battle-royale/id1322440880?mt=8
Android - https://play.google.com/store/apps/details?id=com.xten.tls&hl=en

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests