Chrizzo Posted October 16, 2017 Share Posted October 16, 2017 (edited) Hey Guys, I'm trying to control the y-rotation of a UV-Project-Node using an attribute "y-angle", which is a float and stored on point-level. If I type "@y-angle" in the y-rotation parameter field of the UV-Project-Node, it doesen't do anything. In the spreadsheet window it shows up with the correct value, but the parameter only gets zero as a value. So, is it even possible to do such operation ? Greetings, Chrizzo Edited October 16, 2017 by Chrizzo Quote Link to comment Share on other sites More sharing options...
konstantin magnus Posted October 16, 2017 Share Posted October 16, 2017 (edited) Why would you set the rotation on a point-by-point basis? Just run an attribwrangle on detail, which stores one attribute for the whole geometry: f@uv_rot_y = 24.67; And access the attribute inside the uvtexture node´s rotation with a detail expression: detail(0, "uv_rot_y", 0); Edited October 16, 2017 by konstantin magnus 1 Quote Link to comment Share on other sites More sharing options...
Chrizzo Posted October 16, 2017 Author Share Posted October 16, 2017 4 hours ago, konstantin magnus said: Why would you set the rotation on a point-by-point basis? Just run an attribwrangle on detail, which stores one attribute for the whole geometry: f@uv_rot_y = 24.67; And access the attribute inside the uvtexture node´s rotation with a detail expression: detail(0, "uv_rot_y", 0) First of all, thank you very much for your answer. I actually tried, storing the value on detail-level, but not with the expression. This was the missing link, so thank yo again ! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.