2022-03-18 17:46:08 +01:00
|
|
|
Scripting
|
|
|
|
=========
|
|
|
|
|
|
|
|
This section covers programming languages and core features to code your games
|
2024-03-16 20:56:52 +01:00
|
|
|
in Pandemonium.
|
2022-03-18 17:46:08 +01:00
|
|
|
|
|
|
|
Here, you will find information that is not already covered in more specific
|
|
|
|
sections. For instance, to learn about inputs, we recommend you to read
|
2023-01-12 20:39:50 +01:00
|
|
|
`Inputs <toc-learn-features-inputs )`.
|
2022-03-18 17:46:08 +01:00
|
|
|
|
|
|
|
Programming languages
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
The sections below each focus on a given programming language or, in GDNative's
|
|
|
|
case, an interface that works with multiple languages.
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
:name: toc-learn-scripting
|
|
|
|
|
|
|
|
gdscript/index
|
|
|
|
|
|
|
|
Core features
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Some features are specific to the engine and are available in all supported
|
|
|
|
languages. Whether you code in GDScript, C#, or another language, the pages
|
2024-03-16 20:56:52 +01:00
|
|
|
below will help you make the most of Pandemonium.
|
2022-03-18 17:46:08 +01:00
|
|
|
|
|
|
|
.. To split and organize better, into some related toctrees?
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
:name: toc-scripting-core-features
|
|
|
|
|
|
|
|
debug/index
|
|
|
|
idle_and_physics_processing
|
|
|
|
groups
|
|
|
|
nodes_and_scene_instances
|
|
|
|
overridable_functions
|
|
|
|
cross_language_scripting
|
|
|
|
creating_script_templates
|
|
|
|
evaluating_expressions
|
|
|
|
change_scenes_manually
|
|
|
|
instancing_with_signals
|
|
|
|
pausing_games
|
|
|
|
filesystem
|
|
|
|
resources
|
|
|
|
singletons_autoload
|
|
|
|
scene_tree
|
2022-09-10 12:15:58 +02:00
|
|
|
scene_unique_nodes
|