In other languages: Türkçe Українська

Tutorial:Modding tutorial: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
m (word)
(Translations of the modding tutorials are allowed)
 
(12 intermediate revisions by 5 users not shown)
Line 6: Line 6:
* [[Tutorial:Mod settings|Mod settings]] — A comprehensive tutorial about how to create and use mod settings.
* [[Tutorial:Mod settings|Mod settings]] — A comprehensive tutorial about how to create and use mod settings.
* [[Tutorial:Localisation|Localisation]] — A tutorial about how to format and use localisation, which is how mods are translated.
* [[Tutorial:Localisation|Localisation]] — A tutorial about how to format and use localisation, which is how mods are translated.
* [[Tutorial:Inspecting a live mod|Inspecting a live mod]] — An annotated tour of a mod that is live on the mod portal right now.
* [[Tutorial:Mod changelog format|Mod changelog format]] — The formatting requirements for the mod changelog.txt file.
* [[Tutorial:Script interfaces|Script interfaces]] — A small tutorial about script interfaces ([http://lua-api.factorio.com/latest/LuaRemote.html LuaRemote]) and custom keyboard shortcuts.
* [[Tutorial:Script interfaces|Script interfaces]] — A small tutorial about script interfaces ([http://lua-api.factorio.com/latest/LuaRemote.html LuaRemote]) and custom keyboard shortcuts.
* [https://togos.github.io/togos-example-noise-programs/ Noise Expressions] — A tutorial about generating terrain, complete with [https://mods.factorio.com/mod/togos-example-noise-programs example mod].
* [https://github.com/ClaudeMetz/UntitledGuiGuide/wiki Untitled GUI Guide] — A tutorial about building custom interfaces that also expands into more advanced parts of GUI modding.
* [https://forums.factorio.com/106661 Controller modding guide / FAQ] — A guide about building your mod to support controllers (game pads).


=== Additional info ===
=== Additional info ===
* [https://lua-api.factorio.com/latest Modding API docs] - Overview page of the modding API documentation website
** [https://lua-api.factorio.com/latest/index-prototype.html Prototype documentation]
** [https://lua-api.factorio.com/latest/index-runtime.html Documentation of the runtime API]
* [[Scenario system]] — Save-based mods ("soft mods") and their limitations
* [https://lua-api.factorio.com/latest/auxiliary/migrations.html Migrations guide] — All information about mod migrations
* [https://github.com/wube/factorio-data Factorio data github repository] — Tracks changes of the lua prototype definitions in Factorio in between releases
* [[Tutorial:Modding FAQ|Modding FAQ]]
* [[Tutorial:Modding FAQ|Modding FAQ]]
* [[Prototype definitions|Prototype documentation]]
 
* [[Scenario system]] — Save-based mods ("soft mods") and their limitations
=== Third-Party Tools ===
* [http://lua-api.factorio.com/latest/ Factorio API Documentation] — Documentation of the runtime api
There is a wide variety of tools contributed by community members to help in mod development, such as plugins for IDEs to provide auto-completion, debuggers, as well as scripts to automate common tasks regarding translations or packaging.
* [https://lua-api.factorio.com/latest/Migrations.html Migrations guide] — All information about mod migrations
 
* [https://github.com/wube/factorio-data Factorio data github repository] — Tracks changes of the lua prototype definitions in factorio in between releases.
* [https://forums.factorio.com/viewforum.php?f=135 Factorio sub-forum for mod development tools]
<noinclude>
<noinclude>{{Languages}}
== See also ==
== See also ==
* [[Tutorials]]
* [[Tutorials]]
* [[Modding]]
* [[Modding]]
* [[:Category:Technical]] — Documentation of technical formats and API's not related to modding</noinclude>
* [[:Category:Technical]] — Documentation of technical formats and API's not related to modding
 
[[Category:Modding]]
</noinclude>

Latest revision as of 20:45, 13 November 2023

These tutorials range from teaching the first steps of modding to in-depth explanations of individual mechanics:

  • Modding tutorial/Gangsir — A simple modding tutorial that suits beginners well.
  • Mod structure — More details on how mods need to be structured in order to be loaded by the game.
  • Scripting — A small tutorial that focuses on run-time scripting and provides some info on how to use the story script.
  • Mod settings — A comprehensive tutorial about how to create and use mod settings.
  • Localisation — A tutorial about how to format and use localisation, which is how mods are translated.
  • Inspecting a live mod — An annotated tour of a mod that is live on the mod portal right now.
  • Mod changelog format — The formatting requirements for the mod changelog.txt file.
  • Script interfaces — A small tutorial about script interfaces (LuaRemote) and custom keyboard shortcuts.
  • Noise Expressions — A tutorial about generating terrain, complete with example mod.
  • Untitled GUI Guide — A tutorial about building custom interfaces that also expands into more advanced parts of GUI modding.
  • Controller modding guide / FAQ — A guide about building your mod to support controllers (game pads).

Additional info

Third-Party Tools

There is a wide variety of tools contributed by community members to help in mod development, such as plugins for IDEs to provide auto-completion, debuggers, as well as scripts to automate common tasks regarding translations or packaging.

See also