存档

文章标签 ‘flash3d’

NBA基于FLASH技术的3d游戏酷站

2010年2月21日 评论已被关闭
分类: Flash 标签: , ,

使用Away3D制作flash 3d游戏教程

2009年8月24日 评论已被关闭

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.

I also have a general collection of Away3D tutorials.

Go back to the Tutorial Index

分类: 生活杂谈 标签: , ,

日本牛人的flash 3D作品

2008年10月17日 评论已被关闭

很早以前有看到过,没有记录。

http://temp.roxik.com/datas/max2007/index.html

分类: 生活杂谈 标签:

Papervision3d Tutorials in Flex 3

2008年5月14日 评论已被关闭

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入门教程

2008年5月13日 评论已被关闭

又一个FLASH 3D场景渲染

2008年4月21日 评论已被关闭
分类: 未分类 标签: , ,

Getting Started with Adobe Flex and Away3D

2008年3月31日 评论已被关闭
分类: 未分类 标签: ,

Good3D

2008年3月10日 评论已被关闭
分类: 生活杂谈 标签: ,

3d效果

2008年3月9日 评论已被关闭

花了一个小时看了一个PV3d,制作了一个效果

 

分类: 生活杂谈 标签:

Sandy3d 教程

2008年2月3日 评论已被关闭

入门学习的一些笔记,仅供参考:

使用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();

分类: 未分类 标签: ,