Skip to content

Commit

Permalink
调用接口修改
Browse files Browse the repository at this point in the history
D.error-->>Debug.LogError
  • Loading branch information
jinqi166 authored and liiir1985 committed Dec 26, 2018
1 parent 1489079 commit 1e8d11f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/src/v1/guide/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ IEnumerator LoadILRuntime()
while (!www.isDone)
yield return null;
if (!string.IsNullOrEmpty(www.error))
D.error(www.error);
Debug.LogError(www.error);
byte[] dll = www.bytes;
www.Dispose();
#if UNITY_ANDROID
Expand All @@ -81,7 +81,7 @@ IEnumerator LoadILRuntime()
while (!www.isDone)
yield return null;
if (!string.IsNullOrEmpty(www.error))
D.error(www.error);
Debug.LogError(www.error);
byte[] pdb = www.bytes;
using (System.IO.MemoryStream fs = new MemoryStream(dll))
{
Expand Down Expand Up @@ -119,4 +119,4 @@ ILRuntime提供了一个支持Visual Studio2015和Visual Studio 2017的调试插

**注意事项:**

- 如果使用VS2015的话需要`Visual Studio 2015 Update3`以上版本
- 如果使用VS2015的话需要`Visual Studio 2015 Update3`以上版本

0 comments on commit 1e8d11f

Please sign in to comment.