pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] CVS: Games/Pingus/src/actions jumper.cxx,1.18,1.19


From: grumbel
Subject: [Pingus-CVS] CVS: Games/Pingus/src/actions jumper.cxx,1.18,1.19
Date: 25 Mar 2003 23:15:25 -0000

Update of /var/lib/cvs/Games/Pingus/src/actions
In directory dark:/tmp/cvs-serv28881/actions

Modified Files:
        jumper.cxx 
Log Message:
- some small bugfixes
- added support to remove object from selection

Index: jumper.cxx
===================================================================
RCS file: /var/lib/cvs/Games/Pingus/src/actions/jumper.cxx,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- jumper.cxx  19 Feb 2003 09:50:36 -0000      1.18
+++ jumper.cxx  25 Mar 2003 23:15:23 -0000      1.19
@@ -42,9 +42,9 @@
 Jumper::update ()
 {
   if (pingu->direction.is_right()) {
-    pingu->set_velocity(pingu->get_velocity() + Vector(10.0, -10.0));
+    pingu->set_velocity(pingu->get_velocity() + Vector(5.0, -5.0));
   } else {
-    pingu->set_velocity(pingu->get_velocity() + Vector(-10.0, -10.0));
+    pingu->set_velocity(pingu->get_velocity() + Vector(-5.0, -5.0));
   }
 
   // Move the pingu in the air, so that it can start 'falling'





reply via email to

[Prev in Thread] Current Thread [Next in Thread]