We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39027a0 commit 1ced2acCopy full SHA for 1ced2ac
ReactiveProperty.cs
@@ -1,15 +1,23 @@
1
+// ********************************************************************
2
+//
3
+// Copyright (c) RimuruDev
4
+// Contact information:
5
+// Email: rimuru.dev@gmail.com
6
+// GitHub: https://github.com/RimuruDev
7
+// LinkedIn: https://www.linkedin.com/in/rimuru/
8
9
10
+
11
using System;
12
using UnityEngine;
13
14
namespace RimuruDev
15
{
16
[Serializable]
17
+ [HelpURL("https://github.com/RimuruDev/Unity-ReactiveProperty-Helper.git")]
18
public class ReactiveProperty<T>
19
-#if UNITY_EDITOR
- [SerializeField]
-#endif
- private T value;
20
+ [SerializeField] private T value;
21
22
[NonSerialized] private Action<T> onChanged;
23
0 commit comments