Tutorials Home
What's New
Top Rated
Submit
myTutes
Random!

Tutorials »
3D
3D Engine for Dummies
Author: KStor
The Routine (con't)
The loop
Next we are just going to set up the basic loop. This will be used later for the zoom and the rotations.
Open the 4th frame loop2 and enter
Go to and Play ("loop")
The zoom routine (part 1)
We now have to make a basic zoom routine to transform the zoom value in percent
into the z-coordinate of the view plane. We'll make the zoom buttons in a while.
They way we do our conversion is to take a percent of the distance between the eyez (minimal zoom position)
and the maxzoom position, and add the maxzoom. This way the z of the view plane takes values between eyez and
maxzoom when the zoom takes values between 0 and 100 percent. Open the next to last keyframe zoom
and enter this:
Set Variable: "depth" = - zoom * (eyez -maxzoom) / 100 + eyez
Call ("draw")
The
depth variable contains the z-coordinate of the zoom plane.
The draw command is the central routine of our engine, we'll build it soon.
Also add this command to set the
zoomvalue variable so the zoom shows up.
Set Variable: "zoomvalue" = "zoom= " & zoom & "%"
The drawline routine
This is the last thing we have to do before the drawing routine it self. This routine will be used
to draw the line linking two points. The way it works is that the baseline is duplicated and its
size and position are adjusted to correspond to the points (it works, that's all that counts).
Set Variable: "pt1" = eval("pt1"&n)
Set Variable: "pt2" = eval("pt2"&n)
Set Property ("line"&n, X Position) = eval("2Dx"&pt1)
Set Property ("line"&n, Y Position) = eval("2Dy"&pt1)
Set Property ("line"&n, X Scale) = eval("2Dx"&pt2) - eval("2Dx"&pt1)
Set Property ("line"&n, Y Scale) = eval("2Dy"&pt2) - eval("2Dy"&pt1)
If the number of the line is stored in variable
n, the line number n is drawn.
| » Level Advanced |
|
|
Added: : 2000-12-04
Rating: 8.97 Votes: 2633
Hits: 4706
|
| » Author |
|
KStor is a student living in France and working with Flash during his free time...that is, not very much.
|
| » Download |
|
Download the files used in this tutorial.
|
|
Download (39 kb)
|
|
Get conversion and unzipping tools
for PC and Mac here!
|
| » Forums |
|
More help? Search our boards for quick answers!
|
|
Please rate this tutorial, 10 is the top rating, you can also click the
comments link to read/write a review.
|
|
|