fix more examples https://github.com/electronstudio/raylib-python-cffi/issues/47
This commit is contained in:
parent
218d9a18f7
commit
82d310ea76
12 changed files with 20 additions and 134 deletions
|
@ -45,7 +45,7 @@ SetTargetFPS(60); # Set our game to run at 60 frames-per-second
|
|||
while not WindowShouldClose(): #// Detect window close button or ESC key
|
||||
#// Update
|
||||
#//----------------------------------------------------------------------------------
|
||||
if IsMouseButtonDown(MOUSE_LEFT_BUTTON):
|
||||
if IsMouseButtonDown(MOUSE_BUTTON_LEFT):
|
||||
#// Create more bunnies
|
||||
for i in range(0, 100):
|
||||
if bunniesCount < MAX_BUNNIES:
|
||||
|
|
Reference in a new issue