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
Updating the core components based on some bugs discovered during testing.
Updated the AttachableBehaviourTests to validate the different types of auto-detach flag combinations.
Fixed some spelling issues with "detatch" (not sure why I got into that habit)...corrected to "detach".
/// Flags to determine if the <see cref="AttachableBehaviour"/> will automatically detatch.
118
+
/// Flags to determine if the <see cref="AttachableBehaviour"/> will automatically detach.
116
119
/// </summary>
117
120
[Flags]
118
-
publicenumAutoDetatchTypes
121
+
publicenumAutoDetachTypes
119
122
{
120
123
/// <summary>
121
124
/// Disables auto detach.
122
125
/// </summary>
123
126
None,
124
127
/// <summary>
125
-
/// Detatch on ownership change.
128
+
/// Detach on ownership change.
126
129
/// </summary>
127
130
OnOwnershipChange,
128
131
/// <summary>
129
-
/// Detatch on despawn.
132
+
/// Detach on despawn.
130
133
/// </summary>
131
134
OnDespawn,
132
135
/// <summary>
133
-
/// Detatch on destroy.
136
+
/// Detach on destroy.
134
137
/// </summary>
135
138
OnAttachNodeDestroy,
136
139
}
137
140
138
141
/// <summary>
139
-
/// Determines if this <see cref="AttachableBehaviour"/> will automatically detatch on all instances if it has one of the <see cref="AutoDetatchTypes"/> flags.
142
+
/// Determines if this <see cref="AttachableBehaviour"/> will automatically detach on all instances if it has one of the <see cref="AutoDetachTypes"/> flags.
0 commit comments