我正在尝试使用 for 循环来检查用户是否单击了我的 pygame 中的库存槽。我创建了名称为“slot1”、“slot2”、“slot3”等的插槽,一直到“slot13”。我的问题真的是;如何为每次迭代添加“槽”后面的数字?if event.type == pg.MOUSEBUTTONDOWN and event.button == 3: for i in range(14): if mouse_click and inventory_state and slot+str(i).collidepoint(pos): inventory.equip_item(inventory.items[i])
1 回答
一只甜甜圈
TA贡献1836条经验 获得超5个赞
不要将插槽存储在不同的变量中,而是存储在列表中。然后你可以遍历这个列表:
for i in range(13): if mouse_click and inventory_state and slots[i].collidepoint(pos): inventory.equip_item(inventory.items[i])
添加回答
举报
0/150
提交
取消