@@ -6131,11 +6131,13 @@ Player properties need to be saved manually.
6131
6131
-- Defaults to 1.625.
6132
6132
6133
6133
physical = true,
6134
+ -- Collide with `walkable` nodes.
6134
6135
6135
6136
collide_with_objects = true,
6136
6137
-- Collide with other objects if physical = true
6137
6138
6138
6139
weight = 5,
6140
+ -- Unused.
6139
6141
6140
6142
collisionbox = {-0.5, 0.0, -0.5, 0.5, 1.0, 0.5}, -- Default
6141
6143
selectionbox = {-0.5, 0.0, -0.5, 0.5, 1.0, 0.5},
@@ -6170,7 +6172,8 @@ Player properties need to be saved manually.
6170
6172
-- Multipliers for the visual size. If `z` is not specified, `x` will be used
6171
6173
-- to scale the entity along both horizontal axes.
6172
6174
6173
- mesh = "model",
6175
+ mesh = "model.obj",
6176
+ -- File name of mesh when using "mesh" visual
6174
6177
6175
6178
textures = {},
6176
6179
-- Number of required textures depends on visual.
@@ -6200,14 +6203,20 @@ Player properties need to be saved manually.
6200
6203
-- spritesheet.
6201
6204
6202
6205
is_visible = true,
6206
+ -- If false, object is invisible and can't be pointed.
6203
6207
6204
6208
makes_footstep_sound = false,
6209
+ -- If true, is able to make footstep sounds of nodes
6210
+ -- (see node sound definition for details).
6205
6211
6206
6212
automatic_rotate = 0,
6207
6213
-- Set constant rotation in radians per second, positive or negative.
6208
6214
-- Set to 0 to disable constant rotation.
6209
6215
6210
6216
stepheight = 0,
6217
+ -- If positive number, object will climb upwards when it moves
6218
+ -- horizontally against a `walkable` node, if the height difference
6219
+ -- is within `stepheight`.
6211
6220
6212
6221
automatic_face_movement_dir = 0.0,
6213
6222
-- Automatically set yaw to movement direction, offset in degrees.
@@ -6659,7 +6668,8 @@ Used by `minetest.register_node`.
6659
6668
-- Tells connected nodebox nodes to connect only to these sides of this
6660
6669
-- node
6661
6670
6662
- mesh = "model",
6671
+ mesh = "model.obj",
6672
+ -- File name of mesh when using "mesh" drawtype
6663
6673
6664
6674
selection_box = {
6665
6675
type = "fixed",
0 commit comments