3DGalleryVojaMaher
3d gallery with picture.jpg & *.swf or another file! Change Projection Center & FocalLength with Keyboard or Mouse! Universal Loader... Writing pencil...... more >
Keywords: 3d gallery flash cs4 as3 vojamaher picture resizable writing
| Author URL | mlmonnet.com/ | |||
| Listing URL | none | |||
| Downloads | 1189 | Views | 14789 | |
| vojan | ||||
|
User ratings for 3DGalleryVojaMaher. |
||||
More listings by vojan
Cube 3D gall... |
X and O |
Writing Pens... |
Flash Tetris |
Comments
You need to LOGIN to post a comment.
vojan:
3 months ago
Yes, but to do so, must be changed setting of the entire document.
If you want to see how it would work, do the following with .fla document:
In line 106 insert code:
if(ParentWindow.rotationY < -24) {
PictureLeft.visible = false;
}
else {
PictureLeft.visible = true;
}
if(ParentWindow.rotationY > 20) {
PictureRight.visible = false;
}
else {
PictureRight.visible = true;
}
ParentWindow.rotationY = Math.asin((ProjectionCenter[0] - 320) / 640) * 180 / Math.PI;
ParentWindow.x = 320 - 640 * Math.sin(ParentWindow.rotationY * Math.PI / 180);
This code is before the line with code:
root.transform...
And line 12, 13 & 14 with text:
var ParentWindow:MovieClip = new MovieClip();
addChild(ParentWindow);
var ParWin:ParentWindows = new ParentWindows(ParentWindow, stage, 640, 480);
change to:
var ParentWindowAllWorld:MovieClip = new MovieClip();
addChild(ParentWindowAllWorld);
var ParWin:ParentWindows = new ParentWindows(ParentWindowAllWorld, stage, 640, 480);
var ParentWindow:MovieClip = new MovieClip();
ParentWindowAllWorld.addChild(ParentWin dow);
Now, projections from the left and right side of the wall are real, but they are required and additional limitations, to change the angle and position.
Using this program you can make flying objects. Example:
http://www.tikamika.biz/Wall3dCircle/Wa ll3DCircle.swf
nice work, just one remark; when you zoom out totally , the last pictures (those in the front) are torn apart and seem to be to long to be realistic.. can you fix it ?


