OpenMiner/docs/lua-api-gui-crafting.md

1.6 KiB

Lua API: Crafting Widget

Example

gui:crafting {
	name = "inv_crafting",
	pos = {x = 29, y = 16},
	result_pos = {x = 123, y = 34},

	inventory = {
		source = "block",
		block = {x = pos.x, y = pos.y, z = pos.z},
	},

	shift_destination = "inv_main,inv_hotbar",
}

Attributes

inventory

Inventory to use for the crafting table.

Example:

inventory = {
	source = "block",
	block = {x = 0, y = 10, z = 20},
}
-- or
inventory = {
	source = "temp",
	size = 2,
},

block

Specify the block to use with block inventory source.

block = {
	x = 0,
	y = 0,
	z = 0
}

offset

Offset of the subset of the source inventory. Only used with block inventory source.

Example:

offset = 0 -- default value

size

Size of the crafting table. Used with both block and temp inventory sources.

Example:

size = 3 -- default value, 3x3 crafting table

source

Source of the inventory displayed.

Example:

source = "block"

Possible values:

  • block: Set a specific block as the source
  • temp: Set a temporary inventory as the source

name

Name of the widget. Mandatory field.

Example:

name = "inv_crafting"

pos

Position of the widget. Mandatory field.

Example:

pos = {
	x = 0,
	y = 0
}

result_pos

Position of the result slot of the crafting table.

Example:

result_pos = {
	x = 0,
	y = 0
}

shift_destination

Names of the inventories used for the Shift+Click action, separated by ,

Example:

shift_destination = "inv_hotbar,inv_main"