- added fire particles and stops movement when humvee is shot ( not confirmed to be in final release)
dbLoadImage ( "fire.bmp" , 51 );
dbMakeFireParticles(51 , 51 , 10000 , dbObjectPositionX ( 34 ) , dbObjectPositionY(34) , dbObjectPositionZ( 34) , 10 , 10 , 10);
R = 0 ;
dbStopObject (34) ;
- object collision code
int objCollision(int Obj)
{
if ((dbObjectPositionX( Obj) + 10 == dbObjectPositionX(9)) || (dbObjectPositionY( Obj) + 100 == dbObjectPositionY(9) ) || ( dbObjectPositionZ(Obj) + 100 == dbObjectPositionZ(9)))
{
return collsion1 ;
}
return -1;
}
Changes in Creative Design Process:
- speed everything up ( Beek's idea)
Problems Encountered:
- object collision isnt working ( is now 1st priority)
Next Steps:
- Object collision
- implement buildings
- connecting the three levels
BETA DEADLINE : December 23 2011
No comments:
Post a Comment