You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(node.Expression!=null&&node.Expression.ToString()=="nameof")// nameof is not a dedicated node and the Kind of the node isn't the nameof kind for whatever reason...
Copy file name to clipboardExpand all lines: Assets/UdonSharp/Scripts/UdonSharpAttributes.cs
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -89,5 +89,23 @@ public class RecursiveMethodAttribute : Attribute
89
89
publicRecursiveMethodAttribute()
90
90
{}
91
91
}
92
+
93
+
/// <summary>
94
+
/// Calls the target property's setter when the marked field is modified by network sync or SetProgramVariable().
95
+
/// Fields marked with this will instead have the target property's setter called. The setter is expected to set the field if you want the field to change.
0 commit comments