diff options
author | Calinou <Calinou@users.noreply.github.com> | 2015-06-20 18:29:03 +0200 |
---|---|---|
committer | Calinou <Calinou@users.noreply.github.com> | 2015-06-20 18:29:03 +0200 |
commit | 6c9550e2c5eab3e0294d335c036414a811044c25 (patch) | |
tree | ada6ae63c6f6a65530c9ae8a3552e5ba88e3b0cd /stairsplus | |
parent | d8dac59c697f3b9541f515e136cfe5196156e025 (diff) | |
parent | 0ba64153aeefc86c51e2ea150726a3b9c51e0405 (diff) |
Merge pull request #9 from beyondlimits/master
Add new "inner cut" slopes
Diffstat (limited to 'stairsplus')
-rw-r--r-- | stairsplus/slopes.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/stairsplus/slopes.lua b/stairsplus/slopes.lua index 3a16906..45d274f 100644 --- a/stairsplus/slopes.lua +++ b/stairsplus/slopes.lua @@ -162,6 +162,24 @@ function stairsplus:register_slope(modname, subname, recipeitem, fields) --============================================================== + ["_inner_cut"] = { + mesh = "moreblocks_slope_inner_cut.obj", + collision_box = box_slope_inner, + selection_box = box_slope_inner, + }, + ["_inner_cut_half"] = { + mesh = "moreblocks_slope_inner_cut_half.obj", + collision_box = box_slope_inner_half, + selection_box = box_slope_inner_half, + }, + ["_inner_cut_half_raised"] = { + mesh = "moreblocks_slope_inner_cut_half_raised.obj", + collision_box = box_slope_inner_half_raised, + selection_box = box_slope_inner_half_raised, + }, + +--============================================================== + ["_outer"] = { mesh = "moreblocks_slope_outer.obj", collision_box = box_slope_outer, @@ -195,6 +213,11 @@ function stairsplus:register_slope(modname, subname, recipeitem, fields) collision_box = box_slope_outer_half_raised, selection_box = box_slope_outer_half_raised, }, + ["_cut"] = { + mesh = "moreblocks_slope_cut.obj", + collision_box = box_slope_outer, + selection_box = box_slope_outer, + }, } local desc = S("%s Slope"):format(fields.description) |