[Super-tux-commit] supertux/src gameobjs.cpp,1.44,1.45
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-08-05 13:49:30
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27944/src Modified Files: gameobjs.cpp Log Message: Just tweaked the stomp cloud values a little. A destroying animation would fit nicely, if anyone is willing to do it. Index: gameobjs.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/gameobjs.cpp,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- gameobjs.cpp 5 Aug 2004 10:10:19 -0000 1.44 +++ gameobjs.cpp 5 Aug 2004 13:49:20 -0000 1.45 @@ -418,13 +418,13 @@ SmokeCloud::SmokeCloud(const Vector& pos) : position(pos) { - timer.start(250); + timer.start(300); } void SmokeCloud::action(float elapsed_time) { - position.y -= 2 * elapsed_time; + position.y -= 1.2 * elapsed_time; if(!timer.check()) remove_me(); |