]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/g_subs.qc
Merge remote-tracking branch 'remotes/origin/terencehill/newpanelhud' into terencehil...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_subs.qc
index 79369b74b9553dbcca2c0859560d46341c7b6111..22c8931bef8813bc43536ab950b281b1a7def223 100644 (file)
@@ -247,9 +247,11 @@ void SUB_CalcMove (vector tdest, float tspeed, void() func)
                return;
        }
 
-       // very short animations don't really show off the effect
-       // of controlled animation, so let's just use linear movement
-       if (traveltime < 0.15)
+       // Very short animations don't really show off the effect
+       // of controlled animation, so let's just use linear movement.
+       // Alternatively entities can choose to specify non-controlled movement.
+        // The only currently implemented alternative movement is linear (value 1)
+       if (traveltime < 0.15 || self.platmovetype == 1)
        {
                self.velocity = delta * (1/traveltime); // QuakeC doesn't allow vector/float division
                self.nextthink = self.ltime + traveltime;
@@ -260,7 +262,7 @@ void SUB_CalcMove (vector tdest, float tspeed, void() func)
        controller.classname = "SUB_CalcMove_controller";
        controller.owner = self;
        controller.origin = self.origin; // starting point
-       controller.finaldest = (tdest + '0 0 1'); // where do we want to end? Offset to overshoot a bit.
+       controller.finaldest = (tdest + '0 0 0.125'); // where do we want to end? Offset to overshoot a bit.
        controller.destvec = delta;
        controller.animstate_starttime = time;
        controller.animstate_endtime = time + traveltime;