Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zfoo-project/zfoo-sdk-csharp-lua-unity-godot
zfoo sdk of csharp and lua for unity and godot
https://github.com/zfoo-project/zfoo-sdk-csharp-lua-unity-godot
csharp godot godot-engine lua sdk unity zfoo
Last synced: about 2 months ago
JSON representation
zfoo sdk of csharp and lua for unity and godot
- Host: GitHub
- URL: https://github.com/zfoo-project/zfoo-sdk-csharp-lua-unity-godot
- Owner: zfoo-project
- Created: 2023-09-08T11:11:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-13T07:08:13.000Z (about 1 year ago)
- Last Synced: 2023-12-13T15:53:24.471Z (about 1 year ago)
- Topics: csharp, godot, godot-engine, lua, sdk, unity, zfoo
- Language: C#
- Homepage:
- Size: 4.33 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zfoo sdk of csharp and lua for unity and godot
zfoo sdk of csharp and lua for unity and godot
```
support C# in .net frameworksupport C# in unity C# Script
support C# in unity webgl
support zfoo lua in xlua
```# Start Server
- start server
in [TcpServerTest](https://github.com/zfoo-project/zfoo/blob/main/net/src/test/java/com/zfoo/net/core/tcp/server/TcpServerTest.java)# Start Client
- await usage in C#
```
var response = await tcpClient.asyncAsk(request) as TcpHelloResponse;
```- send packet in C#
```
tcpClient.Send(request)
```- async callback in lua
```
asyncAsk(request,
function(answer)
print("async ask callback --> ", answer)
end)
```- send packet in lua
```
send(request)
```