473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
|
if props.note then
local nx, ny, nw, nh
if notes_right then
nx = 5.25 - (3 - k.w) -- :/
ny = 0
nw = 4 nh = k.h
else
nx = 0 ny = 3
nw = 4 nh = k,h
end
t = t .. string.format([[
hypertext[%f,%f;%f,%f;note;<global valign=middle halign=justify size=20>%s]
]], nx,ny,nw,nh, minetest.formspec_escape(props.note))
end
if k.icon then img = k.icon(result) end
if k.outdesc then ot = k.outdesc(result) else ot = desc_builtin(result) end
|
|
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
|
if props.note then
local nx, ny, nw, nh
if notes_right then
nx = 5.25 - (3 - k.w) -- :/
ny = 0
nw = 4 nh = k.h
else
nx = 0 ny = 2
nw = 4 nh = k.h
end
t = t .. string.format([[
hypertext[%f,%f;%f,%f;note;<global valign=middle halign=justify size=20>%s]
]], nx,ny,nw,nh, minetest.formspec_escape(props.note))
end
if k.icon then img = k.icon(result) end
if k.outdesc then ot = k.outdesc(result) else ot = desc_builtin(result) end
|