Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
plantlife_modpack
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
plantlife_modpack
Commits
21e43912
Commit
21e43912
authored
12 years ago
by
Vanessa Ezekowitz
Browse files
Options
Downloads
Patches
Plain Diff
tweaks to the documentation/comments for the mapgen function
parent
7db6ed7f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
API.txt
+26
-18
26 additions, 18 deletions
API.txt
with
26 additions
and
18 deletions
API.txt
+
26
−
18
View file @
21e43912
...
@@ -121,35 +121,43 @@ plantslib:register_generate_plant(biome)
...
@@ -121,35 +121,43 @@ plantslib:register_generate_plant(biome)
Where "biome" is a table containing about a dozen variables:
Where "biome" is a table containing about a dozen variables:
biome = {
biome = {
surface = "string", -- [*] what nodes to spawn on
surface = "string", -- [*] what nodes to spawn on
.
avoid = {table}, -- [*] what nodes to avoid when spawning
avoid = {table}, -- [*] what nodes to avoid when spawning
.
radius = num, -- [*] how much distance to leave between
radius = num, -- [*] how much distance to leave between
objects
the object to be added and the objects
seed_diff = num, -- perlin seed-diff value. Defaults to 0.
to be avoided.
neighbors = {table}, -- table of what ground nodes must be right
seed_diff = num, -- perlin seed-diff value. Defaults to 0,
next to and at the same elevation as the
which causes the function to inherit the
node to be spawned on. Defaults to the
global value of 329.
value of the "surface" string.
neighbors = {table}, -- What ground nodes must be right next to and
ncount = num, -- how many of the above nodes must be nearby
at the same elevation as the node to be
(at least this many).
spawned on. Defaults to the value of the
"surface" string.
ncount = num, -- at least this many of the above nodes must
be next to the node to spawn on. Any value
greater than 8 will probably cause the code
to never spawn anything. Defaults to 0.
depth = num, -- how deep/thick of a layer the spawned-on
depth = num, -- how deep/thick of a layer the spawned-on
node must be
(t
ypically used for water
)
.
node must be
. T
ypically used for water.
Defaults to
62000 (
unlimited
)
.
Defaults to unlimited.
min_elevation = num, -- minimum elevation in meters/nodes.
min_elevation = num, -- minimum elevation in meters/nodes.
Defaults to -31000 (unlimited).
Defaults to -31000 (unlimited).
max_elevation = num, -- maximum elevation. Defaults to +31000
max_elevation = num, -- maximum elevation. Defaults to +31000
(unlimited)
(unlimited)
.
near_nodes = {table}, -- what nodes must be in the general vicinity
near_nodes = {table}, -- what nodes must be in the general vicinity
of the object being spawned.
of the object being spawned.
near_nodes_size = num, -- how wide of a search area to look for
near_nodes_size = num, -- how wide of a search area to look for
the nodes in that list.
the nodes in that list.
near_nodes_count = num, --
how
many of those nodes must be
in the
near_nodes_count = num, --
at least this
many of those nodes must be
area
in the
area
.
temp_min = num, -- minimum perlin temperature value needed to
temp_min = num, -- minimum perlin temperature value needed to
spawn an object (=hottest allowable temp.)
spawn an object (represents the hottest
temp_max = num, -- maximum perlin temperature value (=coldest)
allowable temperature).
temp_max = num, -- maximum perlin temperature value (coldest
allowable temperature).
exec_funct = "string", -- [**] name of the function to use to
exec_funct = "string", -- [**] name of the function to use to
actually build the object.
actually build the object if the code
decides it is time to do so.
}
}
[*] These entries are required for the spawn code to work. Everything else
[*] These entries are required for the spawn code to work. Everything else
...
...
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