Support touch drawing on web

This commit is contained in:
Ray 2020-03-02 12:22:38 +01:00
parent 3c2ee1cc75
commit a1b2d96d9c

View file

@ -106,7 +106,7 @@ int main(void)
EndTextureMode(); EndTextureMode();
} }
if (IsMouseButtonDown(MOUSE_LEFT_BUTTON)) if (IsMouseButtonDown(MOUSE_LEFT_BUTTON) || (GetGestureDetected() == GESTURE_DRAG))
{ {
// Paint circle into render texture // Paint circle into render texture
// NOTE: To avoid discontinuous circles, we could store // NOTE: To avoid discontinuous circles, we could store
@ -194,7 +194,7 @@ int main(void)
DrawRectangle(0, 150, GetScreenWidth(), 80, BLACK); DrawRectangle(0, 150, GetScreenWidth(), 80, BLACK);
DrawText("IMAGE SAVED: my_amazing_texture_painting.png", 150, 180, 20, RAYWHITE); DrawText("IMAGE SAVED: my_amazing_texture_painting.png", 150, 180, 20, RAYWHITE);
} }
EndDrawing(); EndDrawing();
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
} }