minetest_modding_book/_data/links_en.yml

130 lines
2.9 KiB
YAML
Raw Normal View History

2014-12-31 08:43:27 -08:00
- title: Introduction
link: index.html
2015-01-01 09:05:03 -08:00
- hr: true
2014-12-31 08:43:27 -08:00
- title: Folder Structure
2018-06-28 03:24:16 -07:00
description: Learn how to make a mod folder, including init.lua, depends.txt and more.
2014-12-31 08:43:27 -08:00
num: 1
link: chapters/folders.html
2015-01-01 07:53:07 -08:00
- title: Lua Scripts
2018-06-28 03:24:16 -07:00
description: A basic introduction to Lua, including a guide on global/local scope.
2014-12-31 08:43:27 -08:00
num: 2
2015-01-01 07:53:07 -08:00
link: chapters/lua.html
2014-12-31 08:43:27 -08:00
2015-09-24 16:00:15 -07:00
- hr: true
2015-11-08 07:57:40 -08:00
- title: Nodes, Items, and Crafting
2018-06-28 03:24:16 -07:00
description: Learn how to register node, items, and craft recipes using register_node, register_item, and register_craft.
2014-12-31 08:43:27 -08:00
num: 3
2015-01-01 07:53:07 -08:00
link: chapters/nodes_items_crafting.html
2014-12-31 08:43:27 -08:00
2015-04-07 10:39:10 -07:00
- title: Creating Textures
2018-06-28 03:24:16 -07:00
description: An introduction to making textures in your editor of choice, an a guide on GIMP.
2014-12-31 08:43:27 -08:00
num: 4
2015-04-07 10:39:10 -07:00
link: chapters/creating_textures.html
- title: Node Drawtypes
description: Guide to all drawtypes, including node boxes/nodeboxes and mesh nodes.
2015-04-07 10:39:10 -07:00
num: 5
2015-01-01 07:53:07 -08:00
link: chapters/node_drawtypes.html
2014-12-31 08:43:27 -08:00
2018-01-12 20:18:06 -08:00
- hr: true
2018-02-20 16:38:18 -08:00
- title: Basic Map Operations
2018-06-28 03:24:16 -07:00
description: Basic operations like set_node and get_node
2015-04-07 10:39:10 -07:00
num: 6
2018-02-20 16:38:18 -08:00
link: chapters/environment.html
2015-09-25 09:38:44 -07:00
- title: Active Block Modifiers
2018-06-28 03:25:09 -07:00
description: Learn how to make ABMs to change blocks.
2015-09-25 09:38:44 -07:00
num: 7
2014-12-31 08:43:27 -08:00
link: chapters/abms.html
2018-02-20 16:38:18 -08:00
- title: Node Metadata
2018-06-28 03:24:16 -07:00
description: Using get_meta to obtain a NodeMetaRef
2018-02-20 16:38:18 -08:00
num: 8
link: chapters/node_metadata.html
2018-03-29 08:39:34 -07:00
- title: Lua Voxel Manipulators
2018-06-27 15:14:43 -07:00
description: Learn how to use LVMs to speed up map operations.
2018-03-29 08:39:34 -07:00
num: 9
link: chapters/lvm.html
2015-01-01 08:36:52 -08:00
- hr: true
2016-04-09 06:27:06 -07:00
- title: Privileges
2018-06-28 03:24:16 -07:00
description: Registering privs
2018-03-29 08:39:34 -07:00
num: 10
2016-04-09 06:27:06 -07:00
link: chapters/privileges.html
- title: Chat and Commands
2018-06-28 03:24:16 -07:00
description: Register a chatcommand
2018-03-29 08:39:34 -07:00
num: 11
2015-09-24 16:00:15 -07:00
link: chapters/chat.html
- title: Chat Command Builder
2018-06-28 03:24:16 -07:00
description: Use ChatCmdBuilder to make a complex chat command
2018-03-29 08:39:34 -07:00
num: 12
2016-06-16 17:08:44 -07:00
link: chapters/chat_complex.html
- title: Player Physics
2018-03-29 08:39:34 -07:00
num: 13
2015-01-24 11:05:38 -08:00
link: chapters/player_physics.html
- title: Formspecs
2018-03-29 08:39:34 -07:00
num: 14
2014-12-31 08:43:27 -08:00
link: chapters/formspecs.html
2015-01-01 08:36:52 -08:00
- title: HUD
2018-03-29 08:39:34 -07:00
num: 15
2015-01-01 08:36:52 -08:00
link: chapters/hud.html
2017-08-28 16:21:27 -07:00
- title: "SFINV: Inventory Formspec"
2018-03-29 08:39:34 -07:00
num: 16
2017-08-28 16:21:27 -07:00
link: chapters/sfinv.html
2014-12-31 08:43:27 -08:00
- hr: true
2015-09-25 10:40:01 -07:00
- title: ItemStacks
2018-03-29 08:39:34 -07:00
num: 17
2015-09-25 10:40:01 -07:00
link: chapters/itemstacks.html
2015-11-21 09:05:45 -08:00
- title: Inventories
2018-03-29 08:39:34 -07:00
num: 18
2015-11-21 09:05:45 -08:00
link: chapters/inventories.html
2015-09-25 10:40:01 -07:00
- hr: true
2018-04-03 05:11:27 -07:00
- title: Common Mistakes
2018-03-29 08:39:34 -07:00
num: 19
2018-04-03 05:11:27 -07:00
link: chapters/common_mistakes.html
- title: Automatic Error Checking
description: Use LuaCheck as a linter to find errors
2018-04-03 05:11:27 -07:00
num: 20
2018-02-24 15:56:45 -08:00
link: chapters/luacheck.html
- title: Intro to Clean Architectures
description: Separate logic from data and API calls using the MVC pattern - Model View Controller.
2018-04-03 05:11:27 -07:00
num: 21
link: chapters/mvc.html
- title: Automatic Unit Testing
description: Write tests for your mods using Busted.
num: 22
link: chapters/unit_testing.html
- hr: true
- title: Releasing a Mod
num: 23
2015-01-11 12:05:52 -08:00
link: chapters/releasing.html
2018-04-03 05:12:58 -07:00
- title: More Resources
num: 24
2015-09-25 12:12:16 -07:00
link: chapters/readmore.html
2015-01-11 12:05:52 -08:00
- hr: true