Center player

This commit is contained in:
Bruce Hill 2024-09-08 20:26:33 -04:00
parent f33b7048d7
commit ba3413a9c9
2 changed files with 2 additions and 1 deletions

View File

@ -27,5 +27,5 @@ struct Player(pos,prev_pos:Vec2):
p.prev_pos, p.pos = p.pos, p.pos + World.DT*vel
func draw(p:&Player):
func draw(p:Player):
Color.PLAYER:draw_rectangle(p.pos, Player.SIZE)

View File

@ -84,6 +84,7 @@ struct World(player:@Player, goal:@Box, boxes:[@Box], dt_accum=0.0, won=no):
(&w.boxes):insert(box)
else if cell == "@":
pos := Vec2((Num(x)-1) * box_size.x, (Num(y)-1) * box_size.y)
pos += box_size/2. - Player.SIZE/2.
w.player = @Player(pos,pos)
else if cell == "?":
pos := Vec2((Num(x)-1) * box_size.x, (Num(y)-1) * box_size.y)