Skip to content

Commit

Permalink
fix for old unity
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerTemp committed Jan 2, 2025
1 parent cd835c2 commit 15b85a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/AutoRunner/AutoRunnerWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private IEnumerator RunAutoRunners()
continue;
}
MemberInfo memberInfo = info.fieldOrProp.IsField
? info.fieldOrProp.FieldInfo
? (MemberInfo)info.fieldOrProp.FieldInfo
: info.fieldOrProp.PropertyInfo;
PropertyAttribute[] attributes = memberInfo.GetCustomAttributes()
.OfType<PropertyAttribute>()
Expand Down

0 comments on commit 15b85a6

Please sign in to comment.