-
-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SerializedReactiveProperties Odin Inspector support #257
Comments
thanks, I'll check it. |
I've tested at Unity 6000.0.20f1 and Odin 3.3.1.8, maybe it works. |
using R3;
using Sirenix.OdinInspector;
using UnityEngine;
class Test {
[SerializeField] private SerializableReactiveProperty<int> reactiveProperty;
}
public class SerializableReactivePropertyOdinError : SerializedMonoBehaviour {
[SerializeField] private Test test;
} I tested again and found that it only throws an error when a SerializableReactiveProperty is nested inside a class |
thanks, I'll check it again. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for developing this amazing framework.
Currently, when using SerializedReactiveProperties with Odin inspector, there is an error when changing their values in the inspector.
R3/src/R3.Unity/Assets/R3.Unity/Runtime/SerializableReactiveProperty.cs
Line 70 in 2eaf201
Similar issues was found in UniRx here:
neuecc/UniRx#531
neuecc/UniRx#452
Unlike the issues in UniRx, fieldInfo is null in R3
The text was updated successfully, but these errors were encountered: