We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecdf6c7 commit 2bcc17bCopy full SHA for 2bcc17b
Assets/AltTester/Runtime/Commands/FindObject/SelectorConditionController.cs
@@ -161,7 +161,7 @@ private static GameObject matchConditionForFunction(FunctionCondition functionCo
161
if (comp == null) continue;
162
string shortTypeName = getComponentShortName(comp);
163
if (string.IsNullOrEmpty(shortTypeName)) continue;
164
- if (componentNameFromCondition.Contains(shortTypeName))
+ if (shortTypeName.Contains(componentNameFromCondition))
165
return gameObjectToCheck;
166
}
167
return null;
0 commit comments