AbacabaTutorialDrawer
AbacabaTutorialDrawer copied to clipboard
Support for screens with lower resolutions (e.g. 1280x720)
So, when I tried to run this program, most of the details went off the screen. Then I checked the source code and found that it is for 1920x1080
screens, which is not friendly to small screen users like me.
Perhaps you could add a second version for 1280x720
, like dividing all coordinates by 3/2.
I know I'm late, but isn't this the size(1920,1080);
on line 69?
Change size(1920, 1080); to size(1280, 720);. Then, right after the "void draw(){" line, add the line "scale(2.0/3.0);"