How do get child component to have it's own rotation

I have a hierarchy where my root component controls Yaw, but beneath that is a child component which I only want to control pitch. For some reason, since it is a child it is always inheriting the Yaw above it, which is good, I want that, however it will not allow me to control the child’s pitch.

How do I get some separate pitch axis control on the child?

You can set the rotation of the component, break the rotator, zero out the roll (and yaw if you want) and leave only the pitch. the expose the pitch so you can control it on tick, or however you like.

If you want the component to not be affected by any pitch values of the root, you can simply offset it by always rotating with the negative amount as compared to the root.

Thanks, I’ll give that a try