Page 1 of 1

are stackable plantlike nodes possible?

PostPosted: Sat Oct 19, 2013 01:14
by Neuromancer
Is there a way to make a plantlike node that is placeable on top of another plantlike node? If so what is the property to set?

PostPosted: Sat Oct 19, 2013 08:19
by Casimir
You mean like papyrus? "Plantlike" is about visual appearance, everything else is independent from it.

PostPosted: Sat Oct 19, 2013 11:14
by Wuzzy
Neuromancer wrote:Is there a way to make a plantlike node that is placeable on top of another plantlike node?

Yes.

Neuromancer wrote:If so what is the property to set?

For the node you want to build to:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
pointable = true,
buildable_to = false,

You normally don’t have to set these properties, since they are implied if you do not mention them in your node definition.

For both nodes:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
drawtype = "plantlike",     -- I hope that’s obvious