GrimblyGorn
GrimblyGorn
This behaves much more reasonably now. On mine, it's stacking correctly but the starting alignment has it overlapping the input edge for the node in question as per the example...
Now that I've played with this some more, it seems like it would be useful to have the initial Convert to Input/Extract also actually spawn a primitive when you select...
I had thought some of these might have been handled already by various mods I've happened across and incorporated but maybe not. Many of these would be very useful to...
Looks like you went and coded some things now too :) I'm hoping to check them out later possibly. I see you made the note node too, that's handy on...
Ya one thing that I've found difficult in using this is there seems to be no way of telling what values i'm passing around. In many cases it's clear from...
Oooh you fixed the Optional inputs? That was really bugging me. I may have to go merge yours to mine now :)
Originally I was just planning to add a menu icon to the display menu item and then see if I could add the Set View options for named views so...
I got curious about the grasshopper settings you referred to and started looking around a bit then ran across ([this](https://discourse.mcneel.com/t/defining-plugin-wide-variables-for-grasshopper-plugin/67582/6)) post from David on the Discourse forum that references the...
This new implementation for persistence seems to be functioning correctly and I've not run into any issues with it thus far. I did look briefly into adding an option for...
I stuck this code in the nodes.py file: ```` class ConstFloat: @classmethod def INPUT_TYPES(cls): return {"required": {"n": ("FLOAT", {"multiline": True, "dynamic_prompt": True, "default": 1.0, "min": -512.0, "max": 512.0})}} RETURN_TYPES =...