aboutsummaryrefslogtreecommitdiff
path: root/assets/blender
Commit message (Expand)AuthorAge
* Make the models for Y and three-way turnoutsBlockhead2020-09-11
* Add models for all diamond crossing varieties to .blendBlockhead2020-08-21
* Add perpendicular and 45/90 degree crossing railsBlockhead2020-07-06
* Shunt signals (not exactly Ks), along with fixes in other components that tho...orwell962018-12-08
* Complete Ks Main signalsorwell962018-10-26
* Create models for Ks signalsorwell962018-06-14
* Redo rail modelsorwell962017-03-12
* Remove blend1 files cluttering the assets directoryorwell962017-03-08
* Create new models and textures for japanese trainorwell962017-01-24
* Add animation for steam engineorwell962017-01-17
* Model, animate, texture and integrate new subway wagonorwell962017-01-17
* Restructure mod directoryorwell962017-01-04
ss="hl slc">-- reduction in light level when light passes through minetest.register_node("testnodes:sunlight_filter", { description = S("Sunlight Filter") .."\n".. S("Lets light through, but weakens sunlight"), paramtype = "light", drawtype = "glasslike", tiles = { "testnodes_sunlight_filter.png", }, groups = { dig_immediate = 3 }, }) -- Lets light and sunlight through without obstruction minetest.register_node("testnodes:sunlight_propagator", { description = S("Sunlight Propagator") .."\n".. S("Lets all light through"), paramtype = "light", sunlight_propagates = true, drawtype = "glasslike", tiles = { "testnodes_sunlight_filter.png^[brighten", }, groups = { dig_immediate = 3 }, })