Advertisement
Sanwi

SnapToCardinal

Mar 21st, 2014
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $${
  2. //Snaps the camera to the nearest cardinal direction (Near perfect N,S,E,W)
  3. //Special thanks to ShadowSniper and Peter for figuring this out :)
  4.  
  5. IF((%YAW% < 45) || (%YAW% >= 315));
  6. LOOK(180,0);
  7. ELSEIF((%YAW% < 314) && (%YAW% >= 225));
  8. LOOK(90,0);
  9. ELSEIF((%YAW% < 224) && (%YAW% >= 135));
  10. LOOK(0,0);
  11. ELSEIF((%YAW% < 134) && (%YAW% >= 45));
  12. LOOK(270,0);
  13. ENDIF;
  14. }$$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement