DAE 解析器增强现实的问题

发布于 2024-07-21 20:35:56 字数 378 浏览 7 评论 0原文

我尝试了一切,但没有成功。我在导入文件时遇到了很大的问题。这么多错误......花了 5 个小时,但一无所获。 我成功地能够使用 collada 解析器创建项目,但是当我使用 import org.papervision3d.objects.parsers.DAE; 时,所有问题都会出现。 缺少一些文件,当我尝试下载丢失的文件时,它显示我下载的文件中存在错误。 请建议我如何解决这个问题。我想知道任何人都可以上传您用于创建演示的 papervision+libspark+ascollada 的配置(如 Brian Hodge 使用的)。 提前非常感谢。我非常抱歉在帖子 AS3 DAE Augmented Reality PaperVision 3D 中发布这个问题作为答案。我是这个论坛的新手,没有注意到问题标签。非常抱歉...

I tried everything but no success.I am having big problems in importing files.So many error.... spent 5 hours but nothing. I successfully able to create project using collada parser but all the problems are coming when i am using import org.papervision3d.objects.parsers.DAE; There were some files missing and when i tried to download the missing files then it is showing me errors in files that i downloaded. Please suggest me how to get solve it.I wonder w'd it be possible for anyone to upload the configuration of papervision+libspark+ascollada which you used for creating a demo(like Brian Hodge used). Thanks alot in advance.And i am extremely sorry for posting this question in a thread AS3 DAE Augmented Reality PaperVision 3D as an answere.I am new to this forum and havent noticed the question tag.Extremely sorry...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦行七里 2024-07-28 20:35:56

以下是关于 PV3D/Flar 工具包 AR 的相当大的解释的链接

AS3 DAE 增强现实PaperVision 3D

- 问题

您使用什么 IDE 进行开发? Flex Builder 3、Flash Develop 和 Flash CS4 都能够利用 Flex 3 SDK 处理嵌入,但是 Adob​​e Flash CS3 不允许您使用嵌入,也不会识别它。

-Flash CS3 生成以下

TypeError: Error #1007: Instantiation attempted on a non-constructor.
at Untitled_fla::MainTimeline/Untitled_fla::frame1()

内容 -以下内容适用于上面列出的所有其他内容

[Embed(source="foo.jpg")]  //<---  NO SEMICOLON OR BREAKS
private var foo:Class;

var testFoo:Bitmap = new foo();

-重要

我想注意的一件事是,注意嵌入行上没有分号!

希望这有帮助,显然原始发帖人解决了他/她的问题,但想回答 sid。

The following is a link to a rather large explanation on PV3D/Flar toolkit AR

AS3 DAE Augmented Reality PaperVision 3D

-Questions

What IDE are you developing in? Flex Builder 3, Flash Develop, and Flash CS4 are all capable of handling embeds utilizing the Flex 3 SDK, BUT, Adobe Flash CS3 does not allow you to used embed and will not recognize it.

-Flash CS3 produces the following

TypeError: Error #1007: Instantiation attempted on a non-constructor.
at Untitled_fla::MainTimeline/Untitled_fla::frame1()

-The Following works in all the others listed above

[Embed(source="foo.jpg")]  //<---  NO SEMICOLON OR BREAKS
private var foo:Class;

var testFoo:Bitmap = new foo();

-Important

One thing that I would like to note, notice there is no semicolon on the embed line!

Hope this helps, apparently the original poster figured his/her problem out, but wanted to answer sid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文