When playing with cocos2d, I want to make a game with a picture of about 320px * 240px, but it is too small on a PC monitor, so I want to enlarge it and display it in a window of 640px * 480px.
SCALE = 2
director.init(width=320, height=240, autoscale=True)
director.window.width = 320 * SCALE
director.window.height = 240 * SCALE
I'm sorry.
Recommended Posts