Reputation: 2224
I am using blender 2.66a to create 3dobject for Cocos3d. In THE BRENWILL tutorial they have used blender 2.4.9 to export to collada file. I cannot find those options that have mentioned in the tutorial(like Triangle,only export selection), when export to collada file.
Where can i find those options in blender 2.66 ? Or is there any difference in options for higher version?
As pod file collada-pod file creation is very important in cocos3d.
Upvotes: 0
Views: 1103
Reputation: 34285
In addition to existing answer, you can directly export your 3D models from blender to .POD format that cocos3d understands. For accomplishing this, you need to add a PowerVR SDK add-on to blender.
Steps to add PVRGeoPOD add-on to blender are
Download the PowerVR SDK(which you may have already done) from this site. Note that this downloads an installer file, which in turns downloads the SDK. During the installation process, they ask you to select what tools need to be installed, I normally select
options. First one is the .blend to .POD (and COLLADA to .POD) converter (including add-ons) and second one is a very useful .POD file viewer. Wait till the installation is complete.
bpy.utils.script_paths("addons")
and note down the path.You can find a detailed explanation here.
Upvotes: 2
Reputation: 3
In blender 2.4.9 we have to specify the options to create collada file. But in blender 2.66 you can create collada file by using the default options. Then convert it into pod file using PowerVR SDK.
Upvotes: 0