Page 1 of 1

[modpack][wip] MB Trees

PostPosted: Thu Feb 09, 2017 08:47
by burli
Finally I ported the palm tree and the birch tree from ethereal into independent mods and can be used now in Minetest Game. They are placed in the same way as the default trees

The tree mod is necessary as it provides some common functions.

This is just a proof of concept and you may expect some bugs.

The tree mod contains an example how mts schematics can be converted to lua scripts. this was necessary to rename the node definition of the palm nodes (thanks to paramat and, I guess, sofar for the script)

This could be a way to add new trees to MTG (not for mapgen v6)

Hint: the tree mod provides a new leaves decay method that will come to MTG some day. I'm not sure how this works in combination with the default ABM. The API may change in the final version

Image

Image

Github: https://github.com/MarkuBu/mb_trees

Re: [modpack][wip] MB Trees

PostPosted: Thu Feb 09, 2017 18:51
by burli
Add the palm wax, coconut slice and candle from ethereal and made a door with palm wood and palm leaves (may need some improvement)

Link to Github added in first post

Image

Re: [modpack][wip] MB Trees

PostPosted: Thu Feb 09, 2017 20:39
by TumeniNodes
burli wrote:Add the palm wax, coconut slice and candle from ethereal and made a door with palm wood and palm leaves (may need some improvement)

Link to Github added in first post

Image


Looks very good burli, I'm checking it out.
Great idea for the doors, using leaves. I like that

Re: [modpack][wip] MB Trees

PostPosted: Thu Feb 09, 2017 22:08
by burli
I want to add birch tar. With that tar you can make better tools with a higher durability and a stronger leather armor

Re: [modpack][wip] MB Trees

PostPosted: Fri Feb 10, 2017 00:57
by ExeterDad
Nicely done burli :)
Glad you got everything worked out with the schemes. I agree the leaves make a cool door.

Re: [modpack][wip] MB Trees

PostPosted: Fri Feb 10, 2017 11:46
by burli
Add bamboo from ethereal (here on grassland. Need more biomes now), but add more leaves and more variation in height

Using Lua table schematics is much more flexible

But I will add more nodes before I push it to github

Image

Re: [modpack][wip] MB Trees

PostPosted: Fri Feb 10, 2017 12:40
by azekill_DIABLO
awesome!

Re: [modpack][wip] MB Trees

PostPosted: Mon Feb 13, 2017 08:28
by burli
I made this birch trees by hand. I will one or both convert to a schematic. But I think the one with the thinner trunk looks better

Image

Re: [modpack][wip] MB Trees

PostPosted: Mon Feb 13, 2017 10:36
by burli
And a "small" Baobab tree (made with acacia wood and leaves. Can be changed later in the schematic)

Image

Re: [modpack][wip] MB Trees

PostPosted: Mon Feb 13, 2017 13:40
by burli
Two more Baobab's

Image

Re: [modpack][wip] MB Trees

PostPosted: Mon Feb 13, 2017 13:54
by burli
Larger palm tree (I forgot the coconuts)

Image

Re: [modpack][wip] MB Trees

PostPosted: Mon Feb 13, 2017 15:05
by burli
And a bigger acacia tree

Image

Re: [modpack][wip] MB Trees

PostPosted: Mon Feb 13, 2017 16:38
by burli
Finally, bigger Acacia tree placed by mapgen

Image

Re: [modpack][wip] MB Trees

PostPosted: Mon Feb 13, 2017 17:00
by burli
Aaand large and gigant baobab trees

Image

And yes, they are hollow

Image

Re: [modpack][wip] MB Trees

PostPosted: Sat Feb 25, 2017 14:32
by burli
Coming next: new nodes for Baobab tree and a new redwood tree

Image

Re: [modpack][wip] MB Trees

PostPosted: Sat Feb 25, 2017 22:09
by TumeniNodes
burli wrote:I made this birch trees by hand. I will one or both convert to a schematic. But I think the one with the thinner trunk looks better

Image


I agree, the thinner tree looks better.
These look really nice burli.

Re: [modpack][wip] MB Trees

PostPosted: Sun Feb 26, 2017 12:08
by azekill_DIABLO
burli wrote:Coming next: new nodes for Baobab tree and a new redwood tree

Image


no it's not a tree that. it's... a... what?

Re: [modpack][wip] MB Trees

PostPosted: Sun Feb 26, 2017 12:45
by Sergey
azekill_DIABLO wrote:no it's not a tree that. it's... a... what?

It's a beacon.

Image

Re: [modpack][wip] MB Trees

PostPosted: Sun Feb 26, 2017 13:54
by azekill_DIABLO
missing the lights but yes, a beacon!

Re: [modpack][wip] MB Trees

PostPosted: Fri Mar 03, 2017 08:26
by burli
Some pine trees, similar to the Minecraft spruce trees
Image

Re: [modpack][wip] MB Trees

PostPosted: Fri Mar 03, 2017 12:48
by toby109tt
This is looking quite impressive!

Re: [modpack][wip] MB Trees

PostPosted: Fri Mar 10, 2017 15:10
by burli
This is a nice idea for a smaller tree. It uses a simple fence post as trunk, but looks great

Image

Re: [modpack][wip] MB Trees

PostPosted: Fri Mar 10, 2017 16:55
by TumeniNodes
hey, that does look really nice. good idea

Re: [modpack][wip] MB Trees

PostPosted: Fri Mar 10, 2017 19:13
by burli
There is even a simpler version.

Image

Re: [modpack][wip] MB Trees

PostPosted: Fri Mar 10, 2017 19:23
by burli
I noticed that schematics taller than 16 nodes are problematic. If they are placed at the top of a chunk they will be cut.

That means, the redwood tree can only be placed between y = 0 and y = 31, otherwise he will be cut at the top. The redwood has a height of 32 nodes

Re: [modpack][wip] MB Trees

PostPosted: Fri Mar 10, 2017 20:36
by TumeniNodes
burli wrote:I noticed that schematics taller than 16 nodes are problematic. If they are placed at the top of a chunk they will be cut.

That means, the redwood tree can only be placed between y = 0 and y = 31, otherwise he will be cut at the top. The redwood has a height of 32 nodes


Well..., there go my planned trees : /

Re: [modpack][wip] MB Trees

PostPosted: Fri Mar 10, 2017 20:40
by burli
L-system trees will work soon without shadow bug. They are not limited in height afaik

https://github.com/minetest/minetest/pull/4967

Re: [modpack][wip] MB Trees

PostPosted: Fri Mar 10, 2017 20:53
by TumeniNodes
I saw that a while back... I'll have to look at it again