Thursday, August 26, 2010

level assignments

Posted level assignments on board and going to thumb some layouts out.

Tuesday, August 24, 2010

Level

Been working on level 3 and posting to see if any one else will post on forum only have a few people posting under level design.

Tuesday, August 17, 2010

Level Design

Got my version of level 2 done just need to discuss with class and wht puzzles every one wants and what they want to keep and what to add. Add spawn points, health,  enemies, main puzzle, structures, and the focus points for player to take.

Programing

tried working on fall damage code Alex gave me but its a messed up code so cant fix it. Got help from Robin and he was trying to help me fix it and figure it out.

Thursday, August 12, 2010

programing

Got respawn to work by changing my less than and greater than values to mach quadrants.

var SpawnPoint1 : GameObject;
var SpawnPoint2 : GameObject;
var SpawnPoint3 : GameObject;
var SpawnPoint4 : GameObject;

function Update()
{    // respawn when player falls off edge and is in either quadrant and be taken to set object

       if(transform.position.y <= -50)
    {
   
       
       
        if(transform.position.x <=  -1  && transform.position.z >= 1)
       
            transform.position = SpawnPoint1.transform.position;
       
        if(transform.position.x >= 1 && transform.position.z >= 1 )
       
            transform.position = SpawnPoint1.transform.position;
       
       
        if(transform.position.x >= 1 && transform.position.z <= 1)
       
            transform.position = SpawnPoint2.transform.position;
       
        if(transform.position.x <= -1 && transform.position.z <= -1)
       
            transform.position = SpawnPoint2.transform.position;
        }
    }

level design

working on level 2 and making sure it is all done and working on concepts

programing

working on SpawnPoints having trouble getting to spawn to multiple points but as level designer i might decide to just make the player spawn to beginning of level when he falls of map. that seems to be the easiest way to do it.

Tuesday, August 10, 2010

new levels

worked on level 2 file got corrupted so started over and got to this point. Gave out level assignments and checking what is done so far. Got with Alex and looked over level. just need to map out puzzles can be used due to programing.

Tuesday, August 3, 2010

Journal entrys

Week 3

 Had a level design team meeting and gave out assignments.
 Worked on level designs draw ups.
 Worked on re-spawn code: still have to change to a game objects location right now it set to x,y,z locations.