From 8b304f77b7b8efd7a03d51e5b2533631dc646094 Mon Sep 17 00:00:00 2001 From: David Briscoe Date: Fri, 23 Feb 2018 14:43:24 -0800 Subject: [PATCH] Add Unity project path to Unity example in docs For Ale to recognize the symbols in your project, you need to point it at where Unity builds your assemblies. Add this path to the example. --- doc/ale-cs.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/ale-cs.txt b/doc/ale-cs.txt index 237e848..3a02df6 100644 --- a/doc/ale-cs.txt +++ b/doc/ale-cs.txt @@ -94,6 +94,7 @@ g:ale_cs_mcsc_assemblies *g:ale_cs_mcsc_assemblies* " Compile C# programs with the Unity engine DLL file on Mac. let g:ale_cs_mcsc_assemblies = [ \ '/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll', + \ 'path-to-unityproject/obj/Debug', \] <