mirror of
https://github.com/minetest-mods/i3.git
synced 2024-11-13 22:30:21 +01:00
13 lines
242 B
Lua
13 lines
242 B
Lua
core.after(5, function()
|
|
i3.add_waypoint("Test", {
|
|
player = "singleplayer",
|
|
pos = {x = 0, y = 2, z = 0},
|
|
color = 0xffff00,
|
|
-- image = "heart.png",
|
|
})
|
|
|
|
core.after(5, function()
|
|
i3.remove_waypoint("singleplayer", "Test")
|
|
end)
|
|
end)
|