Skip to content

Commit 7c9078d

Browse files
committed
up
1 parent dce66bd commit 7c9078d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Assets/Plugins/kbengine_unity3d_plugins/EntityCall.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public void sendCall(Bundle inbundle)
7777
bundle = null;
7878
}
7979

80-
public Bundle newCall(string methodName, UInt16 EntitycomponentPropertyID = 0)
80+
public Bundle newCall(string methodName, UInt16 entitycomponentPropertyID = 0)
8181
{
8282
if(KBEngineApp.app.currserver == "loginapp")
8383
{
@@ -107,7 +107,7 @@ public Bundle newCall(string methodName, UInt16 EntitycomponentPropertyID = 0)
107107

108108
newCall();
109109

110-
bundle.writeUint16(EntitycomponentPropertyID);
110+
bundle.writeUint16(entitycomponentPropertyID);
111111
bundle.writeUint16(methodID);
112112
return bundle;
113113
}

Assets/Plugins/kbengine_unity3d_plugins/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Usage
2121
<Gate hasClient="true"></Gate>
2222
<Space/>
2323

24-
public class Account : KBEngine.Entity
24+
public class Account : AccountBase
2525
{
2626
// entity initialization
2727
public override void __init__()
@@ -33,6 +33,8 @@ Usage
3333
Account.cs: baseEntityCall.reqAvatarList();
3434
Avatar.cs: cellEntityCall.relive(reliveType);
3535

36+
Reference: https://github.com/kbengine/kbengine/issues/532
37+
3638
4: Monitor KBE-plugins event
3739
For example:
3840
public class UI : MonoBehaviour

0 commit comments

Comments
 (0)