UniRx
Reactive Extensions for Unity (by neuecc)
Dynamic Data
Reactive collections based on Rx.Net (by reactivemarbles)
UniRx | Dynamic Data | |
---|---|---|
18 | 7 | |
6,882 | 1,795 | |
- | 0.9% | |
0.0 | 7.7 | |
about 1 year ago | 7 days ago | |
C# | C# | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
UniRx
Posts with mentions or reviews of UniRx.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-09-20.
-
R3 alternatives - Rx.NET, UniRx, and ReactiveUI
4 projects | 20 Sep 2024
-
Creating safe and fast multiplayer in games on Unity and NodeJS with examples
To get a reactive properties functional you can use UniRx.
-
Just discovered singletons and so many issues have fallen away
Personally I use UniRx, but there's plenty of flavours of event systems to dig into.
-
Recommend Paradigms / Design Patterns for Controller-Driven Menus?
What paradigms & design patterns that those of you whom have more experience than I recommend? I've been advised to use things Dependency Injection (Extenject) and/or Reactive programming (UniRx), but that came from someone whose background isn't Unity. I would like to do this right the first time and make the code as maintainable as possible; we will be using it again in the future.
-
Event System for Unity (free asset)
This is pretty cool. I wrote something similar for a narrower problem space: RolePlay Attributes. UniRx’s Reactive Properties feel like the total package but with a conceptual and dependency overhead.
-
I'm making this turn-based auto battler called Order Automatica. I decided to try using event driven architecture using async/await and UniTask and it made it so easy! I'd love any game design feedback people are willing to give. Link to demo in comments
Interesting, I hadn't heard of UniTask. I use UniRX in my projects which I think solves similar problems in a bit of a different way.
- Looking for guidance on separating game logic from game objects.
-
What's the best way to effectively code in aesthetic features?
Sure, knowing the patterns and instead of using first order language features, you may get your own implementation of "observer" or something alike. But if you see your system becomes "event-heavy" it's maybe time to think about getting already complete solution: https://github.com/neuecc/UniRx // how to MV(R)P
-
Why is learning Unity so difficult for me?
The reason I'm leading things in this direction is because I highly recommend picking up UniRx. It brings reactive programming into your game development workflow and will completely change the way you look at development.
- Is anyone else using reactive programming in Unity?
Dynamic Data
Posts with mentions or reviews of Dynamic Data.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-04-30.
-
Understanding DynamicData in .NET: Reactive Data Management Made Easy
In the realm of .NET development, managing collections and their changes can be a challenging task, especially in applications with complex data flows and user interfaces. This is where DynamicData, a library in the .NET ecosystem, comes into play. It simplifies reactive data management, making it easier for developers to handle complex data operations with ease. This article aims to provide a comprehensive understanding of DynamicData, its core concepts, and practical applications.
-
System.Reactive v6.0.0-preview.1 available on NuGet
Personally I learned to use rx and observables by starting to use ReactiveUI combined with DynamicData for my WPF app MVVM architecture. It was maybe not to best choice out there, but I learned to work with it and some things it allows to do is awesome.
-
Property change on multiple objs?
With DynamicData you can use a ObservableCollectionExtended for your list and call .ToObservableChangeSet().WhenAnyPropertyChanged().Subscribe(t => { code to execute });
-
A better way to work with state properties in MVVM
reminds a lot of https://github.com/reactivemarbles/DynamicData
-
Beginner MVVM + Reactive Question (C# + UniRx)
If you're trying to use reactive with MVVM, you might have a look at ReactiveUI, an MVVM toolkit designed to work with reactive extensions. Specifically in this case, you could leverage DynamicData (RXUI's preferred method of handling collections), which lets you trigger updates based on change notification from child items, among other things. I'm still relatively new to RXUI myself, but if you have any questions I can certainly try to help a bit more.
-
LINQ - Selecting from a collection where a collection property contains or does not contain a value
Right and I never said they did. I said replace the observablecollection with an iobservable if you want it to be observable. You can then use https://github.com/reactivemarbles/DynamicData to get yourself an observablecollection. I'm not arguing that observablecollection + linq would result in an observablecollection. Just pointing out that there is a solution for this.
What are some alternatives?
When comparing UniRx and Dynamic Data you can also consider the following projects:
Enjin-Unity-sample - Enjin blockchain tutorial sample project for Unity developer
Rx.NET - The Reactive Extensions for .NET
ReactiveProperty - ReactiveProperty provides MVVM and asynchronous support features under Reactive Extensions. Target frameworks are .NET 6+, .NET Framework 4.7.2 and .NET Standard 2.0.
elsa-core - A .NET workflows library
ObservableComputations - Cross-platform .NET library for computations whose arguments and results are objects that implement INotifyPropertyChanged and INotifyCollectionChanged (ObservableCollection) interfaces.