1.在对应的文件def中添加方法类型与属性
例如:在accounts.def中加入属性playerName,与UserTest方法
<root>
<Properties>
<playerName>
<Type> UNICODE </Type>
<Flags> BASE </Flags>
<Persistent> true </Persistent>
<Index> UNIQUE </Index>
<Default> </Default>
</playerName>
</Properties>
<ClientMethods>
</ClientMethods>
<BaseMethods>
<UserTest>
<Exposed/>
</UserTest>
</BaseMethods>
<CellMethods>
</CellMethods>
</root>
声明后再对应的Accounts.py文件中加入方法
def UserTest(self):
print("call success!");
2.找到服务端目录中的Assets/gensdk.bat打开修改生成的目录位置
注:此处使用的是unity的客户端
3.执行gensdk之后就可以在客户端调用该方法与该属性