pointed_thing

From Minetest Developer Wiki
Revision as of 03:44, 19 June 2013 by Kahrl (talk | contribs) (note about minetest.get_pointed_thing_position)
Jump to navigation Jump to search

Table {type = …, under = …, above = …, ref = …}

  • type
  • "nothing"
  • "node"
  • "object"

Notes

  • The utility function minetest.get_pointed_thing_position(pointed_thing, above) can be used to calculate the position of pointed_thing without having to distinguish all possible types.

Examples

{type="nothing"}
{type="node", under=pos, above=pos}
{type="object", ref=ObjectRef}

pointed thing 1.png

Node coordinates are (49,6,-13), pointed_thing is {type = "node", above = {y = 7, x = 49, z = -13}, under = {y = 6, x = 49, z = -13}}

pointed thing 2.png

Node coordinates are (50,7,-13), pointed_thing is {type = "node", above = {y = 7, x = 49, z = -13}, under = {y = 7, x = 50, z = -13}}

pointed thing 3.png

Node coordinates are (49,7,-14), pointed_thing is {type = "node", above = {y = 7, x = 49, z = -13}, under = {y = 7, x = 49, z = -14}}