We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ad10df commit 58e33d9Copy full SHA for 58e33d9
Assets/Scripts/PythonExample.cs
@@ -18,7 +18,7 @@ void Start ()
18
ICollection<string> searchPaths = engine.GetSearchPaths ();
19
20
#if UNITY_STANDALONE_WIN
21
- //Path to the folder of greeter.py
+ //Path to the folder of test.py
22
searchPaths.Add (Application.dataPath);
23
//Path to the Python standard library
24
searchPaths.Add (Application.dataPath + @"\StreamingAssets" + @"\Lib\");
@@ -31,7 +31,7 @@ void Start ()
31
randomNumber.text = "Random Number: " + test.random_number (1, 5);
32
#endif
33
#if UNITY_ANDROID
34
35
searchPaths.Add (Application.persistentDataPath);
36
37
searchPaths.Add (Application.persistentDataPath + @"\Lib\");
0 commit comments