- Home /
Rotating Object Via Shader Graph
Hi! I am currently racking my brain about a method I have seen to rotate objects around an axis in a shader rather than computing it via Update(). Looking at a sample game unity made (Trash Dash), they have created a shader to do this.
I was wondering if this is possible to do via Shadergraph, plugging it into the "Vertex Position" of PBR Master/ Unlit Master node.
My Current Method is to do it via script in Update() doing
transform.Rotate(Vector3.Up * 50 * Time.deltaTime);
Can anybody suggest a method of achieving the same effect via Shadergraph?
Thanks for taking the time to read!
Your answer

Follow this Question
Related Questions
Shader graph shader won't pick up lighting 0 Answers
Why is the add node not working as expected in shader graph? 2 Answers
Alpha channel imported from photoshop problem 0 Answers
how do i read a node value in shader graph with c # code? 0 Answers
Object velocity affect vertex position in shader graph?? 0 Answers