pw_Houdini_VEX_Editor
pw_Houdini_VEX_Editor copied to clipboard
Failed when I press Ctrl + Enter
Hello, when I input this , houdini console tell me failed.
float d = @P.x; @P.y = chramp('pulse',d) * ch('amp');
but it is work well when I past it in attribute wrangle. sorry for my bad english. thanks!
VEX Editor try to create this parameters, in contrast to the wrangle. This is some bug, because editor create parameter which already exists. I will check but i not planing release new versions or support this VEX editor. After my current project i will start new version of VEX Editor from scratch. Try to disable Auto update parameters on save in Options dialog
Also you can try to sepparate parameter reading;
float x = chramp('pulse', d);
float a = ch('amp');
@P.x = x * a;
Parser try to parse each parameter separately and expect one parameter per string. Maybe it problem.
Wow, very thanks for your reply, I am new start in vex, very glad to see your plan with new editor.
I have shared your editor to my friends, it's very handy in ch function. any possible to show function description in future, like the sublime text version. in flow image.
Yes, its posible