Advertisement
Guest User

Untitled

a guest
Feb 19th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.22 KB | None | 0 0
  1. Compass { id: compass }
  2. Image {
  3.     source: "image://theme/icon-m-capslock"
  4.     rotation: {
  5.         if (!compass.reading) return 0;
  6.         return compass.reading ?
  7.             - compass.reading.azimuth : 0
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement