This repository was archived by the owner on Feb 16, 2024. It is now read-only.

Description
For example, if the following code is written to Value in the same script in the same frame, the events will be executed in the same order.
However, if written from another class as public from another script, the order does not seem to be guaranteed.
public readonly IntReactiveProperty reactiveProperty = new();
reactiveProperty
.Subscribe(value => Debug.Log(value + " "));
reactiveProperty.Value = 1;
reactiveProperty.Value = 2;
reactiveProperty.Value = 3;