mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-04 14:11:02 +03:00
Draft: Remove "simple", "simply", "easy", and "just" from the docs (#4496)
* Various style edits * Edit out "simple" when possible Co-authored-by: Max Hilbrunner <mhilbrunner@users.noreply.github.com> Co-authored-by: Clay John <claynjohn@gmail.com>
This commit is contained in:
committed by
GitHub
parent
a4a368af15
commit
bd19917ea0
@@ -13,10 +13,10 @@ While this makes plugins less powerful, there are still many things you can
|
||||
do with them. Note that a plugin is similar to any scene you can already
|
||||
make, except it is created using a script to add editor functionality.
|
||||
|
||||
This tutorial will guide you through the creation of two simple plugins so
|
||||
This tutorial will guide you through the creation of two plugins so
|
||||
you can understand how they work and be able to develop your own. The first
|
||||
will be a custom node that you can add to any scene in the project and the
|
||||
other will be a custom dock added to the editor.
|
||||
is a custom node that you can add to any scene in the project, and the
|
||||
other is a custom dock added to the editor.
|
||||
|
||||
Creating a plugin
|
||||
~~~~~~~~~~~~~~~~~
|
||||
@@ -56,7 +56,7 @@ You should end up with a directory structure like this:
|
||||
|
||||
.. image:: img/making_plugins-my_custom_mode_folder.png
|
||||
|
||||
``plugin.cfg`` is a simple INI file with metadata about your plugin.
|
||||
``plugin.cfg`` is an INI file with metadata about your plugin.
|
||||
The name and description help people understand what it does.
|
||||
Your name helps you get properly credited for your work.
|
||||
The version number helps others know if they have an outdated version;
|
||||
@@ -148,8 +148,8 @@ To create a new node type, you can use the function
|
||||
that will act as the logic for the type. While that script doesn't have to use
|
||||
the ``tool`` keyword, it can be added so the script runs in the editor.
|
||||
|
||||
For this tutorial, we'll create a simple button that prints a message when
|
||||
clicked. For that, we'll need a simple script that extends from
|
||||
For this tutorial, we'll create a button that prints a message when
|
||||
clicked. For that, we'll need a script that extends from
|
||||
:ref:`class_Button`. It could also extend
|
||||
:ref:`class_BaseButton` if you prefer:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user