如何在iphone项目中使用.blend文件?

发布于 2024-11-07 20:09:08 字数 119 浏览 0 评论 0原文

我不想在我的项目中使用任何 3D 引擎,例如 SIO2 等引擎。但我仍然想在我的正常项目中使用 .blender 3d 文件

谁能指导我如何继续下去。

谢谢

I dont want to use any 3D engine like SIO2 etc engines in my project. But I still want to use .blender 3d files in my normal projects.

Can anyone please guide me how I can proceed with that.

Thanks

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

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

发布评论

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

评论(2

何以笙箫默 2024-11-14 20:09:08

.blend 格式只不过是带有一些二进制标头字段的 python pickle 对象。不幸的是,它既不是很优化,也不是很容易加载数据。

此外,搅拌机格式很容易出现版本差异,这些差异非常微妙,将由升级的搅拌机版本来处理,但您将花费大量时间来了解 .blend 文件版本之间的所有差异。

我建议您要么为自己喜欢的格式推出自己的导出器(如果它不存在于搅拌机社区或插件中),要么使用通用格式,一些好的全能格式是:

  • Collada(内置)
  • Direct X 格式(内置)

检查了解更多 搅拌机导入和导出插件

The .blend format is not much more than a python pickle object with some binary header fields. It unfortunately is neither very optimized nor easy to load data from.

Also blender format is prone to version differences which are very subtle and will be handled by upgraded blender versions but you will lose a lot of time learning all the differences between the .blend file versions.

I recommend you either roll your own exporter for your own preferred format (should it not exist in the blender community or addons) or use a generic format, some good all-round formats are :

  • Collada (Builtin)
  • Direct X format (Builtin)

Check for more blender import and export plugins

梦毁影碎の 2024-11-14 20:09:08

将混合文件导出为其他格式。

http://wiki.blender.org/index.php /Extensions:2.5/Py/Scripts#Import-Export_Scripts

您选择哪个取决于您将如何渲染对象。查看“原始”导出器,因为您正在滚动自己的渲染器。

Export your blend file to another format.

http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts#Import-Export_Scripts

Which you choose depends upon how you will render your objects. Check out the "raw" exporter, since you are rolling your own renderer.

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