emilyclaudet / family-game

A game about a family made by a family
0 stars 0 forks source link

House map #13

Closed emilyclaudet closed 8 years ago

emilyclaudet commented 8 years ago
emilyclaudet commented 8 years ago

@cmclaudet I changed the spawn point so that it's in the piano area. The camera view at the moment is stuck with that part of the map in view for now.

I also changed the conf file to have 768x1024... We'll figure out what makes sense as we develop.

cmclaudet commented 8 years ago

I added collisions for the background and the NPC characters :D the camera also tracks the player now. The code is really messy D: I will comment and fix it up later before merging with master

cmclaudet commented 8 years ago

Also, the background data comes directly from the house map file - not the instantiated map! Haven't read enough about metatables to understand how to call the background data the way STI wants you to. Would be better to call from the map itself. this is a simple workaround for now.

emilyclaudet commented 8 years ago

@cmclaudet ok so for some reason the new tiles that I've added to the Collision layer don't seem to be collidable.

Nevertheless it's all very exciting to see Christopher's artwork in the game.

cmclaudet commented 8 years ago

Oh yeah that's almost certainly because the collisions have been added from the house.lua file in the src directory itself, not the one in the res directory. I created a second one because I couldn't figure out how to loop through the tiles from the instantiated map, so I put a copy of the house.lua file in the same directory as the main to make it easier to work with. It's not ideal and I will change it! Even if we don't use the instantiated map for collisions we still shouldn't need two copies of it.

cmclaudet commented 8 years ago

Collisions issue fixed! Check the dialoguereconstruct branch!