Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Godot4 (GDScript2) Support #95

Closed
wants to merge 33 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c1b1339
Update reference name -> RefCounted
elgansayer Mar 18, 2022
0c97747
* Update Reference name -> RefCounted
elgansayer Mar 18, 2022
b236a69
Swap setget _> property
elgansayer Mar 18, 2022
cdb9140
Upgrade setgets to properties
elgansayer Mar 18, 2022
03705d9
Update TYPE_REAL -> Type_FLOAT
elgansayer Mar 18, 2022
ecf7a2a
Update Pool arrays to packed
elgansayer Mar 18, 2022
1b1fe02
Update tool -> @tool for gdscript2
elgansayer Mar 18, 2022
59d6c72
user super where possible
elgansayer Mar 18, 2022
8ffe9be
Repalce . with super
elgansayer Mar 18, 2022
e7ee928
Replace . with super
elgansayer Mar 18, 2022
5fb1e57
Replafce. with super1
elgansayer Mar 18, 2022
c177a73
Update setgets to properties
elgansayer Mar 18, 2022
f76a4c5
Update connect calls
elgansayer Mar 18, 2022
2fb380c
* Fix const causing broken compilation
elgansayer Mar 18, 2022
ccdcde0
Fix coroutine calls
elgansayer Mar 18, 2022
0343c14
Fix PoolByteArray to PackedByteArray
elgansayer Mar 18, 2022
47061c2
Update coroutie calls
elgansayer Mar 18, 2022
5640dbb
Call escape_http with str
elgansayer Mar 18, 2022
de7c8ef
There is no bool constructor. So just use str
elgansayer Mar 18, 2022
589fff4
Update _refresh_session coroutines. Call the coroutine _refresh_sessi…
elgansayer Mar 18, 2022
21f4444
Switch to var _SCHEMA as dbstrict 2 is not accepting const
elgansayer Mar 18, 2022
c3c812c
Replace validate json with new json class
elgansayer Mar 18, 2022
53130d9
* Update properties
elgansayer Mar 18, 2022
efe8ffb
Replace yields with await
elgansayer Mar 18, 2022
0cc64e4
* Replace reference with RefCounted
elgansayer Mar 18, 2022
da9ff53
Change const with var, gdscript2 is failing to assign a const
elgansayer Mar 18, 2022
14ad2aa
Swap to using JSON.new
elgansayer Mar 18, 2022
d669908
Fix json result no longer existing
elgansayer Mar 18, 2022
038cced
Update properties. Fix wrong param name
elgansayer Mar 18, 2022
93ed2a2
SwitchTYPE_INT to packed
elgansayer Mar 18, 2022
7b70d89
* Swap const to var as type support is missing
elgansayer Mar 18, 2022
d0e11e6
Replace yield. We need a new design
elgansayer Mar 18, 2022
36b131f
Switch to await conn
elgansayer Apr 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/com.heroiclabs.nakama/Nakama.gd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tool
@tool
extends Node

# The default host address of the server.
Expand Down
Loading