采用FastTemplate模板:
默认start()
// Template setup designed for speed.
public class ExCollada extends FastTemplate
{
}
onInit():
// Fired on instantiation of the template.
override protected function onInit():void
{
// Defines the text appearing in the template title.
// 标题描述3D物体的个数和面数
// Away3DLite: Collada Example. Object3D(s): 5, Face(s): 10294
title += " : Collada Example.";
Debug.active = true;
camera.z = -1000;
// Collada文件类
collada = new Collada();
collada.scaling = 600;
collada.centerMeshes = true;
loader = new Loader3D();
loader.loadGeometry("assets/chameleon.dae", collada);
loader.addEventListener(Loader3DEvent.LOAD_SUCCESS, onSuccess);
scene.addChild(loader);
}
onPreRender():
// Fired at the beginning of a render loop.
override protected function onPreRender():void
{
scene.rotationY++;
}
交互动作:
private function onMouseDown(event:MouseEvent = null):void
{
if (loaded)
// material.debug
// Switches on the debug outlines around each face drawn with the material.
model.materialLibrary.getMaterial("material_0_1_0ID").material.debug = true;
}
FastTemplate类:public属性:
FastTemplate类:public方法:
FastTemplate类:protected方法:
今天的文章Away3D Lite:ExCollada分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/4944.html