Rotation arrow

hello,
i am trying to rotate the arrow depending on boolean of N,S,E,W and same time the camera on the spring arm would move with it.
Capture3
Capture2
Capture1

And your Question is?

im looking for the correct node because they are not rotating with relative or world

Have you ever tried SetRelativeRotation from arrow to change component relative rotation? Like this:
image
If you need set world rotation of component, use SetWorldRotation.
Just convert your bool variables into rotator and pass it as NewRotation parameter.
Also, I think it’s easier to use enum instead of 4 bool to use Switch instead if-else chain.

first of all use a enum variable instead of booleans :slight_smile:
image

image

image

image

image

1 Like

second… :slight_smile:

2 Likes

more elegant version:

image

3 Likes