我和乌龟玩蛇游戏。我想做一个不同的作弊模式的游戏。例如,当我按键盘上的“c”键时,我希望蛇在碰到边缘或自身时不会死亡。所以,我写这个:
cheat_mode = True ... if not cheat_mode: #check the edge and body
但是,我不能将作弊模式定义为键盘按钮。
chhkpiq41#
为密钥设置处理程序:
turtle.onkey(cheat_on,'c')
激活关注海龟:
turtle.listen()
定义一个 cheat_on 功能:
cheat_on
def cheat_on(): global cheat_mode cheat_mode = True
1条答案
按热度按时间chhkpiq41#
为密钥设置处理程序:
激活关注海龟:
定义一个
cheat_on
功能: