-
-
Notifications
You must be signed in to change notification settings - Fork 12
Breaking Changes
ialex32x edited this page Feb 20, 2025
·
2 revisions
-
Worker
(in global context) is now moved into the modulegodot.worker
, and renamed toJSWorker
Note
Regenerating .d.ts
files in your project will help you a lot to fix most errors caused by the broken changes below.
Old annotations still work temporarily in this version, please update your codes before the next version.
- All annotations are moved into
godot.annotations
module (fromjsb.core
). -
GLOBAL_GET
andEDITOR_GET
are moved intogodot
module (fromjsb.core
). -
callable()
is removed fromjsb.core
, useCallable.create
ingodot
module instead. -
to_array_buffer()
is removed fromjsb.core
, usePackedByteArray.to_array_buffer()
instead. -
$wait
is removed fromjsb.core
, useSignal<..., R>.as_promise()
instead.
-
Scripting
-
Utilities
-
Experimental Features
-
Advanced
-
Misc