存档
使用Away3D制作flash 3d游戏教程
from:http://www.brighthub.com/hubfolio/matthew-casperson/blog/archive/2009/07/11/away3d-tutorial.aspx
I have written a new tutorial series over The Tech Labs that shows you how to create a 3D Flash game using the Away3D engine.
- Away3D Programming Tutorials – Getting Started
- Away3D Programming Tutorial – Effects
- Away3D Programming Tutorial – Mouse Interaction
- Away3D Programming Tutorial – Primitives
- Away3D Programming Tutorial – Environment Material


Papervision3d Tutorials in Flex 3
Flex 3中使用Papervision3d 的教程,原文:http://www.flexhacks.org/wordpress/?p=50
Our group just finished a bunch of tutorials on YouTube with the Source Code released on Google Code. Everything is in Flex 3, Papervsion3D (Great White), and (two tutorials) Wow. Thought I would release them here. You might find some of them useful.
Wow Physics Papervervision3D Starter Code
Demo: http://nkuflc.org/wowphysics/
Source: http://code.google.com/p/flex3cookbook1/downloads/list
YouTube: http://www.youtube.com/watch?v=wYZn0fEtwmQ
Installing the Wow Physics Engine into Flex 3
Demo: http://nkuflc.org/wowphysics/
Source: http://code.google.com/p/flex3cookbook1/downloads/list
YouTube: http://www.youtube.com/watch?v=QwYnCpp4Ewc
3D Sinc Plotter
Demo: http://nkuflc.org/sincplot/
Source: http://code.google.com/p/flex3cookbook1/ under downloads
3D Plotter in Papervison3D and Flex 3 (1 of 2)
http://www.youtube.com/watch?v=YlFLT9YA444
3D Plotter in Papervison3D and Flex 3 (2 of 2)
http://www.youtube.com/watch?v=TvpIFLLLKp8
Molecule Viewer
Demo: http://nkuflc.org/molecule/
Source: http://code.google.com/p/flex3cookbook1/ under downloads
Molecule Viewer in Papervision3D and Flex 3 (1 of 2)
http://www.youtube.com/watch?v=smDWxWx9I8A
Molecule Viewer in Papervision3D and Flex 3 (2 of 2)
http://www.youtube.com/watch?v=QWeMDzvQ9ko
3D Carousel in Flex 3 and Papervision3D (Free Souce Code)
Demo:http://nkuflc.org/carousel/
Source: http://code.google.com/p/flex3cookbook1/ (under downloads)
YouTube:http://www.youtube.com/watch?v=2VWUR0Yh2Ys
Bible Code in Papervision3D and Flex 3
Demo: http://nkuflc.org/omega/
Source: http://code.google.com/p/biblecode/ (under downloads)
YouTube: http://www.youtube.com/watch?v=3gC4MM2INpo
PaperLife3D
Demo: http://nkuflc.org/plnav/
Source: http://code.google.com/p/paperlife/ (under downloads)
(2 of 2) Papervision3D Second Life Nav System in Flex 3
http://www.youtube.com/watch?v=Rt0V7c44T7U
(1 of 2) Papervision3D Second Life Nav System in Flex 3
http://www.youtube.com/watch?v=5WbdTdjVO2c
Papervision 3D: Getting Started in Flex 3
YouTube:http://www.youtube.com/watch?v=sgFWaGheR6g
Papervision3D入门教程
- Papervision3D: Part 1- Foundation and 3D Object Basics
- Papervision3D tutorial from the ground up
- Papervision2: Preparing your tools
- Papervision3D in 5 minutes
- Content creation for Papervision3D using XSI Mod Tool
- Papervision Tutorial
- Papervision 3D Tutorials (with Videos)
- Introduction to Papervision3D
- Mapping textures for use in PaperVision
- Papervision3D 2.0 Interactive Cube
- Mapping Flash video to 3D objects
又一个FLASH 3D场景渲染
Getting Started with Adobe Flex and Away3D
Sandy3d 教程
入门学习的一些笔记,仅供参考:
使用Sandy3d 3.0建立一个3d物件的基本步骤:
1.建立一个摄像机
var carm:Camera3D = new Camera3D(300, 300);
carm.z = -400;
2.建立一个装物件的Group
var g:Group = new Group();
var box:Box = new Box("box", 100, 100, 100);
box.rotateX = 50;
box.rotateY = 50;
g.addChild(box);
3.建立3D场景,把3D场景的容器(当前影片主时间轴),摄像机,Group加入到3D场景
sence = new Scene3D("sence", this, carm, g)
4.渲染3D场景
sence.render();




