Platformer Demo
開發者 Cowboy_Creed
加到主畫面,快速進入遊戲
安裝此遊戲
點選分享按鈕,然後選擇「加到主畫面」即可快速安裝此遊戲。
Platformer Demo
Platformer Demo 的標籤
遊戲簡介
I need some help with this platformer. I’m not really sure how to make an exit or how to make the character die after falling off the landscape. Could somebody help me with my coding and make this an actual game someday?
玩法說明
arrows to move
留言
jonb123
Sep. 14, 2009
i give it a four since i would assume it ur first game.
Aertryn
Aug. 01, 2009
SUX
RedFredMedia
Feb. 16, 2009
and to make the character die if he falls off the cliff. ___onClipEvent (enterFrame) {
if (this._y>=900) {
this._x=30, 5;
this._y = 636;
_root.lives -= 1;
___pretty much, place it on the character actionscript. And it means if the characters position (x,y) execed a cetrtian number (in my case 900, but it should be about 100 more than the height of the stage) than decrease the varieble lives (you have to set a varieble called lives and do action scritp that when it is less than 0, the player goes to a next frame which is the game over) and it replaces the character at a nex (x,y) position. good luck with that
RedFredMedia
Feb. 16, 2009
and sorry for all the slack other people give you, it happened to me also. They dont know how long and hard it is to make a game.
RedFredMedia
Feb. 16, 2009
ahh, a fellow devoleper. You have done well so far. Its a very herd thing, making a game. I just finished my first platformer-Pantone Pandemonium. Took me forever. But this website is where i get all my stuff from
http://www.tutorialized.com/tutorials/Flash/Games/1
its really great. That and there was one on new grounds.com that helped me with my platformer. You have a good start. Keep working.