diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2016-06-03 19:16:56 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2016-06-03 19:27:18 -0400 |
commit | 842a6d94916296912aba934b2b23d59244ea463b (patch) | |
tree | 20b92c24d2887296a3506c62233534a0e459c426 /digilines_lightsensor | |
parent | df2f0076c553c42c5ef4d2d2fbaff58b0ef8e4fd (diff) | |
download | dreambuilder_modpack-842a6d94916296912aba934b2b23d59244ea463b.tar dreambuilder_modpack-842a6d94916296912aba934b2b23d59244ea463b.tar.gz dreambuilder_modpack-842a6d94916296912aba934b2b23d59244ea463b.tar.bz2 dreambuilder_modpack-842a6d94916296912aba934b2b23d59244ea463b.tar.xz dreambuilder_modpack-842a6d94916296912aba934b2b23d59244ea463b.zip |
update castle, colormachine, moreblocks, pipeworks, tpr, and digilines
Diffstat (limited to 'digilines_lightsensor')
-rw-r--r-- | digilines_lightsensor/depends.txt | 1 | ||||
-rw-r--r-- | digilines_lightsensor/init.lua | 57 | ||||
-rw-r--r-- | digilines_lightsensor/textures/digilines_lightsensor.png | bin | 218 -> 0 bytes |
3 files changed, 0 insertions, 58 deletions
diff --git a/digilines_lightsensor/depends.txt b/digilines_lightsensor/depends.txt deleted file mode 100644 index da1d119..0000000 --- a/digilines_lightsensor/depends.txt +++ /dev/null @@ -1 +0,0 @@ -digilines diff --git a/digilines_lightsensor/init.lua b/digilines_lightsensor/init.lua deleted file mode 100644 index 7dda1ce..0000000 --- a/digilines_lightsensor/init.lua +++ /dev/null @@ -1,57 +0,0 @@ -local GET_COMMAND = "GET" - -local lsensor_nodebox = -{ - type = "fixed", - fixed = { - { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 }, -- bottom slab - - { -7/16, -7/16, -7/16, -4/16, -5/16, 7/16 }, -- bonds - { 4/16, -7/16, -7/16, 7/16, -5/16, 7/16 }, - { -7/16, -7/16, -7/16, 7/16, -5/16, -4/16 }, - { -7/16, -7/16, 4/16, 7/16, -5/16, 7/16 }, - - { -1/16, -7/16, -1/16, 1/16, -5/16, 1/16 }, -- pin thing in the middle - } -} - -local lsensor_selbox = -{ - type = "fixed", - fixed = {{ -8/16, -8/16, -8/16, 8/16, -3/16, 8/16 }} -} - -local on_digiline_receive = function (pos, node, channel, msg) - local setchan = minetest.get_meta(pos):get_string("channel") - if channel == setchan and msg == GET_COMMAND then - local lightval = minetest.get_node_light(pos) - digiline:receptor_send(pos, digiline.rules.default, channel, lightval) - end -end - -minetest.register_node("digilines_lightsensor:lightsensor", { - description = "Digiline Lightsensor", - drawtype = "nodebox", - tiles = {"digilines_lightsensor.png"}, - - paramtype = "light", - groups = {dig_immediate=2}, - selection_box = lsensor_selbox, - node_box = lsensor_nodebox, - digiline = - { - receptor = {}, - effector = { - action = on_digiline_receive - }, - }, - on_construct = function(pos) - local meta = minetest.get_meta(pos) - meta:set_string("formspec", "field[channel;Channel;${channel}]") - end, - on_receive_fields = function(pos, formname, fields, sender) - if (fields.channel) then - minetest.get_meta(pos):set_string("channel", fields.channel) - end - end, -}) diff --git a/digilines_lightsensor/textures/digilines_lightsensor.png b/digilines_lightsensor/textures/digilines_lightsensor.png Binary files differdeleted file mode 100644 index aa88495..0000000 --- a/digilines_lightsensor/textures/digilines_lightsensor.png +++ /dev/null |