3d中点击的应用

25 八月 2010 | No Comments »

在3D中,要解决点击的方法,教程很多,在这里自学到一些经验与大家分享

Continue Reading

3D开发必备知识站点

19 八月 2010 | No Comments »

Here is a round up of some of the most popular ActionScript 3.0 (AS3) libraries out there to use. Let me know if I have missed an important one off.

NOTE: This list was originally for my personal use (that I thought I would share), it is not intended to compete with or replace the list maintained by OSFlash.

Update 29/10/08: Ted Patrick has put together a list of ActionScript Cloud/Service APIs that he going to highlight during his Adobe MAX 2008 keynote presentation.

Update 28/11/08: I have just come across the Actionscript Classes website. A very handy resource.

Update 11/01/09: Rich Tretola has a small list of AS3 Libs on his blog EverythingFlex.

Update 12/01/09: The Flashchemist has compiled a similar list on his blog.

Update 27/02/09: Check out Spark Project which includes the FLARToolkit for Augmented Reality

Update 11/08/09: I just stumbled across this (old) list of projects.

Update 19/12/09: Sean “theflexguy” Moore has just written a blog entry called ‘List of 34 More ActionScript 3.0 APIs‘. This is a follow-up to his original post ‘List of 22 ActionScript 3.0 API’s‘.

Update 22/12/09: “30+ ‘Must Try’ Open Source Actionscript 3 Libraries” and “30 MORE Awesome Open Source AS3 Libraries”

Update 28/01/10: “30 Classes AS3 bem úteis!”

Update 29/01/10: “15 Awesome ActionScript 3 Frameworks To Inspire Your Next Project”

Update 24/02/10: Emanuele Feronato has a good list of Isometric Engines on his blog

Update 19/03/10: Tom Krcha has posted a list of Flash Gaming Engines, plus a few others that were new to me

Update 09/07/10: FluxDb has a huge list of AS3 Libraries

3D Engines

Papervision3D

http://blog.papervision3d.org/

Continue Reading

用pv3d贴图效果

17 八月 2010 | No Comments »

首次利用pv3d实现简单正方体效果,

taoring pv3d
Continue Reading

PV3D的吸引

13 八月 2010 | No Comments »

当前互动设计中越来越多运用到3D功能,而且国内的客户也越来越喜欢3D站点,运用到线下市场,包括地铁广告,数字电视等等

另外,还有一个开源的away3D

你好,下面就是pv3d的负责在讲解最新3D技术功能

ps:这个之前有一个视频,提到, 未来可以结合摄像头,创造空间操作,呵呵,就是不用键盘,全是虚拟键盘操作。

ps:像蚂蚁一样努力工作吧,呵呵

加载XML出现标记格式必须错误

21 七月 2010 | No Comments »

在加载完XML文件new XML时,出现错误“#1088 文档中根元素后面的标记格式必须正确”

问题分析:

XML内容为ANSI编码、XML内容没错、改为new XMLList不报错

网上有人说是System.useCodePage=true,载入的数据在XML末端有时会莫明其妙跟上一串随机乱码。

问题解决:

System.useCodePage=flase(默认),XML内容改为UTF-8编码

var loader:URLLoader=e.currentTarget as URLLoader;
var data=loader.data;
data=data.substr(0,data.lastIndexOf(“>”)+1);
var xml:XML=new XML(data);
Continue Reading