upgrading_to_godot_4.rst 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  1. .. _doc_upgrading_to_godot_4:
  2. Upgrading from Godot 3 to Godot 4
  3. =================================
  4. Should I upgrade to Godot 4?
  5. ----------------------------
  6. Before beginning the upgrade process, it's worth thinking about the advantages
  7. and disadvantages that upgrading would bring to your project.
  8. Advantages of upgrading
  9. ^^^^^^^^^^^^^^^^^^^^^^^
  10. Along with the
  11. `new features present in 4.0 <https://github.com/godotengine/godot/blob/master/CHANGELOG.md>`__,
  12. upgrading gives the following advantages:
  13. - Many bugs are fixed in 4.0, but cannot be resolved in 3.x for various reasons
  14. (such as graphics API differences or backwards compatibility).
  15. - 4.x will enjoy a longer :ref:`support period <doc_release_policy>`. Godot 3.x
  16. will continue to be supported for some time after 4.0 is released, but it will
  17. eventually stop receiving support.
  18. See :ref:`doc_docs_changelog` for a list of pages documenting new features in Godot 4.0.
  19. Disadvantages of upgrading
  20. ^^^^^^^^^^^^^^^^^^^^^^^^^^
  21. If you don't *need* any features present in Godot 4.0, you may want to stay on
  22. Godot 3.x for the following reasons:
  23. - `Godot 3.x is tried and true, while Godot 4 remains in its early stages. <https://godotengine.org/article/release-management-4-0-and-beyond>`__
  24. - Godot 4.0 is expected to contain workflow and performance issues that Godot
  25. 3.x doesn't have. These issues will be ironed out over time in future
  26. Godot 4.x releases.
  27. - Godot 4 has fewer third-party tutorials available compared to Godot 3.x.
  28. If you're new to game engines, you may have a better experience using Godot 3.x
  29. as a result.
  30. - Godot 4's baseline hardware requirements (such as memory usage) are slightly
  31. higher, both for the editor and exported projects. This was required for the
  32. implementation of some core optimizations.
  33. - Since Godot 4 includes more features than Godot 3, Godot 4's binary size for
  34. exported projects is larger. While this can be mitigated by
  35. :ref:`optimizing a build for size <doc_optimizing_for_size>`, a 4.0 build with
  36. a given set of enabled modules will remain larger compared to a 3.x build with
  37. the same modules. This can be an issue for
  38. :ref:`exporting to the Web <doc_exporting_for_web>`, as binary size directly
  39. influences how fast the engine can initialize (regardless of download speed).
  40. - Godot 4 does not and will not have support for GLES2 rendering.
  41. (There is still support for GLES3 rendering using the new OpenGL backend,
  42. which means that devices without Vulkan support can still run Godot 4.)
  43. - If you are targeting **very** old hardware such as Intel Sandy Bridge (2nd
  44. generation) integrated graphics, this will prevent the project from running
  45. on such hardware after upgrading.
  46. `Software OpenGL implementations <https://github.com/pal1000/mesa-dist-win>`__
  47. can be used to bypass this limitation, but they're too slow for gaming.
  48. Caveats of upgrading
  49. ^^^^^^^^^^^^^^^^^^^^
  50. **Since Godot 4 is a complete rewrite in many aspects, some features have
  51. unfortunately been lost in the process.** Some of these features may be restored
  52. in future Godot releases:
  53. - Bullet physics was removed in favor of GodotPhysics. This only affects 3D
  54. projects that used the default physics engine (which was Bullet) and didn't
  55. manually change it to GodotPhysics. There are no plans to re-add Bullet physics
  56. in core, but a third-party add-on could be created for it thanks to
  57. GDExtension.
  58. - Rendering in 2D is no longer performed in HDR, which means "overbright"
  59. modulate values have no visible effect. This is planned to be restored at some
  60. point in the future.
  61. - While rendering still happens in HDR in 3D when using the Forward Plus or
  62. Forward Mobile backends, Viewports cannot return HDR data anymore. This is
  63. planned to be restored at some point in the future.
  64. - Mono was replaced by .NET 6. This means exporting C# projects to Android, iOS
  65. and HTML5 is no longer supported for now. Exporting C# projects to desktop
  66. platforms is still supported, and as of 4.2 there's experimental support for
  67. exporting to mobile platforms. Support for exporting C# projects to more
  68. platforms will be restored in future 4.x releases as upstream support
  69. improves.
  70. You can find a more complete list of functional regressions by searching for
  71. `issues labeled "regression" but not "bug" on GitHub <https://github.com/godotengine/godot/issues?q=is%3Aissue+is%3Aopen+label%3Aregression+-label%3Abug>`__.
  72. Preparing before the upgrade (optional)
  73. ---------------------------------------
  74. If you want to be ready to upgrade to Godot 4 in the future, consider using
  75. :ref:`class_Tweener` and the :ref:`class_Time` singleton in your project. These
  76. classes are both available in Godot 3.5 and later.
  77. This way, you won't be relying on the deprecated Tween node and OS time
  78. functions, both of which are removed in Godot 4.0.
  79. It's also a good idea to rename external shaders so that their extension is
  80. ``.gdshader`` instead of ``.shader``. Godot 3.x supports both extensions, but
  81. only ``.gdshader`` is supported in Godot 4.0.
  82. Running the project upgrade tool
  83. --------------------------------
  84. .. warning::
  85. **Make a full backup of your project** before upgrading! The project upgrade
  86. tool will *not* perform any backups of the project that is being upgraded.
  87. You can backup a project by using version control, or by copying the project
  88. folder to another location.
  89. Using the Project Manager
  90. ^^^^^^^^^^^^^^^^^^^^^^^^^
  91. To use the project upgrade tool:
  92. 1. Open the Godot 4 Project Manager.
  93. 2. Import the Godot 3.x project using the **Import** button, or use the **Scan**
  94. button to find the project within a folder.
  95. 3. Double-click the imported project (or select the project then choose **Edit**).
  96. 4. You will see a dialog appearing with two options: **Convert project.godot
  97. Only** and **Convert Full Project**. After ensuring your project is backed up
  98. (see the above warning), choose **Convert Full Project**. **Convert
  99. project.godot Only** is intended to be used for advanced use cases *only*, in
  100. case the conversion tool fails.
  101. 5. Wait until the project conversion process finishes. This can take up to a few
  102. minutes for large projects with lots of scenes.
  103. 6. When the Project Manager interface becomes available again, double-click the
  104. project (or select the project then choose **Edit**) to open it in the
  105. editor.
  106. If you hit conversion issues due to some project files being too large or long,
  107. you can use the command line to upgrade the project (see below). This will allow
  108. you to override the converter's size limits.
  109. Using the command line
  110. ^^^^^^^^^^^^^^^^^^^^^^
  111. To use the project upgrade tool from the :ref:`command line <doc_command_line_tutorial>`,
  112. it's recommended to validate the project conversion by running the Godot editor binary with the following arguments:
  113. ::
  114. # [<max_file_kb>] [<max_line_size>] are optional arguments.
  115. # Remove them if you aren't changing their values.
  116. path/to/godot.binary --path /path/to/project/folder --validate-conversion-3to4 [<max_file_kb>] [<max_line_size>]
  117. If the list of planned upgrades looks good to you, run the following command on
  118. the Godot editor binary to upgrade project files:
  119. ::
  120. # [<max_file_kb>] [<max_line_size>] are optional arguments.
  121. # Remove them if you aren't changing their values.
  122. path/to/godot.binary --path /path/to/project/folder --convert-3to4 [<max_file_kb>] [<max_line_size>]
  123. ``[<max_file_kb>]`` and ``[<max_line_size>]`` are *optional* arguments to specify
  124. the maximum size of files to be converted (in kilobytes and lines). The default
  125. limits are 4 MB and 100,000 lines respectively. If a file hits either of those
  126. limits, it will not be upgraded by the project converter. This is useful to
  127. prevent large resources from slowing down the upgrade to a crawl.
  128. If you still want large files to be converted by the project upgrade tool,
  129. increase the size limits when running the project upgrade tool. For example,
  130. running the Godot editor binary with those arguments increases both limits by a
  131. 10× factor:
  132. ::
  133. path/to/godot.binary --path /path/to/project/folder --convert-3to4 40000 1000000
  134. .. note::
  135. Only Godot 3.0 and later projects can be upgraded using the project
  136. conversion tool found in the Godot 4 editor.
  137. It's recommended to ensure that your project is up-to-date with the latest
  138. 3.x stable release before running the project upgrade tool.
  139. Fixing the project after running the project upgrade tool
  140. ---------------------------------------------------------
  141. After upgrading the project, you may notice that certain things don't look as
  142. they should. Scripts will likely contain various errors as well (possibly
  143. hundreds in large projects). This is because the project upgrade tool cannot
  144. cater to all situations. Therefore, a large part of the upgrade process remains
  145. manual.
  146. Automatically renamed nodes and resources
  147. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  148. The list below refers to nodes which were simply renamed for consistency or
  149. clarity in Godot 4.0. The project upgrade tool renames them automatically in
  150. your scripts.
  151. One noteworthy set of renames is 3D nodes, which all got a ``3D`` suffix added for
  152. consistency with their 2D counterparts. For example, ``Area`` is now ``Area3D``.
  153. For ease of searching, this table lists all nodes and resources that were renamed
  154. and are automatically converted, excluding the ones which only involved adding
  155. a ``3D`` suffix to the old name:
  156. +-----------------------------------------+-------------------------------------------+
  157. | Old name (Godot 3.x) | New name (Godot 4) |
  158. +=========================================+===========================================+
  159. | AnimatedSprite | AnimatedSprite2D |
  160. +-----------------------------------------+-------------------------------------------+
  161. | ARVRCamera | XRCamera3D |
  162. +-----------------------------------------+-------------------------------------------+
  163. | ARVRController | XRController3D |
  164. +-----------------------------------------+-------------------------------------------+
  165. | ARVRAnchor | XRAnchor3D |
  166. +-----------------------------------------+-------------------------------------------+
  167. | ARVRInterface | XRInterface |
  168. +-----------------------------------------+-------------------------------------------+
  169. | ARVROrigin | XROrigin3D |
  170. +-----------------------------------------+-------------------------------------------+
  171. | ARVRPositionalTracker | XRPositionalTracker |
  172. +-----------------------------------------+-------------------------------------------+
  173. | ARVRServer | XRServer |
  174. +-----------------------------------------+-------------------------------------------+
  175. | CubeMesh | BoxMesh |
  176. +-----------------------------------------+-------------------------------------------+
  177. | EditorSpatialGizmo | EditorNode3DGizmo |
  178. +-----------------------------------------+-------------------------------------------+
  179. | EditorSpatialGizmoPlugin | EditorNode3DGizmoPlugin |
  180. +-----------------------------------------+-------------------------------------------+
  181. | GIProbe | VoxelGI |
  182. +-----------------------------------------+-------------------------------------------+
  183. | GIProbeData | VoxelGIData |
  184. +-----------------------------------------+-------------------------------------------+
  185. | GradientTexture | GradientTexture1D |
  186. +-----------------------------------------+-------------------------------------------+
  187. | KinematicBody | CharacterBody3D |
  188. +-----------------------------------------+-------------------------------------------+
  189. | KinematicBody2D | CharacterBody2D |
  190. +-----------------------------------------+-------------------------------------------+
  191. | Light2D | PointLight2D |
  192. +-----------------------------------------+-------------------------------------------+
  193. | LineShape2D | WorldBoundaryShape2D |
  194. +-----------------------------------------+-------------------------------------------+
  195. | Listener | AudioListener3D |
  196. +-----------------------------------------+-------------------------------------------+
  197. | NavigationMeshInstance | NavigationRegion3D |
  198. +-----------------------------------------+-------------------------------------------+
  199. | NavigationPolygonInstance | NavigationRegion2D |
  200. +-----------------------------------------+-------------------------------------------+
  201. | Navigation2DServer | NavigationServer2D |
  202. +-----------------------------------------+-------------------------------------------+
  203. | PanoramaSky | Sky |
  204. +-----------------------------------------+-------------------------------------------+
  205. | Particles | GPUParticles3D |
  206. +-----------------------------------------+-------------------------------------------+
  207. | Particles2D | GPUParticles2D |
  208. +-----------------------------------------+-------------------------------------------+
  209. | ParticlesMaterial | ParticleProcessMaterial |
  210. +-----------------------------------------+-------------------------------------------+
  211. | Physics2DDirectBodyState | PhysicsDirectBodyState2D |
  212. +-----------------------------------------+-------------------------------------------+
  213. | Physics2DDirectSpaceState | PhysicsDirectSpaceState2D |
  214. +-----------------------------------------+-------------------------------------------+
  215. | Physics2DServer | PhysicsServer2D |
  216. +-----------------------------------------+-------------------------------------------+
  217. | Physics2DShapeQueryParameters | PhysicsShapeQueryParameters2D |
  218. +-----------------------------------------+-------------------------------------------+
  219. | Physics2DTestMotionResult | PhysicsTestMotionResult2D |
  220. +-----------------------------------------+-------------------------------------------+
  221. | PlaneShape | WorldBoundaryShape3D |
  222. +-----------------------------------------+-------------------------------------------+
  223. | Position2D | Marker2D |
  224. +-----------------------------------------+-------------------------------------------+
  225. | Position3D | Marker3D |
  226. +-----------------------------------------+-------------------------------------------+
  227. | ProceduralSky | Sky |
  228. +-----------------------------------------+-------------------------------------------+
  229. | RayShape | SeparationRayShape3D |
  230. +-----------------------------------------+-------------------------------------------+
  231. | RayShape2D | SeparationRayShape2D |
  232. +-----------------------------------------+-------------------------------------------+
  233. | ShortCut | Shortcut |
  234. +-----------------------------------------+-------------------------------------------+
  235. | Spatial | Node3D |
  236. +-----------------------------------------+-------------------------------------------+
  237. | SpatialGizmo | Node3DGizmo |
  238. +-----------------------------------------+-------------------------------------------+
  239. | SpatialMaterial | StandardMaterial3D |
  240. +-----------------------------------------+-------------------------------------------+
  241. | Sprite | Sprite2D |
  242. +-----------------------------------------+-------------------------------------------+
  243. | StreamTexture | CompressedTexture2D |
  244. +-----------------------------------------+-------------------------------------------+
  245. | TextureProgress | TextureProgressBar |
  246. +-----------------------------------------+-------------------------------------------+
  247. | VideoPlayer | VideoStreamPlayer |
  248. +-----------------------------------------+-------------------------------------------+
  249. | ViewportContainer | SubViewportContainer |
  250. +-----------------------------------------+-------------------------------------------+
  251. | Viewport | SubViewport |
  252. +-----------------------------------------+-------------------------------------------+
  253. | VisibilityEnabler | VisibleOnScreenEnabler3D |
  254. +-----------------------------------------+-------------------------------------------+
  255. | VisibilityNotifier | VisibleOnScreenNotifier3D |
  256. +-----------------------------------------+-------------------------------------------+
  257. | VisibilityNotifier2D | VisibleOnScreenNotifier2D |
  258. +-----------------------------------------+-------------------------------------------+
  259. | VisibilityNotifier3D | VisibleOnScreenNotifier3D |
  260. +-----------------------------------------+-------------------------------------------+
  261. | VisualServer | RenderingServer |
  262. +-----------------------------------------+-------------------------------------------+
  263. | VisualShaderNodeScalarConstant | VisualShaderNodeFloatConstant |
  264. +-----------------------------------------+-------------------------------------------+
  265. | VisualShaderNodeScalarFunc | VisualShaderNodeFloatFunc |
  266. +-----------------------------------------+-------------------------------------------+
  267. | VisualShaderNodeScalarOp | VisualShaderNodeFloatOp |
  268. +-----------------------------------------+-------------------------------------------+
  269. | VisualShaderNodeScalarClamp | VisualShaderNodeClamp |
  270. +-----------------------------------------+-------------------------------------------+
  271. | VisualShaderNodeVectorClamp | VisualShaderNodeClamp |
  272. +-----------------------------------------+-------------------------------------------+
  273. | VisualShaderNodeScalarInterp | VisualShaderNodeMix |
  274. +-----------------------------------------+-------------------------------------------+
  275. | VisualShaderNodeVectorInterp | VisualShaderNodeMix |
  276. +-----------------------------------------+-------------------------------------------+
  277. | VisualShaderNodeVectorScalarMix | VisualShaderNodeMix |
  278. +-----------------------------------------+-------------------------------------------+
  279. | VisualShaderNodeScalarSmoothStep | VisualShaderNodeSmoothStep |
  280. +-----------------------------------------+-------------------------------------------+
  281. | VisualShaderNodeVectorSmoothStep | VisualShaderNodeSmoothStep |
  282. +-----------------------------------------+-------------------------------------------+
  283. | VisualShaderNodeVectorScalarSmoothStep | VisualShaderNodeSmoothStep |
  284. +-----------------------------------------+-------------------------------------------+
  285. | VisualShaderNodeVectorScalarStep | VisualShaderNodeStep |
  286. +-----------------------------------------+-------------------------------------------+
  287. | VisualShaderNodeScalarSwitch | VisualShaderNodeSwitch |
  288. +-----------------------------------------+-------------------------------------------+
  289. | VisualShaderNodeScalarTransformMult | VisualShaderNodeTransformOp |
  290. +-----------------------------------------+-------------------------------------------+
  291. | VisualShaderNodeScalarDerivativeFunc | VisualShaderNodeDerivativeFunc |
  292. +-----------------------------------------+-------------------------------------------+
  293. | VisualShaderNodeVectorDerivativeFunc | VisualShaderNodeDerivativeFunc |
  294. +-----------------------------------------+-------------------------------------------+
  295. | VisualShaderNodeBooleanUniform | VisualShaderNodeBooleanParameter |
  296. +-----------------------------------------+-------------------------------------------+
  297. | VisualShaderNodeColorUniform | VisualShaderNodeColorParameter |
  298. +-----------------------------------------+-------------------------------------------+
  299. | VisualShaderNodeScalarUniform | VisualShaderNodeFloatParameter |
  300. +-----------------------------------------+-------------------------------------------+
  301. | VisualShaderNodeCubeMapUniform | VisualShaderNodeCubeMapParameter |
  302. +-----------------------------------------+-------------------------------------------+
  303. | VisualShaderNodeTextureUniform | VisualShaderNodeTexture2DParameter |
  304. +-----------------------------------------+-------------------------------------------+
  305. | VisualShaderNodeTextureUniformTriplanar | VisualShaderNodeTextureParameterTriplanar |
  306. +-----------------------------------------+-------------------------------------------+
  307. | VisualShaderNodeTransformUniform | VisualShaderNodeTransformParameter |
  308. +-----------------------------------------+-------------------------------------------+
  309. | VisualShaderNodeVec3Uniform | VisualShaderNodeVec3Parameter |
  310. +-----------------------------------------+-------------------------------------------+
  311. | VisualShaderNodeUniform | VisualShaderNodeParameter |
  312. +-----------------------------------------+-------------------------------------------+
  313. | VisualShaderNodeUniformRef | VisualShaderNodeParameterRef |
  314. +-----------------------------------------+-------------------------------------------+
  315. .. _doc_upgrading_to_godot_4_manual_rename:
  316. Manually renaming methods, properties, signals and constants
  317. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  318. Due to how the project upgrade tool works, not all
  319. :abbr:`API (Application Programming Interface)` renames can be performed automatically.
  320. The list below contains all renames that must be performed manually using the script editor.
  321. If you cannot find a node or resource in the list below, refer to the above
  322. table to find its new name.
  323. .. tip::
  324. You can use the **Replace in Files** dialog to speed up replacement by pressing
  325. :kbd:`Ctrl + Shift + R` while the script editor is open. However, be careful
  326. as the Replace in Files dialog doesn't offer any way to undo a replacement.
  327. Use version control to commit your upgrade work regularly.
  328. Command line tools such as `sd <https://github.com/chmln/sd>`__ can also be used
  329. if you need something more flexible than the editor's Replace in Files dialog.
  330. If using C#, remember to search for outdated API usage with PascalCase
  331. notation in the project (and perform the replacement with PascalCase
  332. notation).
  333. **Methods**
  334. - File and Directory classes were replaced by :ref:`class_FileAccess` and
  335. :ref:`class_DirAccess`, which have an entirely different API. Several methods
  336. are now static, which means you can call them directly on FileAccess or
  337. DirAccess without having to create an instance of that class.
  338. - Screen and window-related methods from the :ref:`class_OS` singleton (such as
  339. ``OS.get_screen_size()``) were moved to the :ref:`class_DisplayServer` singleton.
  340. Method naming was also changed to use the
  341. ``DisplayServer.<object>_<get/set>_property()`` form instead. For example,
  342. ``OS.get_screen_size()`` becomes ``DisplayServer.screen_get_size()``.
  343. - Time and date methods from the :ref:`class_OS` singleton were moved to the
  344. :ref:`class_Time` singleton.
  345. (The Time singleton is also available in Godot 3.5 and later.)
  346. - You may have to replace some ``instance()`` calls with ``instantiate()``. The
  347. converter *should* handle this automatically, but this relies on custom code that
  348. may not work in 100% of situations.
  349. - AcceptDialog's ``set_autowrap()`` is now ``set_autowrap_mode()``.
  350. - AnimationNode's ``process()`` is now ``_process()``
  351. (note the leading underscore, which denotes a virtual method).
  352. - AStar2D and AStar3D's ``get_points()`` is now ``get_points_id()``.
  353. - BaseButton's ``set_event()`` is now ``set_shortcut()``.
  354. - Camera2D's ``get_v_offset()`` is now ``get_drag_vertical_offset()``.
  355. - Camera2D's ``set_v_offset()`` is now ``set_drag_vertical_offset()``.
  356. - CanvasItem's ``update()`` is now ``queue_redraw()``.
  357. - Control's ``set_tooltip()`` is now ``set_tooltip_text()``.
  358. - EditorNode3DGizmoPlugin's ``create_gizmo()`` is now ``_create_gizmo()``
  359. (note the leading underscore, which denotes a virtual method).
  360. - ENetMultiplayerPeer's ``get_peer_port()`` is now ``get_peer()``.
  361. - FileDialog's ``get_mode()`` is now ``get_file_mode()``.
  362. - FileDialog's ``set_mode()`` is now ``set_file_mode()``.
  363. - GraphNode's ``get_offset()`` is now ``get_position_offset()``.
  364. - GridMap's ``world_to_map()`` is now ``local_to_map()``.
  365. - GridMap's ``map_to_world()`` is now ``map_to_local()``.
  366. - Image's ``get_rect()`` is now ``get_region()``.
  367. - ItemList's ``get_v_scroll()`` is now ``get_v_scroll_bar()``.
  368. - MultiPlayerAPI's ``get_network_connected_peers()`` is now ``get_peers()``.
  369. - MultiPlayerAPI's ``get_network_peer()`` is now ``get_peer()``.
  370. - MultiPlayerAPI's ``get_network_unique_id()`` is now ``get_unique_id()``.
  371. - MultiPlayerAPI's ``has_network_peer()`` is now ``has_multiplayer_peer()``.
  372. - PacketPeerUDP's ``is_listening()`` is now ``is_bound()``.
  373. - PacketPeerUDP's ``listen()`` is now ``bind()``.
  374. - ParticleProcessMaterial's ``set_flag()`` is now ``set_particle_flag()``.
  375. - ResourceFormatLoader's ``get_dependencies()`` is now ``_get_dependencies()``
  376. (note the leading underscore, which denotes a virtual method).
  377. - SceneTree's ``change_scene()`` is now ``change_scene_to_file()``.
  378. - Shortcut's ``is_valid()`` is now ``has_valid_event()``.
  379. - TileMap's ``world_to_map()`` is now ``local_to_map()``.
  380. - TileMap's ``map_to_world()`` is now ``map_to_local()``.
  381. **Properties**
  382. .. note::
  383. If a property is listed here, its associated getter and setter methods must
  384. also be renamed manually if used in the project. For example, PathFollow2D
  385. and PathFollow3D's ``set_offset()`` and ``get_offset()`` must be renamed to
  386. ``set_progress()`` and ``get_progress()`` respectively.
  387. - Control's ``margin`` is now ``offset``.
  388. - Label's ``percent_visible`` is now ``visible_ratio``.
  389. - MultiPlayerAPI's ``refuse_new_network_connections`` is now ``refuse_new_connections``.
  390. - PathFollow2D and PathFollow3D's ``offset`` is now ``progress``.
  391. - TextureProgressBar's ``percent_visible`` is now ``show_percentage``.
  392. - The ``extents`` property on CSG nodes and VoxelGI will have to be replaced
  393. with ``size``, with the set value halved (as they're no longer half-extents).
  394. This also affects its setter/getter methods ``set_extents()`` and
  395. ``get_extents()``.
  396. - The ``Engine.editor_hint`` property was removed in favor of the
  397. ``Engine.is_editor_hint()`` *method*. This is because it's read-only, and
  398. properties in Godot are not used for read-only values.
  399. **Enums**
  400. - CPUParticles2D's ``FLAG_MAX`` is now ``PARTICLE_FLAG_MAX``.
  401. **Signals**
  402. - FileSystemDock's ``instantiate`` is now ``instance``.
  403. - CanvasItem's ``hide`` is now ``hidden``. This rename does **not** apply to the
  404. ``hide()`` method, only the signal.
  405. - Tween's ``tween_all_completed`` is now ``loop_finished``.
  406. - EditorSettings' ``changed`` is now ``settings_changed``.
  407. **Constants**
  408. - Color names are now uppercase and use underscores between words.
  409. For example, ``Color.palegreen`` is now ``Color.PALE_GREEN``.
  410. - MainLoop's ``NOTIFICATION_`` constants were duplicated to ``Node`` which means
  411. you can remove the ``MainLoop.`` prefix when referencing them.
  412. - MainLoop's ``NOTIFICATION_WM_QUIT_REQUEST`` is now ``NOTIFICATION_WM_CLOSE_REQUEST``.
  413. Checking project settings
  414. ^^^^^^^^^^^^^^^^^^^^^^^^^
  415. Several project settings were renamed, and some of them had their enums changed
  416. in incompatible ways (such as shadow filter quality). This means you may need to
  417. set some project settings' values again. Make sure the **Advanced** toggle is
  418. enabled in the project settings dialog so you can see all project settings.
  419. Checking Environment settings
  420. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  421. Graphics quality settings were moved from Environment properties to project
  422. settings. This was done to make run-time quality adjustments easier, without
  423. having to access the currently active Environment resource then modify its
  424. properties.
  425. As a result, you will have to configure Environment quality settings in the
  426. project settings as old Environment quality settings aren't converted
  427. automatically to project settings.
  428. If you have a graphics settings menu that changed environment properties in
  429. Godot 3.x, you will have to change its code to call :ref:`class_RenderingServer`
  430. methods that affect environment effects' quality. Only the "base" toggle of each
  431. environment effect and its visual knobs remain within the Environment resource.
  432. Updating shaders
  433. ^^^^^^^^^^^^^^^^
  434. There have been some changes to shaders that aren't covered by the upgrade tool.
  435. The ``.shader`` file extension is no longer supported, which means you must
  436. rename ``.shader`` files to ``.gdshader`` and update references accordingly in
  437. scene/resource files using an external text editor.
  438. Some notable renames you will need to perform in shaders are:
  439. - Texture filter and repeat modes are now set on individual uniforms, rather
  440. than the texture files themselves.
  441. - ``hint_albedo`` is now ``source_color``.
  442. - :ref:`Built in matrix variables were renamed. <doc_spatial_shader>`
  443. - Particles shaders no longer use the ``vertex()`` processor function. Instead
  444. they use ``start()`` and ``process()``.
  445. See :ref:`doc_shading_language` for more information.
  446. Updating scripts to take backwards-incompatible changes into account
  447. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  448. Some changes performed between Godot 3.x and 4 are not renames, but they still
  449. break backwards compatibility due to different default behavior.
  450. The most notable examples of this are:
  451. - Lifecycle functions such as ``_ready()`` and ``_process()`` no longer
  452. implicitly call parent classes' functions that have the same name. Instead,
  453. you must use ``super()`` at the top of a lifecycle function in the child class
  454. so that the parent class function is called first.
  455. - Both :ref:`class_String` and :ref:`class_StringName` are now exposed to
  456. GDScript. This allows for greater optimization, as StringName is specifically
  457. designed to be used for "constant" strings that are created once and reused
  458. many times. These types are not strictly equivalent to each other, which means
  459. ``is_same("example", &"example")`` returns ``false``. Although in most cases
  460. they are interchangeable (``"example" == &"example"`` returns ``true``),
  461. sometimes you may have to replace ``"example"`` with ``&"example"``.
  462. - :ref:`GDScript setter and getter syntax <doc_gdscript_basics_setters_getters>`
  463. was changed, but it's only partially converted by the conversion tool. In most
  464. cases, manual changes are required to make setters and getters working again.
  465. - :ref:`GDScript signal connection syntax <doc_gdscript_signals>` was changed.
  466. The conversion tool will use the string-based syntax which is still present in
  467. Godot 4, but it's recommended to switch to the :ref:`class_Signal`-based syntax
  468. described on the linked page. This way, strings are no longer involved,
  469. which avoids issues with signal name errors that can only be discovered at run-time.
  470. - Built-in scripts that are :ref:`tool scripts <doc_running_code_in_the_editor>`
  471. do not get the ``tool`` keyword converted to the ``@tool`` annotation.
  472. - The Tween node was removed in favor of Tweeners, which are also available in
  473. Godot 3.5 and later. See the
  474. `original pull request <https://github.com/godotengine/godot/pull/41794>`__
  475. for details.
  476. - ``randomize()`` is now automatically called on project load, so deterministic
  477. randomness with the global RandomNumberGenerate instance requires manually
  478. setting a seed in a script's ``_ready()`` function.
  479. - ``call_group()``, ``set_group()`` and ``notify_group()`` are now immediate by
  480. default. If calling an expensive function, this may result in stuttering when
  481. used on a group containing a large number of nodes. To use deferred calls like
  482. before, replace ``call_group(...)`` with
  483. ``call_group_flags(SceneTree.GROUP_CALL_DEFERRED, ...)`` (and do the same with
  484. ``set_group()`` and ``notify_group()`` respectively).
  485. - Instead of ``rotation_degrees``, the ``rotation`` property is exposed to the
  486. editor, which is automatically displayed as degrees in the Inspector
  487. dock. This may break animations, as the conversion is not handled automatically by the
  488. conversion tool.
  489. - :ref:`class_AABB`'s ``has_no_surface()`` was inverted and renamed to ``has_surface()``.
  490. - :ref:`class_AABB` and :ref:`class_Rect2`'s ``has_no_area()`` was inverted and
  491. renamed to ``has_area()``.
  492. - :ref:`class_AnimatedTexture`'s ``fps`` property was replaced by ``speed_scale``,
  493. which works the same as AnimationPlayer's ``playback_speed`` property.
  494. - :ref:`class_AnimatedSprite2D` and :ref:`class_AnimatedSprite3D` now allow
  495. negative ``speed_scale`` values. This may break animations if you relied on
  496. ``speed_scale`` being internally clamped to ``0.0``.
  497. - :ref:`class_AnimatedSprite2D` and :ref:`class_AnimatedSprite3D`'s ``playing``
  498. property was removed. Use ``play()``/``stop()`` method instead OR configure
  499. ``autoplay`` animation via the SpriteFrames bottom panel (but not both at once).
  500. - :ref:`class_Array`'s ``slice()`` second parameter (``end``) is now *exclusive*,
  501. instead of being inclusive. For example, this means that
  502. ``[1, 2, 3].slice(0, 1)`` now returns ``[1]`` instead of ``[1, 2]``.
  503. - :ref:`class_BaseButton`'s signals are now ``button_up`` and ``button_down``.
  504. The ``pressed`` property is now ``button_pressed``.
  505. - :ref:`class_Camera2D`'s ``rotating`` property was replaced by
  506. ``ignore_rotation``, which has inverted behavior.
  507. - Camera2D's ``zoom`` property was inverted: higher values are now more zoomed
  508. in, instead of less.
  509. - :ref:`class_Node`'s ``remove_and_skip()`` method was removed.
  510. If you need to reimplement it in a script, you can use the
  511. `old C++ implementation <https://github.com/godotengine/godot/blob/7936b3cc4c657e4b273b376068f095e1e0e4d82a/scene/main/node.cpp#L1910-L1945>`__
  512. as a reference.
  513. - ``OS.get_system_time_secs()`` should be converted to
  514. ``Time.get_time_dict_from_system()["second"]``.
  515. - :ref:`class_ResourceSaver`'s ``save()`` method now has its arguments swapped around
  516. (``resource: Resource, path: String``). This also applies to
  517. :ref:`class_ResourceFormatSaver`'s ``_save()`` method.
  518. - A :ref:`class_StreamPeerTCP` must have ``poll()`` called on it to update its
  519. state, instead of relying on ``get_status()`` automatically polling:
  520. `GH-59582 <https://github.com/godotengine/godot/pull/59582>`__
  521. - :ref:`class_String`'s ``right()`` method `has changed behavior <https://github.com/godotengine/godot/pull/36180>`__:
  522. it now returns a number of characters from the right of the string, rather than
  523. the right side of the string from a given position. If you need the old behavior,
  524. you can use ``substr()`` instead.
  525. - ``is_connected_to_host()`` was removed from StreamPeerTCP and PacketPeerUDP as
  526. per `GH-59582 <https://github.com/godotengine/godot/pull/59582>`__.
  527. ``get_status()`` can be used in StreamPeerTCP instead.
  528. ``is_socket_connected()`` can be used in :ref:`class_PacketPeerUDP` instead.
  529. - In ``_get_property_list()``, the ``or_lesser`` property hint string is now ``or_less``.
  530. - In ``_get_property_list()``, the ``noslider`` property hint string is now ``no_slider``.
  531. - VisualShaderNodeVec4Parameter now takes a :ref:`class_Vector4` as parameter
  532. instead of a :ref:`class_Quaternion`.
  533. **Removed or replaced nodes/resources**
  534. This lists all nodes that were replaced by another node requiring different
  535. configuration. The setup must be done from scratch again, as the project
  536. converter doesn't support updating existing setups:
  537. +---------------------+-----------------------+----------------------------------------------------------------------------+
  538. | Removed node | Closest approximation | Comment |
  539. +=====================+=======================+============================================================================+
  540. | AnimationTreePlayer | AnimationTree | AnimationTreePlayer was deprecated since Godot 3.1. |
  541. +---------------------+-----------------------+----------------------------------------------------------------------------+
  542. | BakedLightmap | LightmapGI | See :ref:`doc_using_lightmap_gi`. |
  543. +---------------------+-----------------------+ |
  544. | BakedLightmapData | LightmapGIData | |
  545. +---------------------+-----------------------+----------------------------------------------------------------------------+
  546. | BitmapFont | FontFile | See :ref:`doc_gui_using_fonts`. |
  547. +---------------------+-----------------------+ |
  548. | DynamicFont | FontFile | |
  549. +---------------------+-----------------------+ |
  550. | DynamicFontData | FontFile | |
  551. +---------------------+-----------------------+----------------------------------------------------------------------------+
  552. | Navigation2D | Node2D | Replaced by :ref:`other 2D Navigation nodes <doc_navigation_overview_2d>`. |
  553. +---------------------+-----------------------+----------------------------------------------------------------------------+
  554. | Navigation3D | Node3D | Replaced by :ref:`other 3D Navigation nodes <doc_navigation_overview_3d>`. |
  555. +---------------------+-----------------------+----------------------------------------------------------------------------+
  556. | OpenSimplexNoise | FastNoiseLite | Has different parameters and more noise types such as cellular. No |
  557. | | | support for 4D noise as it's absent from the FastNoiseLite library. |
  558. +---------------------+-----------------------+----------------------------------------------------------------------------+
  559. | ToolButton | Button | ToolButton was Button with the **Flat** property enabled by default. |
  560. +---------------------+-----------------------+----------------------------------------------------------------------------+
  561. | YSort | Node2D or Control | CanvasItem has a new **Y Sort Enabled** property in 4.0. |
  562. +---------------------+-----------------------+----------------------------------------------------------------------------+
  563. | ProximityGroup | Node3D | :ref:`class_VisibleOnScreenNotifier3D` can act as a replacement. |
  564. +---------------------+-----------------------+----------------------------------------------------------------------------+
  565. | Portal | Node3D | Portal and room occlusion culling was replaced by raster |
  566. | | | :ref:`occlusion culling <doc_occlusion_culling>` |
  567. | | | (OccluderInstance3D node), which requires a different setup process. |
  568. +---------------------+-----------------------+ |
  569. | Room | Node3D | |
  570. +---------------------+-----------------------+ |
  571. | RoomManager | Node3D | |
  572. +---------------------+-----------------------+ |
  573. | RoomGroup | Node3D | |
  574. +---------------------+-----------------------+----------------------------------------------------------------------------+
  575. | Occluder | Node3D | Geometry occlusion culling was replaced by raster |
  576. | | | :ref:`occlusion culling <doc_occlusion_culling>` |
  577. | | | (OccluderInstance3D node), which requires a different setup process. |
  578. +---------------------+-----------------------+ |
  579. | OccluderShapeSphere | Resource | |
  580. +---------------------+-----------------------+----------------------------------------------------------------------------+
  581. If loading an old project, the node will be replaced with its
  582. *Closest approximation* automatically (even if not using the project upgrade tool).
  583. **Threading changes**
  584. :ref:`Threading <doc_using_multiple_threads>` APIs have changed in 4.0. For
  585. example, the following code snippet in Godot 3.x must be modified to work in 4.0:
  586. ::
  587. # 3.x
  588. var start_success = new_thread.start(self, "__threaded_background_loader",
  589. [resource_path, thread_num]
  590. )
  591. # 4.0
  592. var start_success = new_thread.start(__threaded_background_loader.bind(resource_path, thread_num))
  593. ``Thread.is_active()`` is no longer used and should be converted to ``Thread.is_alive()``.
  594. .. seealso::
  595. See the `changelog <https://github.com/godotengine/godot/blob/master/CHANGELOG.md>`__
  596. for a full list of changes between Godot 3.x and 4.
  597. ArrayMesh resource compatibility breakage
  598. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  599. If you've saved an ArrayMesh resource to a ``.res`` or ``.tres`` file, the
  600. format used in 4.0 is not compatible with the one used in 3.x. You will need to
  601. go through the process of importing the source mesh file and saving it as an
  602. ArrayMesh resource again.
  603. List of automatically renamed methods, properties, signals and constants
  604. ------------------------------------------------------------------------
  605. The `editor/renames_map_3_to_4.cpp <https://github.com/godotengine/godot/blob/master/editor/renames_map_3_to_4.cpp>`__
  606. source file lists all automatic renames performed by the project upgrade tool.
  607. Lines that are commented out refer to API renames that :ref:`cannot be performed automatically <doc_upgrading_to_godot_4_manual_rename>`.
  608. Porting editor settings
  609. -----------------------
  610. Godot 3.x and 4.0 use different editor settings files. This means their settings
  611. can be changed independently from each other.
  612. If you wish to port over your Godot 3.x settings to Godot 4, open the
  613. :ref:`editor settings folder <doc_data_paths_editor_data_paths>` and copy
  614. ``editor_settings-3.tres`` to ``editor_settings-4.tres`` while the Godot 4
  615. editor is closed.
  616. .. note::
  617. Many settings' names and categories have changed since Godot 3.x. Editor settings
  618. whose name or category has changed won't carry over to Godot 4.0; you will
  619. have to set their values again.