playBlaster
2025年6月9日 18:28:06
Is there a way of creating single points and polygons in APEX without using a SOP add node or VEX? Using the SOP add node requires setting up a dict to wire in that has a few extraneous keys and I've read that using VEX in APEX is something that should avoided, even though it is possible.
edward
2025年6月9日 19:27:27
Not really. I think VEX in APEX probably needs to be supported.
playBlaster
2025年6月10日 12:23:16
edward
Not really. I think VEX in APEX probably needs to be supported.
Thanks for getting back Edward. Maybe it is something that will be added? There is an API for it in python and there are methods for setting and getting attributes in APEX Script...
edward
2025年6月12日 17:21:48
There's a hack you can right now by using the "sop::attribvop" node: set vexsrc to 2, and snippet to the code you want. I've attached an example.
playBlaster
2025年6月13日 20:56:28
edward
There's a hack you can right now by using the "sop::attribvop" node: set vexsrc to 2, and snippet to the code you want. I've attached an example.
Oh wow. Thanks for the example. I'll have to try it out. Where did you hear about That?