Skip to content

Instantly share code, notes, and snippets.

@ChemiKhazi
Created October 1, 2017 04:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChemiKhazi/d73f60e7d68ad7bb64df7bd9ed6bebc7 to your computer and use it in GitHub Desktop.
Save ChemiKhazi/d73f60e7d68ad7bb64df7bd9ed6bebc7 to your computer and use it in GitHub Desktop.
Sprytile tile picker modifications
# Lines 199-200
if event.alt and event.shift:
cursor_data = 'EYEDROPPER'
# Lines 817-820
elif event.type == 'LEFTMOUSE':
self.left_down = event.value == 'PRESS' and (event.alt is False and event.shift is False)
if (event.alt and event.shift) is True and event.value == 'PRESS':
self.find_face_tile(context, event)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment