Skip to content

Commit

Permalink
Little explanation improved
Browse files Browse the repository at this point in the history
  • Loading branch information
z3nth10n committed Jun 29, 2017
1 parent a9138c7 commit b039931
Show file tree
Hide file tree
Showing 15 changed files with 2 additions and 2 deletions.
Binary file modified Assemblies/Lerp2API.dll
Binary file not shown.
Binary file modified Assemblies/Lerp2APIEditor.dll
Binary file not shown.
Binary file modified Build/Console/Lerp2Console.exe
Binary file not shown.
Binary file modified Build/Console/Lerp2Console.pdb
Binary file not shown.
Binary file modified Build/Editor/Lerp2APIEditor.dll
Binary file not shown.
Binary file modified Build/Editor/Lerp2APIEditor.pdb
Binary file not shown.
Binary file modified Build/Lerp2API.dll
Binary file not shown.
Binary file modified Build/Lerp2API.pdb
Binary file not shown.
4 changes: 2 additions & 2 deletions Project/Hepers/Unity Extensions/Utils/AppReflection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ private static object GetField(this object inObj, string fieldName, bool fromPro
return inObj.GetType().GetProperty(fieldName).GetValue(inObj, null);
else
{
Debug.LogError("Trying to search the desired value as a property also didn't worked. You haven't declared any variable with this name.");
Debug.LogErrorFormat("Trying to search '{0}' as a property also didn't worked. You haven't declared any variable with this name.", fieldName);
return null;
}
}
Expand Down Expand Up @@ -91,7 +91,7 @@ private static object GetProp(this object inObj, string propName, bool fromField
return inObj.GetType().GetField(propName).GetValue(inObj);
else
{
Debug.LogError("Trying to search the desired value as a field also didn't worked. You haven't declared any variable with this name.");
Debug.LogErrorFormat("Trying to search '{0}' as a field also didn't worked. You haven't declared any variable with this name.", propName);
return null;
}
}
Expand Down
Binary file not shown.
Binary file modified Project/Lerp2Console/obj/Debug/Lerp2Console.exe
Binary file not shown.
Binary file modified Project/Lerp2Console/obj/Debug/Lerp2Console.pdb
Binary file not shown.
Binary file not shown.
Binary file modified Project/Lerp2Raw/obj/Debug/Lerp2Raw.dll
Binary file not shown.
Binary file modified Project/Lerp2Raw/obj/Debug/Lerp2Raw.pdb
Binary file not shown.

0 comments on commit b039931

Please sign in to comment.