Implemented getEntityOnCoord method
This commit is contained in:
parent
df040b54f8
commit
a06ce53fc1
@ -1,8 +1,8 @@
|
||||
import json
|
||||
|
||||
import pygame
|
||||
from game.TerrainTile import TerrainTile
|
||||
from game.Screen import Locations
|
||||
from src.game.TerrainTile import TerrainTile
|
||||
from src.game.Screen import Locations
|
||||
|
||||
from src.entities.Entity import Entity
|
||||
from src.entities.Pickupable import Pickupable
|
||||
@ -75,6 +75,13 @@ class Map:
|
||||
self.screen.draw(object, Locations.MAP, 0, 0)
|
||||
self.collidables.add(object)
|
||||
|
||||
def getEntityOnCoord(self, coord):
|
||||
result = None
|
||||
for entity in self.collidables:
|
||||
if entity.rect.x == coord[0] and entity.rect.y == coord[1]
|
||||
result = entity
|
||||
return result
|
||||
|
||||
def addEntity(self, entity):
|
||||
self.screen.draw(entity, Locations.MAP, 0, 0)
|
||||
self.collidables.add(entity)
|
||||
|
Loading…
Reference in New Issue
Block a user