Difference between revisions of "minetest.raillike group"

From Minetest Developer Wiki
Jump to navigation Jump to search
m (Actually it's not just 'visually'; they also connect physics-wise.)
m (typo)
Line 6: Line 6:
  
 
== Description ==
 
== Description ==
When defining a node, the <code>connect_to_raillike</code> group requires a numeric rating value, so that nodes with the same rating can connect together (like rails do when placing them next to each other). This function registers (if it does not exist) or retrieves (if it already exists) a rating value based on a name, and returns it. That name that can be shared by multiple mods, so that all mods that use the same name will be assigned the same rating value.
+
When defining a node, the <code>connect_to_raillike</code> group requires a numeric rating value, so that nodes with the same rating can connect together (like rails do when placing them next to each other). This function registers (if it does not exist) or retrieves (if it already exists) a rating value based on a name, and returns it. That name can be shared by multiple mods, so that all mods that use the same name will be assigned the same rating value.
  
 
== Example ==
 
== Example ==

Revision as of 21:11, 21 November 2018

Creates or retrieves a rating value based on a name, for use with the connect_to_raillike group in minetest.register_node.

Syntax

minetest.raillike_group("name")

Description

When defining a node, the connect_to_raillike group requires a numeric rating value, so that nodes with the same rating can connect together (like rails do when placing them next to each other). This function registers (if it does not exist) or retrieves (if it already exists) a rating value based on a name, and returns it. That name can be shared by multiple mods, so that all mods that use the same name will be assigned the same rating value.

Example

This code will create a node "my_mod:my_gunpowder" that will be able to connect to any nodes that used the name "gunpowder" to invoke this function, like the TNT mod in the Minetest game, but won't be able to connect to any nodes that used a different name, even if adjacent:

minetest.register_node("my_mod:my_gunpowder", {
    ...
    drawtype = "raillike",
    ...
    groups = { connect_to_raillike = minetest.raillike_group("gunpowder"),
               ... }
})