Advertisement
Guest User

EXT_CSQC_SETMOUSEPOS

a guest
Nov 17th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. //EXT_CSQC_SETMOUSEPOS
  2. //Sets the position of the mouse pointer.
  3. //Takes coordinates that correspond to those returned by getmousepos (EXT_CSQC, builtin #344)
  4. //The implementation need not accept having the cursor position set - the builtin can have no effect.
  5. //If the implementation does accept setting the cursor position,
  6. //then a call to getmousepos made immediately after setmousepos MUST return the new position.
  7. //The new position may be jittered slightly by transformation to and from screen coordinates.
  8. void(vector pos) setmousepos = #???;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement