diff options
| author | Jeija <norrepli@gmail.com> | 2015-11-20 20:14:50 +0100 | 
|---|---|---|
| committer | Jeija <norrepli@gmail.com> | 2015-11-20 20:14:50 +0100 | 
| commit | 0ec771bf7d8d95f24b46d2f608cccc109ec2de4f (patch) | |
| tree | 646ef2a1e6d7750fa6e12d648986ef2ff7e78fee /mesecons_switch | |
| parent | 75bd081a67a2ac52b8a0eea1e051a456d288c71d (diff) | |
Major change: Documentation is now included with mesecons, the website just extracts the documentation in a more readable format
This makes development of new features easier, as documentation can automatically be updated on the website without modifying the website's code!
Every mod that has nodes in the mesecons modpack has a "doc" folder that contains subfolders with recipe, description and preview of the block. The website will discover which documentation is available
by reading the documentation.json file.
Diffstat (limited to 'mesecons_switch')
| -rw-r--r-- | mesecons_switch/doc/switch/description.html | 1 | ||||
| -rw-r--r-- | mesecons_switch/doc/switch/preview.png | bin | 0 -> 86195 bytes | |||
| -rw-r--r-- | mesecons_switch/doc/switch/recipe.png | bin | 0 -> 12015 bytes | |||
| -rw-r--r-- | mesecons_switch/init.lua | 14 | ||||
| -rw-r--r-- | mesecons_switch/textures/mesecons_switch_off.png | bin | 0 -> 598 bytes | |||
| -rw-r--r-- | mesecons_switch/textures/mesecons_switch_on.png | bin | 0 -> 692 bytes | |||
| -rw-r--r-- | mesecons_switch/textures/mesecons_switch_side.png | bin | 0 -> 553 bytes | 
7 files changed, 8 insertions, 7 deletions
| diff --git a/mesecons_switch/doc/switch/description.html b/mesecons_switch/doc/switch/description.html new file mode 100644 index 0000000..3ef4ace --- /dev/null +++ b/mesecons_switch/doc/switch/description.html @@ -0,0 +1 @@ +The switch is a receptor. It changes its state as when punched. diff --git a/mesecons_switch/doc/switch/preview.png b/mesecons_switch/doc/switch/preview.pngBinary files differ new file mode 100644 index 0000000..0a0487d --- /dev/null +++ b/mesecons_switch/doc/switch/preview.png diff --git a/mesecons_switch/doc/switch/recipe.png b/mesecons_switch/doc/switch/recipe.pngBinary files differ new file mode 100644 index 0000000..6db6464 --- /dev/null +++ b/mesecons_switch/doc/switch/recipe.png diff --git a/mesecons_switch/init.lua b/mesecons_switch/init.lua index f52f083..3d59c0a 100644 --- a/mesecons_switch/init.lua +++ b/mesecons_switch/init.lua @@ -1,4 +1,4 @@ --- MESECON_SWITCH +-- mesecons_switch  mesecon.register_node("mesecons_switch:mesecon_switch", {  	paramtype2="facedir", @@ -14,15 +14,15 @@ mesecon.register_node("mesecons_switch:mesecon_switch", {  	end  },{  	groups = {dig_immediate=2}, -	tiles = {	"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", -			"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", -			"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_off.png"}, +	tiles = {	"mesecons_switch_side.png", "mesecons_switch_side.png", +				"mesecons_switch_side.png", "mesecons_switch_side.png", +				"mesecons_switch_side.png", "mesecons_switch_off.png"},  	mesecons = {receptor = { state = mesecon.state.off }}  },{  	groups = {dig_immediate=2, not_in_creative_inventory=1}, -	tiles = {	"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", -			"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", -			"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_on.png"}, +	tiles = {	"mesecons_switch_side.png", "mesecons_switch_side.png", +				"mesecons_switch_side.png", "mesecons_switch_side.png", +				"mesecons_switch_side.png", "mesecons_switch_on.png"},  	mesecons = {receptor = { state = mesecon.state.on }}  }) diff --git a/mesecons_switch/textures/mesecons_switch_off.png b/mesecons_switch/textures/mesecons_switch_off.pngBinary files differ new file mode 100644 index 0000000..2a75ef3 --- /dev/null +++ b/mesecons_switch/textures/mesecons_switch_off.png diff --git a/mesecons_switch/textures/mesecons_switch_on.png b/mesecons_switch/textures/mesecons_switch_on.pngBinary files differ new file mode 100644 index 0000000..9df3450 --- /dev/null +++ b/mesecons_switch/textures/mesecons_switch_on.png diff --git a/mesecons_switch/textures/mesecons_switch_side.png b/mesecons_switch/textures/mesecons_switch_side.pngBinary files differ new file mode 100644 index 0000000..fb5db33 --- /dev/null +++ b/mesecons_switch/textures/mesecons_switch_side.png | 
