Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJorge Bernal <jbernalmartinez@gmail.com>2015-06-20 02:18:39 +0300
committerJorge Bernal <jbernalmartinez@gmail.com>2015-06-20 02:19:32 +0300
commit51188ecbf16f2a9cd16e2fc3c170bc2f621315f6 (patch)
tree54da0fdf9792a49658a028b102e1743a757c2502 /source
parent8e1ba0b805db988bff8178d707d7435cfc72a1f8 (diff)
BGE Cleanup: Translation of several comments in Dutch
Diffstat (limited to 'source')
-rw-r--r--source/gameengine/Ketsji/KX_CameraActuator.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gameengine/Ketsji/KX_CameraActuator.cpp b/source/gameengine/Ketsji/KX_CameraActuator.cpp
index acf30b4866c..4dc30ae1672 100644
--- a/source/gameengine/Ketsji/KX_CameraActuator.cpp
+++ b/source/gameengine/Ketsji/KX_CameraActuator.cpp
@@ -288,7 +288,7 @@ bool KX_CameraActuator::Update(double curtime, bool frame)
from[1] += fac * fp1[1];
from[2] += fac * fp1[2];
- /* alleen alstie ervoor ligt: cross testen en loodrechte bijtellen */
+ /* only for it lies: cross test and perpendicular bites up */
if (inp < 0.0f) {
if (fp1[0] * fp2[1] - fp1[1] * fp2[0] > 0.0f) {
from[0] -= fac * fp1[1];
@@ -300,7 +300,7 @@ bool KX_CameraActuator::Update(double curtime, bool frame)
}
}
- /* CONSTRAINT 5: minimum / maximum afstand */
+ /* CONSTRAINT 5: minimum / maximum distance */
rc[0] = (lookat[0]-from[0]);
rc[1] = (lookat[1]-from[1]);
@@ -323,7 +323,7 @@ bool KX_CameraActuator::Update(double curtime, bool frame)
}
- /* CONSTRAINT 7: track to schaduw */
+ /* CONSTRAINT 7: track to floor below actor */
rc[0] = (lookat[0]-from[0]);
rc[1] = (lookat[1]-from[1]);
rc[2] = (lookat[2]-from[2]);