update core examples

This commit is contained in:
Richard Smith 2024-02-21 11:23:55 +00:00
parent 83b810b1eb
commit eb68dec2ad
17 changed files with 52 additions and 214 deletions

View file

@ -19,8 +19,7 @@ MAX_GESTURE_STRINGS = 20
SCREEN_WIDTH = 800
SCREEN_HEIGHT = 450
pyray.init_window(SCREEN_WIDTH, SCREEN_HEIGHT,
'raylib [core] example - input gestures')
pyray.init_window(SCREEN_WIDTH, SCREEN_HEIGHT, 'raylib [core] example - input gestures')
touch_position = pyray.Vector2(0, 0)
touch_area = pyray.Rectangle(220, 10, SCREEN_WIDTH - 230, SCREEN_HEIGHT - 20)