@@ -4234,6 +4234,8 @@ Definition tables
4234
4234
-- ^ For players only. Defaults to `minetest.PLAYER_MAX_BREATH_DEFAULT`
4235
4235
can_zoom = true,
4236
4236
-- ^ For players only. Enables the zoom feature. Defaults to true
4237
+ eye_height = 1.625,
4238
+ -- ^ For players only. Camera height above feet position in nodes. Defaults to 1.625
4237
4239
physical = true,
4238
4240
collide_with_objects = true, -- collide with other objects if physical = true
4239
4241
weight = 5,
@@ -4261,15 +4263,16 @@ Definition tables
4261
4263
backface_culling = true, -- false to disable backface_culling for model
4262
4264
glow = 0,
4263
4265
-- ^ Add this much extra lighting when calculating texture color.
4264
- value < 0 disables light's effect on texture color.
4265
- For faking self-lighting, UI style entities, or programmatic coloring in mods.
4266
+ -- Value < 0 disables light's effect on texture color.
4267
+ -- For faking self-lighting, UI style entities, or programmatic coloring in mods.
4266
4268
nametag = "", -- by default empty, for players their name is shown if empty
4267
4269
nametag_color = <color>, -- sets color of nametag as ColorSpec
4268
4270
infotext = "", -- by default empty, text to be shown when pointed at object
4269
4271
static_save = true,
4270
- -- ^ If false, never save this object statically. It will simply be deleted when the block gets unloaded.
4271
- -- ^ The get_staticdata() callback is never called then.
4272
- -- ^ Defaults to 'true'
4272
+ -- ^ If false, never save this object statically. It will simply be deleted when the
4273
+ -- block gets unloaded.
4274
+ -- The get_staticdata() callback is never called then.
4275
+ -- Defaults to 'true'
4273
4276
}
4274
4277
4275
4278
### Entity definition (`register_entity`)
0 commit comments