Improve the Upgrading to Godot 4 page

- Mention various caveats of upgrading, such as unavailable features.
- Mention external shaders not being updated by the conversion tool.
- List optional things to do before upgrading to make the process smoother.
This commit is contained in:
Hugo Locurcio
2022-12-02 20:32:27 +01:00
parent 346c4d5c5b
commit d46c17f8ff
2 changed files with 104 additions and 5 deletions

View File

@@ -1539,10 +1539,12 @@ Exports
Documentation about exports has been moved to :ref:`doc_gdscript_exports`.
Properties
~~~~~~~~~~
.. _doc_gdscript_basics_setters_getters:
Sometimes you want a class' member variable to do more than just hold data and actually perform
Properties (setters and getters)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Sometimes, you want a class' member variable to do more than just hold data and actually perform
some validation or computation whenever its value change. It may also be desired to
encapsulate its access in some way.