Skip to content

Commit 58e33d9

Browse files
committed
corrections
1 parent 3ad10df commit 58e33d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/Scripts/PythonExample.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ void Start ()
1818
ICollection<string> searchPaths = engine.GetSearchPaths ();
1919

2020
#if UNITY_STANDALONE_WIN
21-
//Path to the folder of greeter.py
21+
//Path to the folder of test.py
2222
searchPaths.Add (Application.dataPath);
2323
//Path to the Python standard library
2424
searchPaths.Add (Application.dataPath + @"\StreamingAssets" + @"\Lib\");
@@ -31,7 +31,7 @@ void Start ()
3131
randomNumber.text = "Random Number: " + test.random_number (1, 5);
3232
#endif
3333
#if UNITY_ANDROID
34-
//Path to the folder of greeter.py
34+
//Path to the folder of test.py
3535
searchPaths.Add (Application.persistentDataPath);
3636
//Path to the Python standard library
3737
searchPaths.Add (Application.persistentDataPath + @"\Lib\");

0 commit comments

Comments
 (0)