我正在尝试使用 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])
一只甜甜圈
相关分类