Tag: nlog
-

Validating Custom Logging in Unity
Unity has a few builtin methods to validate assertions in the UnityEngine.TestTools namespace, you can validate the message as well as the log level. Here are a couple of examples One gotcha I have found with these is that if the test completes before the log is triggered, unity log assertions will not wait implicitly…
-

Unity with Native Android Calls
As I work on a toy project in unity I have came across the challenge of integrating it with android. My project is targetting android, however it doesn’t really need to use any android features so my goal was to bypass JNI and go straight to the native system as much as possible. My inital…