私はグーグル検索を行い、これを行う方法を見つけるために2冊のPython初心者向けの本を検索しました。それは簡単な作業でなければならないと思います。基本的に、私はpythonでpygameを扱っています。
button1_image をクリックすると、button1select_image に変わりますよね?また、button2_image をクリックすると、button1select_image が button1_image に設定され、button2_image が button2select_image に変更されます。
だから私が疑問に思っているのは、それが単純な if else ステートメントなのか、それとももっと複雑なのかということです。明らかに、ボタンは後で別のことを行いますが、ユーザーのマウスのクリックに基づいてこのようなことを行う方法に関するチュートリアルが見つかりません。
# Button Mouse Click Image Change
# Demonstrates changing from one button image to another based on click of mouse.
from livewires import games, color
games.init(screen_width = 281, screen_height = 500, fps = 50)
button1_image = games.load_image("button1.png", transparent = False)
button1 = games.Sprite(image = button1_image, x = 28,y = 18)
games.screen.add(button1)
button1select_image = games.load_image("button1select.png", transparent = False)
button1select = games.Sprite(image = button1select_image, x = 28,y = 18)
games.screen.add(button1select)
button2_image = games.load_image("button2.png", transparent = False)
button2 = games.Sprite(image = button2_image, x = 56,y = 18)
games.screen.add(button2)
button2select_image = games.load_image("button2select.png", transparent = False)
button2select = games.Sprite(image = button2select_image, x = 56,y = 18)
games.screen.add(button2select)
games.screen.mainloop()