Get started with HTML5 game programming and WADE. Create a basic game that runs on computers, phones and tablets in 17 minutes.
You can download all the assets used in this video tutorial at http://www.clockworkchilli.com/shared/video_tutorial_assets.zip
source
12 comments
https://www.youtube.com/watch?v=J-wnNEPajsM
15.časť ☞Wade Game Engine - Krtko - animácia ║ Programovanie s Yetim
https://www.youtube.com/watch?v=tIDqKxfELEk
16.časť ☞Wade Game Engine - Krtko - skóre ║ Programovanie s Yetim
https://www.youtube.com/watch?v=WkOk0Jh8aUs
17.časť ☞Wade Game Engine - Krtko - správanie║ Programovanie s Yetim
https://www.youtube.com/watch?v=cTzaEMkY7xc
18.časť ☞Wade Game Engine - Množíme krtkov║ Programovanie s Yetim
https://www.youtube.com/watch?v=_jb5xhCiPcs
19.časť ☞Wade Game Engine - Krtko náhoďák║ Programovanie s Yetim
https://www.youtube.com/watch?v=bOMgXu6BN5E
20.časť ☞Wade Game Engine - Krtko vybuchuje║ Programovanie s Yetim
https://www.youtube.com/watch?v=KEjcgxDoBwI
mole.setPosition(0,50);
mole.moveTo(0,-40,100);
mole.state='down';
mole.onMoveComplete=function(){
if (mole.state=='down'){
mole.state='up';
mole.moveTo(0,-40,100); // mole.moveTo(0,-36,100); - this work Why?
}
else if(mole.state=='up'){
mole.state='down';
mole.moveTo(0,44,100);
}
Comments are closed.
Add Comment