Geometry Nodes in Blender 3.0 - Status Update

While this sounds logical, it’s not like curves work outside GN. There they can have a material just fine, and it shows up when you bevel or extrude the curve. So it only shows up on derived meshes, but the material info comes from the curve object.

For example this GN analogue of beveling the curve:


I’d expect this to behave exactly like beveling the curve, but the resulting mesh just has no material.

3 Likes


For some reason “set material” restores material in material list.

2 Likes

To me this seems more complicated than it needs to be, adding a material list to curve geometry seems the most straightforward and consistent solution. That curves can’t be rendered directly I don’t think matters much, it’s clear what the materials would be used for when you tessellate the curves to be renderable.

13 Likes

Are there plans to support the random vector output for the transform node?

What you want is not a geometry transform, but a vector transform mode set on the position attribute :wink: Vector transform already exists in cycles, i made a nodegroup for this here Geometry Nodes - #2144 by BD3D (few posts below)+ it supports reverse toggle

Thanks, but my question was really about why the transform node can’t accept values from the random value node.

I already tried the set position node to set a random position but that one operates per vertex therefor each vertex gets a different random value. I am trying to apply the same random value to every vertex position uniformly.

This was the only solution I could find. I added a random driver to an input field, but this is far from ideal given it is updated on each frame. My other option would be to write a script that is triggered by some common seed I guess.

Change the ID, by default it will use the builtin ID attribute that differ per vertex, if you use a single int value the random will be uniform

It’s not very intuitive because, for this very specific case, the id transfer is done implicitly, like pre-field geonode

1 Like

That works as a decent work around, thanks for the tip.

Hey, @dfelinto!

What do you think about my neon sign generator? Would it be useful as an official demo file? It demonstrates use of the new text nodes very well.

I’ve gotten very good reception of my gumroad page so far:

Let me know what you think!

https://pasteall.org/blend/bf6ff305b07c4853bc76356142d3ae65

2 Likes

@SimonThommes Sorry for talking to you here, but i can’t log in to the geonodes dev-chat, and i feel the need to respond to what you said at the GN.chat:
" When it’s about workflow speed for people that already know which node they want to add the idea is to move more to a search based adding workflow. The add menu is more intended for discoverability and organization. That is a much better approach the more nodes we have."
Please while tweaking the workflows don’t forget those people who have to look at the keypad to know which butten they press, such as me. The “search”-workflow for me is one of the worst.
But the new subcategories are fine for me. Just please don’t forget those people who hate to work with keyboards. Thx.

Of course the intention is not to replace the add menu entirely. But we are only getting more nodes from here. For a fast workflow, hunting down the right menu entry every time you want to add a node is just not viable anymore. The submenus help with organization and will, of course, be kept up to date with new nodes and not go anywhere.

Focusing on the search means that this will also improve over time. The idea is to make the search smarter with nodes you nodes you use a lot to give them priority for example. As more nodes are added we can also leverage the tag system of the assets to find nodes more naturally. And there are already ways to make the search process more efficient. For example a quite reliable way of finding nodes with long names is to use the initials, rather than typing the entire name. (e.g. dpof for Distribute Points on Faces)

Personally I have been also adding nodes via shift+a for the longest time, but more recently switched and I’m not looking back. The only issue for me is that it’s still not super reliable that you get what you want 100% of the time. But that will get better.

9 Likes

That would be absolutely great. It’s how I have become accustomed to other node systems with a fuzzy search. For discovery, a neatly organised menu is useful, but for everyday work, search menu is a must. It would also be great to extend that sort of smarter fuzzy search when doing drag-add-connect from a node input/output.

1 Like

Didn’t read the whole discussion. I just want to add that yes - search is the way to go.
The only problem that I’m facing is that search does not differentiate between build in and custom node groups. Having naming convention helps but this area needs to be managed by a user. Finding a way to quickly switch between default/custom node groups in search would be great.

1 Like

What would be even better could be to be able to type in search simple math expressions and get a node with the correct settings. For example typing the following in search:

  • +1.5 creates a Math Add node with the second item being 1.5
  • *-1 creates a Math Multiply node with the second item being -1
  • /2.5 creates a Math divide node with the second item being 2.5
17 Likes