Skip to content

Commit

Permalink
v1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
linyuan.yang committed May 28, 2019
1 parent f0d7ef5 commit c549e56
Show file tree
Hide file tree
Showing 8 changed files with 528 additions and 183 deletions.
1 change: 1 addition & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### v1.0.11
*2019-04-19*
* 修复一个去反射函数调用的BUG
* 支持自动关联 c# delegate,省去 DelegateFactory 的设置

### v1.0.10
*2019-03-19*
Expand Down
350 changes: 261 additions & 89 deletions Scorpio/src/Userdata/ScriptUserdataDelegateType.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Scorpio/src/Util.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using System.Runtime.CompilerServices;
namespace Scorpio {
public static class Util {
private static readonly Type TYPE_VOID = typeof(void);
public static readonly Type TYPE_VOID = typeof(void);
private static readonly Type TYPE_OBJECT = typeof(object);
private static readonly Type TYPE_TYPE = typeof(Type);
private static readonly Type TYPE_DELEGATE = typeof(Delegate);
Expand Down
2 changes: 1 addition & 1 deletion Scorpio/src/Version.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Scorpio {
public static class Version {
public const string version = "1.0.11";
public const string date = "2019-04-19";
public const string date = "2019-05-28";
}
}
2 changes: 1 addition & 1 deletion ScorpioExec/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"profiles": {
"ScorpioExec": {
"commandName": "Project",
"commandLineArgs": "C:\\Users\\qingf\\Desktop\\a.out"
"commandLineArgs": "C:\\Users\\qingf\\Desktop\\a.sco"
},
"pack": {
"commandName": "Project",
Expand Down
350 changes: 261 additions & 89 deletions ScorpioTest/Assets/Scorpio/Userdata/ScriptUserdataDelegateType.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ScorpioTest/Assets/Scorpio/Util.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using System.Runtime.CompilerServices;
namespace Scorpio {
public static class Util {
private static readonly Type TYPE_VOID = typeof(void);
public static readonly Type TYPE_VOID = typeof(void);
private static readonly Type TYPE_OBJECT = typeof(object);
private static readonly Type TYPE_TYPE = typeof(Type);
private static readonly Type TYPE_DELEGATE = typeof(Delegate);
Expand Down
2 changes: 1 addition & 1 deletion ScorpioTest/Assets/Scorpio/Version.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Scorpio {
public static class Version {
public const string version = "1.0.11";
public const string date = "2019-04-19";
public const string date = "2019-05-28";
}
}

0 comments on commit c549e56

Please sign in to comment.