forked from mtcontrib/display_modpack
Compare commits
4 Commits
ad30eeab23
...
master
Author | SHA1 | Date | |
---|---|---|---|
e0e0305836 | |||
889ee5a88d | |||
f5bd6d1046 | |||
e6c366df04 |
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -1,3 +0,0 @@
|
|||||||
[submodule "display_api"]
|
|
||||||
path = display_api
|
|
||||||
url = https://github.com/pyrollo/display_api.git
|
|
@ -1,2 +0,0 @@
|
|||||||
default
|
|
||||||
signs_api
|
|
@ -137,4 +137,3 @@ minetest.register_craft(
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.log("action", "[boards] loaded.")
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
name=boards
|
name = boards
|
||||||
description=Writable school boards using sign_api
|
title = Black boards
|
||||||
depends=default,signs_api
|
description = Writable school boards using sign_api
|
||||||
|
depends = default,signs_api
|
||||||
|
@ -29,5 +29,3 @@ display_api.path = minetest.get_modpath(display_api.name)
|
|||||||
|
|
||||||
dofile(display_api.path.."/display.lua")
|
dofile(display_api.path.."/display.lua")
|
||||||
dofile(display_api.path.."/deprecation.lua")
|
dofile(display_api.path.."/deprecation.lua")
|
||||||
|
|
||||||
minetest.log("action", "[display_api] loaded.")
|
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
name=display_api
|
name = display_api
|
||||||
description=A library for adding dynamic textures on nodes
|
title = Display API
|
||||||
|
description = A library for adding dynamic textures on nodes
|
||||||
|
@ -1 +0,0 @@
|
|||||||
display_api?
|
|
@ -33,5 +33,3 @@ if minetest.get_modpath("display_api") then
|
|||||||
dofile(font_api.path.."/display_api.lua")
|
dofile(font_api.path.."/display_api.lua")
|
||||||
end
|
end
|
||||||
dofile(font_api.path.."/deprecation.lua")
|
dofile(font_api.path.."/deprecation.lua")
|
||||||
|
|
||||||
minetest.log("action", "[font_api] loaded.")
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
name=font_api
|
name = font_api
|
||||||
description=A library for rendernig text on textures
|
title = Font API
|
||||||
optional_depends=display_api
|
description = A library for rendernig text on textures
|
||||||
|
optional_depends = display_api
|
||||||
|
@ -1 +0,0 @@
|
|||||||
font_api
|
|
@ -22,4 +22,3 @@ font_api.register_font(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
minetest.log("action", "[font_metro] loaded.")
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
name=font_metro
|
name = font_metro
|
||||||
description=Metro font (latin, accents, cyrillic, greek) for font_api
|
title = Metro Font
|
||||||
depends=font_api
|
description = Metro font (latin, accents, cyrillic, greek) for font_api
|
||||||
|
depends = font_api
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
default
|
|
||||||
dye
|
|
||||||
display_api
|
|
||||||
|
|
||||||
intllib?
|
|
@ -29,5 +29,3 @@ ontime_clocks.intllib = S
|
|||||||
dofile(ontime_clocks.path.."/common.lua")
|
dofile(ontime_clocks.path.."/common.lua")
|
||||||
dofile(ontime_clocks.path.."/nodes.lua")
|
dofile(ontime_clocks.path.."/nodes.lua")
|
||||||
dofile(ontime_clocks.path.."/crafts.lua")
|
dofile(ontime_clocks.path.."/crafts.lua")
|
||||||
|
|
||||||
minetest.log("action", "[ontime_clocks] loaded.")
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
name=ontime_clocks
|
name = ontime_clocks
|
||||||
description=Clocks displaing real ingame time
|
title = Ontime Clocks
|
||||||
depends=default,dye,display_api
|
description = Clocks displaing real ingame time
|
||||||
optional_depends=intllib
|
depends = default,dye,display_api
|
||||||
|
optional_depends = intllib
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
default
|
|
||||||
dye
|
|
||||||
signs_api
|
|
||||||
intllib?
|
|
@ -31,4 +31,6 @@ dofile(signs.path.."/nodes.lua")
|
|||||||
dofile(signs.path.."/crafts.lua")
|
dofile(signs.path.."/crafts.lua")
|
||||||
dofile(signs.path.."/compatibility.lua")
|
dofile(signs.path.."/compatibility.lua")
|
||||||
|
|
||||||
minetest.log("action", "[signs] loaded.")
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
name=signs
|
name = signs
|
||||||
description=Basic signs and posters with text display using signs_api
|
title = Signs
|
||||||
depends=default,dye,signs_api
|
description = Basic signs and posters with text display using signs_api
|
||||||
optional_depends=intllib
|
depends = default,dye,signs_api
|
||||||
|
optional_depends = intllib
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
default
|
|
||||||
intllib?
|
|
||||||
display_api
|
|
||||||
font_api
|
|
@ -249,5 +249,3 @@ end
|
|||||||
|
|
||||||
-- Text entity for all signs
|
-- Text entity for all signs
|
||||||
display_api.register_display_entity("signs:display_text")
|
display_api.register_display_entity("signs:display_text")
|
||||||
|
|
||||||
minetest.log("action", "[signs_api] loaded.")
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
name=signs_api
|
name = signs_api
|
||||||
description=A library providing various helper functions for registereing signs with text display
|
title = Signs API
|
||||||
depends=default,display_api,font_api
|
description = A library providing various helper functions for registereing signs with text display
|
||||||
optional_depends=intllib
|
depends = default,display_api,font_api
|
||||||
|
optional_depends = intllib
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
default
|
|
||||||
intllib?
|
|
||||||
dye
|
|
||||||
signs_api
|
|
@ -31,4 +31,7 @@ dofile(signs_road.path.."/nodes.lua")
|
|||||||
dofile(signs_road.path.."/crafts.lua")
|
dofile(signs_road.path.."/crafts.lua")
|
||||||
dofile(signs_road.path.."/compatibility.lua")
|
dofile(signs_road.path.."/compatibility.lua")
|
||||||
|
|
||||||
minetest.log("action", "[signs_road] loaded")
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
name=signs_road
|
name = signs_road
|
||||||
description=Various road signs with text display using signs_api
|
title = Signs Road
|
||||||
depends=default,dye,signs_api
|
description = Various road signs with text display using signs_api
|
||||||
optional_depends=intllib
|
depends = default,dye,signs_api
|
||||||
|
optional_depends = intllib
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
default
|
|
||||||
intllib?
|
|
||||||
display_api
|
|
||||||
font_api
|
|
||||||
technic?
|
|
@ -29,5 +29,3 @@ steles.intllib = S
|
|||||||
dofile(steles.path.."/config.lua")
|
dofile(steles.path.."/config.lua")
|
||||||
dofile(steles.path.."/nodes.lua")
|
dofile(steles.path.."/nodes.lua")
|
||||||
dofile(steles.path.."/crafts.lua")
|
dofile(steles.path.."/crafts.lua")
|
||||||
|
|
||||||
minetest.log("action", "[steles] loaded.")
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
name=steles
|
name = steles
|
||||||
description=Stone steles with text display on them
|
title = Steles
|
||||||
depends=default,display_api,font_api
|
description = Stone steles with text display on them
|
||||||
optional_depends=intllib,technic
|
depends = default,display_api,font_api
|
||||||
|
optional_depends = intllib,technic
|
||||||
|
Reference in New Issue
Block a user