Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
minetest_game
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
minetest_game
Commits
3c8d4879
Commit
3c8d4879
authored
12 years ago
by
Perttu Ahola
Browse files
Options
Downloads
Patches
Plain Diff
Stairs and slabs
parent
d05002ec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
mods/stairs/README.txt
+26
-0
26 additions, 0 deletions
mods/stairs/README.txt
mods/stairs/depends.txt
+1
-0
1 addition, 0 deletions
mods/stairs/depends.txt
mods/stairs/init.lua
+96
-0
96 additions, 0 deletions
mods/stairs/init.lua
with
123 additions
and
0 deletions
mods/stairs/README.txt
0 → 100644
+
26
−
0
View file @
3c8d4879
Minetest 0.4 mod: stairs
=========================
License of source code:
-----------------------
Copyright (C) 2011-2012 Kahrl <kahrl@gmx.net>
Copyright (C) 2011-2012 celeron55, Perttu Ahola <celeron55@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
http://www.gnu.org/licenses/lgpl-2.1.html
License of media (textures and sounds)
--------------------------------------
Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
http://creativecommons.org/licenses/by-sa/3.0/
Authors of media files
-----------------------
Everything not listed in here:
Copyright (C) 2010-2012 celeron55, Perttu Ahola <celeron55@gmail.com>
This diff is collapsed.
Click to expand it.
mods/stairs/depends.txt
0 → 100644
+
1
−
0
View file @
3c8d4879
default
This diff is collapsed.
Click to expand it.
mods/stairs/init.lua
0 → 100644
+
96
−
0
View file @
3c8d4879
-- Minetest 0.4 mod: stairs
-- See README.txt for licensing and other information.
stairs
=
{}
-- Node will be called stairs:stair_<subname>
function
stairs
.
register_stair
(
subname
,
recipeitem
,
groups
,
images
,
description
)
minetest
.
register_node
(
"stairs:stair_"
..
subname
,
{
description
=
description
,
drawtype
=
"nodebox"
,
tiles
=
images
,
paramtype
=
"light"
,
paramtype2
=
"facedir"
,
is_ground_content
=
true
,
groups
=
groups
,
node_box
=
{
type
=
"fixed"
,
fixed
=
{
{
-
0
.
5
,
-
0
.
5
,
-
0
.
5
,
0
.
5
,
0
,
0
.
5
},
{
-
0
.
5
,
0
,
0
,
0
.
5
,
0
.
5
,
0
.
5
},
},
},
})
minetest
.
register_craft
({
output
=
'stairs:stair_'
..
subname
..
' 4'
,
recipe
=
{
{
recipeitem
,
""
,
""
},
{
recipeitem
,
recipeitem
,
""
},
{
recipeitem
,
recipeitem
,
recipeitem
},
},
})
end
-- Node will be called stairs:slab_<subname>
function
stairs
.
register_slab
(
subname
,
recipeitem
,
groups
,
images
,
description
)
minetest
.
register_node
(
"stairs:slab_"
..
subname
,
{
description
=
description
,
drawtype
=
"nodebox"
,
tiles
=
images
,
paramtype
=
"light"
,
is_ground_content
=
true
,
groups
=
groups
,
node_box
=
{
type
=
"fixed"
,
fixed
=
{
-
0
.
5
,
-
0
.
5
,
-
0
.
5
,
0
.
5
,
0
,
0
.
5
},
},
selection_box
=
{
type
=
"fixed"
,
fixed
=
{
-
0
.
5
,
-
0
.
5
,
-
0
.
5
,
0
.
5
,
0
,
0
.
5
},
},
})
minetest
.
register_craft
({
output
=
'stairs:slab_'
..
subname
..
' 3'
,
recipe
=
{
{
recipeitem
,
recipeitem
,
recipeitem
},
},
})
end
-- Nodes will be called stairs:{stair,slab}_<subname>
function
stairs
.
register_stair_and_slab
(
subname
,
recipeitem
,
groups
,
images
,
desc_stair
,
desc_slab
)
stairs
.
register_stair
(
subname
,
recipeitem
,
groups
,
images
,
desc_stair
)
stairs
.
register_slab
(
subname
,
recipeitem
,
groups
,
images
,
desc_slab
)
end
stairs
.
register_stair_and_slab
(
"wood"
,
"default:wood"
,
{
snappy
=
2
,
choppy
=
2
,
oddly_breakable_by_hand
=
2
},
{
"default_wood.png"
},
"Wooden stair"
,
"Wooden slab"
)
stairs
.
register_stair_and_slab
(
"stone"
,
"default:stone"
,
{
cracky
=
3
},
{
"default_stone.png"
},
"Stone stair"
,
"Stone slab"
)
stairs
.
register_stair_and_slab
(
"cobble"
,
"default:cobble"
,
{
cracky
=
3
},
{
"default_cobble.png"
},
"Cobble stair"
,
"Cobble slab"
)
stairs
.
register_stair_and_slab
(
"brick"
,
"default:brick"
,
{
cracky
=
3
},
{
"default_brick.png"
},
"Brick stair"
,
"Brick slab"
)
stairs
.
register_stair_and_slab
(
"sandstone"
,
"default:sandstone"
,
{
crumbly
=
2
,
cracky
=
2
},
{
"default_sandstone.png"
},
"Sandstone stair"
,
"Sandstone slab"
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment