Просмотр исходного кода

Update making_the_camera_follow_a_character.adoc

Fixed broken links.
mitm001 8 лет назад
Родитель
Сommit
0e8cb63f30

+ 4 - 4
src/docs/asciidoc/jme3/advanced/making_the_camera_follow_a_character.adoc

@@ -21,8 +21,8 @@ There are two ways how the camera can do that:
 
 Press the WASD or arrow keys to move. Drag with the left mouse button to rotate.
 
-*  link:http://code.google.com/p/jmonkeyengine/source/browse/trunk/engine/src/test/jme3test/input/TestChaseCamera.java[TestChaseCamera.java]
-*  link:http://code.google.com/p/jmonkeyengine/source/browse/trunk/engine/src/test/jme3test/input/TestCameraNode.java[TestCameraNode.java]
+*  link:https://github.com/jMonkeyEngine/jmonkeyengine/blob/master/jme3-examples/src/main/java/jme3test/input/TestChaseCamera.java[TestChaseCamera.java]
+*  link:https://github.com/jMonkeyEngine/jmonkeyengine/blob/master/jme3-examples/src/main/java/jme3test/input/TestCameraNode.java[TestCameraNode.java]
 
 
 == Camera Node
@@ -71,7 +71,7 @@ The camera's transformation is copied over the spatial's transformation. Use wit
 
 *Code sample:*
 
-*  link:http://code.google.com/p/jmonkeyengine/source/browse/trunk/engine/src/test/jme3test/input/TestCameraNode.java[TestCameraNode.java] – Press the WASD or arrow keys to move. Drag with the left mouse button to rotate.
+*  link:https://github.com/jMonkeyEngine/jmonkeyengine/blob/master/jme3-examples/src/main/java/jme3test/input/TestCameraNode.java[TestCameraNode.java] – Press the WASD or arrow keys to move. Drag with the left mouse button to rotate.
 
 
 == Chase Camera
@@ -130,7 +130,7 @@ a|How fast the camera rotates. Use values around <1.0f (all bigger values are
 
 *Code sample:*
 
-*  link:http://code.google.com/p/jmonkeyengine/source/browse/trunk/engine/src/test/jme3test/input/TestChaseCamera.java[TestChaseCamera.java] – Press the WASD or arrow keys to move. Drag with the left mouse button to rotate.
+*  link:https://github.com/jMonkeyEngine/jmonkeyengine/blob/master/jme3-examples/src/main/java/jme3test/input/TestChaseCamera.java[TestChaseCamera.java] – Press the WASD or arrow keys to move. Drag with the left mouse button to rotate.
 
 
 == Which to Choose?