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
Copy file name to clipboardExpand all lines: RuntimeUnityEditor.Core/Windows/ChangeHistory/Change.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ public static IChange MemberAssignment<TObj, TVal>(TObj target, TVal newValue, M
74
74
/// </summary>
75
75
/// <typeparam name="TObj">Type of the object that has its member(s) modified</typeparam>
76
76
/// <typeparam name="TVal">Type of the value to be changed</typeparam>
77
-
/// <param name="actionNameFormat">String format of how this change is represented in the Change History window. {0} inserts type name of <see cref="TObj"/>, while {1} inserts <paramref name="newValue"/> (format string can be used, e.g. {1:00})</param>
77
+
/// <param name="actionNameFormat">String format of how this change is represented in the Change History window. {0} inserts type name of <typeparamref name="TObj"/>, while {1} inserts <paramref name="newValue"/> (format string can be used, e.g. {1:00})</param>
78
78
/// <param name="target">Object that has its member(s) modified</param>
79
79
/// <param name="newValue">New value to be set</param>
80
80
/// <param name="set">Action used to set the new value</param>
/// Assigns a new value by using the set delegate and tracks the change in the Change History window.
93
93
/// Undo is possible by providing an undo value, by using a custom action, or by using the get delegate to automatically get the original value.
94
-
/// If none of the undo options are provided, undoing the change will set it to the default value of <see cref="TVal"/>.
94
+
/// If none of the undo options are provided, undoing the change will set it to the default value of <typeparamref name="TVal"/>.
95
95
/// </summary>
96
96
/// <typeparam name="TObj">Type of the object that has its member(s) modified</typeparam>
97
97
/// <typeparam name="TVal">Type of the value to be changed</typeparam>
98
-
/// <param name="actionNameFormat">String format of how this change is represented in the Change History window. {0} inserts type name of <see cref="TObj"/>, while {1} inserts <paramref name="newValue"/> (format strings can be used, e.g. {0:00.0})</param>
98
+
/// <param name="actionNameFormat">String format of how this change is represented in the Change History window. {0} inserts type name of <typeparamref name="TObj"/>, while {1} inserts <paramref name="newValue"/> (format strings can be used, e.g. {0:00.0})</param>
99
99
/// <param name="target">Object that has its member(s) modified</param>
100
100
/// <param name="newValue">New value to be set</param>
101
101
/// <param name="set">Action used to set the new value</param>
/// Do an action and track it in the Change History window. Optionally undoable.
138
138
/// </summary>
139
139
/// <typeparam name="TObj">Type of the object that the action uses</typeparam>
140
-
/// <param name="actionNameFormat">String format of how this change is represented in the Change History window. {0} inserts type name of <see cref="TObj"/> (format strings can be used, e.g. {0:00.0})</param>
140
+
/// <param name="actionNameFormat">String format of how this change is represented in the Change History window. {0} inserts type name of <typeparamref name="TObj"/> (format strings can be used, e.g. {0:00.0})</param>
141
141
/// <param name="target">Object that has its member(s) modified</param>
142
142
/// <param name="action">Action invoked on the target object</param>
143
143
/// <param name="undoAction">Action invoked on the target object to undo the change</param>
0 commit comments