I envy you... Due to my game programming experience, my dream project is no where close to where you are at... I would want to say don't delete old projects ever again since you can always refactor... I look forward to seeing the game in action~~
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenutexMan.addTexture("ctf_r",new Texture("3ds"+c+"ctf_r.png"));
player = new Object3D(Loader.loadMD2("3ds"+c+"tris.md2", 1f));
player.setTexture("ctf_r");
theWorld.addObject(player);
player.translate(STARTING_POS.x,STARTING_POS.y-100,STARTING_POS.z);
SimpleVector playerPos=player.getTranslation();
SimpleVector dir=new SimpleVector(0, GRAVITY, 0);
dir=theWorld.checkCollisionEllipsoid(playerPos, dir, ELLIPSOID_RADIUS, 1);
player.translate(dir);
Page created in 0.020 seconds with 10 queries.