mirror of
https://github.com/pyrollo/display_modpack.git
synced 2025-07-18 07:50:25 +02:00
Compare commits
1 Commits
master
...
ad30eeab23
Author | SHA1 | Date | |
---|---|---|---|
ad30eeab23 |
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[submodule "display_api"]
|
||||||
|
path = display_api
|
||||||
|
url = https://github.com/pyrollo/display_api.git
|
2
boards/depends.txt
Normal file
2
boards/depends.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
default
|
||||||
|
signs_api
|
@ -137,3 +137,4 @@ minetest.register_craft(
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.log("action", "[boards] loaded.")
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
name=boards
|
name=boards
|
||||||
title = Black boards
|
|
||||||
description=Writable school boards using sign_api
|
description=Writable school boards using sign_api
|
||||||
depends=default,signs_api
|
depends=default,signs_api
|
||||||
|
0
display_api/depends.txt
Normal file
0
display_api/depends.txt
Normal file
@ -29,3 +29,5 @@ 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,3 +1,2 @@
|
|||||||
name=display_api
|
name=display_api
|
||||||
title = Display API
|
|
||||||
description=A library for adding dynamic textures on nodes
|
description=A library for adding dynamic textures on nodes
|
||||||
|
1
font_api/depends.txt
Normal file
1
font_api/depends.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
display_api?
|
@ -33,3 +33,5 @@ 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,4 +1,3 @@
|
|||||||
name=font_api
|
name=font_api
|
||||||
title = Font API
|
|
||||||
description=A library for rendernig text on textures
|
description=A library for rendernig text on textures
|
||||||
optional_depends=display_api
|
optional_depends=display_api
|
||||||
|
1
font_metro/depends.txt
Normal file
1
font_metro/depends.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
font_api
|
@ -22,3 +22,4 @@ font_api.register_font(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
minetest.log("action", "[font_metro] loaded.")
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
name=font_metro
|
name=font_metro
|
||||||
title = Metro Font
|
|
||||||
description=Metro font (latin, accents, cyrillic, greek) for font_api
|
description=Metro font (latin, accents, cyrillic, greek) for font_api
|
||||||
depends=font_api
|
depends=font_api
|
||||||
|
5
ontime_clocks/depends.txt
Normal file
5
ontime_clocks/depends.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
default
|
||||||
|
dye
|
||||||
|
display_api
|
||||||
|
|
||||||
|
intllib?
|
@ -29,3 +29,5 @@ 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,5 +1,4 @@
|
|||||||
name=ontime_clocks
|
name=ontime_clocks
|
||||||
title = Ontime Clocks
|
|
||||||
description=Clocks displaing real ingame time
|
description=Clocks displaing real ingame time
|
||||||
depends=default,dye,display_api
|
depends=default,dye,display_api
|
||||||
optional_depends=intllib
|
optional_depends=intllib
|
||||||
|
4
signs/depends.txt
Normal file
4
signs/depends.txt
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
default
|
||||||
|
dye
|
||||||
|
signs_api
|
||||||
|
intllib?
|
@ -31,6 +31,4 @@ 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,5 +1,4 @@
|
|||||||
name=signs
|
name=signs
|
||||||
title = Signs
|
|
||||||
description=Basic signs and posters with text display using signs_api
|
description=Basic signs and posters with text display using signs_api
|
||||||
depends=default,dye,signs_api
|
depends=default,dye,signs_api
|
||||||
optional_depends=intllib
|
optional_depends=intllib
|
||||||
|
4
signs_api/depends.txt
Normal file
4
signs_api/depends.txt
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
default
|
||||||
|
intllib?
|
||||||
|
display_api
|
||||||
|
font_api
|
@ -249,3 +249,5 @@ 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,5 +1,4 @@
|
|||||||
name=signs_api
|
name=signs_api
|
||||||
title = Signs API
|
|
||||||
description=A library providing various helper functions for registereing signs with text display
|
description=A library providing various helper functions for registereing signs with text display
|
||||||
depends=default,display_api,font_api
|
depends=default,display_api,font_api
|
||||||
optional_depends=intllib
|
optional_depends=intllib
|
||||||
|
4
signs_road/depends.txt
Normal file
4
signs_road/depends.txt
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
default
|
||||||
|
intllib?
|
||||||
|
dye
|
||||||
|
signs_api
|
@ -31,7 +31,4 @@ 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,5 +1,4 @@
|
|||||||
name=signs_road
|
name=signs_road
|
||||||
title = Signs Road
|
|
||||||
description=Various road signs with text display using signs_api
|
description=Various road signs with text display using signs_api
|
||||||
depends=default,dye,signs_api
|
depends=default,dye,signs_api
|
||||||
optional_depends=intllib
|
optional_depends=intllib
|
||||||
|
5
steles/depends.txt
Normal file
5
steles/depends.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
default
|
||||||
|
intllib?
|
||||||
|
display_api
|
||||||
|
font_api
|
||||||
|
technic?
|
@ -29,3 +29,5 @@ 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,5 +1,4 @@
|
|||||||
name=steles
|
name=steles
|
||||||
title = Steles
|
|
||||||
description=Stone steles with text display on them
|
description=Stone steles with text display on them
|
||||||
depends=default,display_api,font_api
|
depends=default,display_api,font_api
|
||||||
optional_depends=intllib,technic
|
optional_depends=intllib,technic
|
||||||
|
Reference in New Issue
Block a user