Jump to content

Several Question


reddozen
 Share

Recommended Posts

Long list... trying to fully wrap my head around all this stuff... If I'm wrong on anything feel free to correct me. You won't hurt my feelings. I'm just trying to learn as I go.

 

 

 

Octree:

scene.createOrUpdateSelectionOctree();

 

If I put this in my load script anywhere, all the models disappear. It's basically just a black scene. When should this be called in the script, and can anyone give me a very basic overview of how and where to work with the octrees... scene.executeWhenReady?, engine.runRenderLoop?... How do you work with them in real time.

 

 

FBX / Bones / Animations:

If I use the online FBX converter, it doesn't seem to have my bones or animations. Do bones need to be separate files from the meshes and then joined within Babylon? Either my FBX is being exported wrong from 3DS Max 2013, or the converter isn't exporting it correctly, bones cannot be combined into one object, or I'm not setting it up right.

BABYLON.SceneLoader.ImportMesh("", "../Models/Monsters/", "BGoblin_1.babylon", scene,function (mapZone, particleSystems){	mapZone[0].scaling = new BABYLON.Vector3(0.005, 0.005, 0.005);	mapZone[0].rotation = new BABYLON.Vector3(0, -3.141593, 0.000000);	mapZone[0].position = new BABYLON.Vector3(-106.345, 4.32, -13.905);	scene.beginAnimation(mapZone[0], 0, 296, true);});

Zip file attached with FBX, and *.babylon file.

Converted here: http://www.babylonjs.com/converter.html

 

Another weird thing... if I open my FXB in 3DS Max after I save it, only 100 of my 296 or so key frames seem to still be on the model... any ideas on this one?

 

 

Packages:

What's going to be the best way to handle multiple packages. For example, my game is going to have 20~30 maps, and stitch a few of them together by view range and user's machine capabilities. The main town alone has like 600,000 vertices not counting NPCs, collision meshes, etc. So ideally I don't want to have to pack 30 maps worth of objects into a single blender / 3DS Max file. What's going to be the best way to handle this huge number of files. I've tried loading a few things with BABYLON.SceneLoader.ImportMesh but once it's loaded, I have no clue how to access the loaded meshes any longer. objName = scene.getMeshByName("Rag2_bro_mtree_a_04"); throws a null object. There will be way too many items to be able to work with them all in a single 3D editor package.

 

This also brings me into LOD situations where I will for sure need to switch out lower resolution models. This isn't possible if there's no way to call back into the list of loaded models and set visibility etc. Maybe there's something I'm missing, or don't know about...

 

If there was a way to chain the loading of multiple *.babylon packages through a single BABYLON.SceneLoader.Load() call, then I assume that you would be able to manipulate them dynamically in the render loop. Maybe have some kind of function that you can push multiple *.babylon files into a single temp file to load? Then you can load as much stuff as you want up at once..

var fullScene = addPackage(fullScene, "package1.babylon");var fullScene = addPackage(fullScene, "package2.babylon");var fullScene = addPackage(fullScene, "package3.babylon");function addPackage(loaded_packages, package_to_add){    if loaded_packages is a valid babylon file format, then add the package_to_add to the end of loaded_packages    return loaded_packages;}

BGoblin_1.zip

Link to comment
Share on other sites

RE: FBX / Bones / Animations and Online convertor.

 

The .FBX format is proprietary so unless AutoDesk gets paid for a licence converters are unlikely to include animations.

 

You might want to try exporting from 3dMax in a .dae format then either loading that .dae file into Blender or trying it with the online convertor.. The "goblin" babylon file does not contain any animation.

 

The standard Blender will import FBX (in binary format) but no animations again. There is an unofficial Blender FBX importer, from Japan I think, which apparently does import the animations - but I have never tried it.

 

And the .fbx included in the zip files has 296 frames when I view it in the AutoDesk 2013 viewer.

 

cheers, gryff :)

Link to comment
Share on other sites

Octree: You should be able to call it anytime you want. Please share a little repro case because I think you found a bug :)

 

FBX: The current converter does not support bones (for now:))

 

Packages: Love the idea. Will think about it!. But your point about importMesh should work. You should be able to find an imported mesh. Could you again share a repro case??

Link to comment
Share on other sites

ok... so update on the animation from 3DS Max.

 

OpenCollada plugin. With this, there's no need to even support the FBX format... They have it for Maya too. (Autodesk DAE doesn't work with blender)

https://github.com/KhronosGroup/OpenCOLLADA/wiki/OpenCOLLADA-Tools

 

This will put it into a format from 3DS Max that blender can read. I get my full animation keys etc. The babylon exporter from blender then doesn't seem to like some of the collada scene references, and the online converter returns a debug.txt of "The driver has encountered an unexpected error."

 

I will make a couple scenes for you DK

BGoblin_1 (Collada).zip

Link to comment
Share on other sites

OK as promised red, I took at your original .fbx file with the Autodesk FBX Viewer and your .dae file with Blender. See the images below.

 

Image 1:  The AD FBX viewer. Animation plays fine. I have labeled 4 bones - 3 in the head and one in the spine.

 

Image 2:  The .dae file in Blender (mesh hidden) . I have labeled the same areas - note no bones just dotted lines linking bones which just means one bone is linked to another not directly connected. I have no idea if this is just a difference in the way AutoDesh and Blender represent things - or if it is a problem.

 

You will also notice that in Image 2 I have the head bone selected (green 1) but there is no bone showing. The green box shows that the head and tail of the bone are in the same place. Turns out that this occurs for the head, neck, hand bones (at least) as well.

 

Image 3:  This is a picture of the Blender Action Editor with the Head bone unfolded to show what exact rotation, location and scale parts of the head bone animation. Notice that it appears 3 times! And on some bones 4X! 

 

There are also a number of bones that are named "xxxxxxxnub" - at least 14 of them if memory serves me correctly - they don't seem to do anything and do not show up in the Action Editor (more on those later).

 

I tried to use a babylon file I created from the imported .dae file - I got a white screen and this message in my developer console:

 

"Unable to compile effect: default" babylon.js:1
"Defines: #define LIGHT0
#define HEMILIGHT0
#define UV1
#define BONES
#define BonesPerMesh 69
" babylon.js:1
"Optional defines: #define BONES4" babylon.js:1

 

 

ie no animated figure.

 

I don't think the babylon exporter is to blame - rather the DAE exporter and DAE importer are not communicating well with each other. And those triple animations ???

 

Will post another update later today.

 

cheers, gryff :)

post-7026-0-27780000-1401041210.jpg

post-7026-0-74307200-1401041221.jpg

post-7026-0-87663300-1401041233.jpg

Link to comment
Share on other sites

I promised you more on those "xxxxxxxxnub bones" Well here it is.

 

As I said in my previous post, they do not show up in the Blender Action Editor - and seem to represent an end of a chain of bones. So I deleted them, and saved out a new babylon file. Here is the result:

 

Goblin_nonub

 

At least it now loads and is animated - even if the animation is rubbish (weight paint issues?).

 

Right now maybe giving the Japanese "unofficial" Blender FBX importer a try might be a next step.

 

cheers, gryff :)

 

PS: and just a  minor point the light that gets imported has the colour black. If you don't change it to white - you will see nothing.

Link to comment
Share on other sites

Very interesting... thanks for taking a look at this.

 

If you import the DAE back into 3DS Max does it still have the duplicates? IE, is the duplication the Blender importer, or the 3DS exporter.

 

Looks like it's the Blender importer that's not handling it well. I'm not 100% sure though.

Link to comment
Share on other sites

Gryff is definitely our Blender master :)

 

BTW gryff: I have almost finished the instances support for bjs (e.g. same mesh and different position/rotation/scaling, imagine trees in a forest).

 

I would like to allow blender artists to define this option directly in their scene: Is there somewhere in blender a way to define mesh's instance?

Link to comment
Share on other sites

Reading through the Collada file manually, I'm almost certain that this is a blender import issue. There is no duplication of BGoblin_1_Head in the raw Collada.

 

As for the Japanese FBX importer, I can't get Blender 2.69 to recognize it in the list of IO types to select from. Also, from what I've read about this, it will import bones and not animations.

 

 

DK, I will use that A LOT. I have some models that have 20+ clones...

Link to comment
Share on other sites

There is no duplication of BGoblin_1_Head in the raw Collada.

 

I tried a different file. A figure, with no rig,  I had uploaded to Mixamo.com, rigged, added a free animation then downloaded it as a .dae file. Importing it into Blender - it did not show any of those triplication of the animation parameters. However, trying to use it to create a babylon file and viewing it - threw the same errors. Deleting those end of chain bones (not included in the animation) did produce an animation viewable in WebGL - but the animation was rubbish again.

 

If you import the DAE back into 3DS Max does it still have the duplicates? IE, is the duplication the Blender importer, or the 3DS exporter.

 

I took your .dae file and converted it back to an fbx format using the AutoDesk FBX Converter/Viewer, then viewed it. Image below is what I got :(

 

Is the original .dae file, the problem? Or is the AutoDesk converter just crap?

 

Make of it what you will red .

 

cheers, gryff :)

 

post-7026-0-86236400-1401068752.jpg

Link to comment
Share on other sites

BTW gryff: I have almost finished the instances support for bjs (e.g. same mesh and different position/rotation/scaling, imagine trees in a forest).

 

I would like to allow blender artists to define this option directly in their scene: Is there somewhere in blender a way to define mesh's instance?

 

DK, I will post a file for you to download in about an hour with an explanation - give you some ideas maybe.

 

cheers, gryff :)

Link to comment
Share on other sites

Thanks man. We're looking into another solution now instead of going through 3DS. Either exporting straight to collada, or MD5 so we can go straight to blender. Do you know of a better format to start from that would give us bones and animations? Obviously our other OBJ format wont work cause it doesn't support bones.

 

EDIT:

looks like MD5 support is dead in blender.

Link to comment
Share on other sites

DK this may be more for you or whomever made the Collada exporters...

 

gryff,

I cannot duplicate your blender results. It doesn't produce multiple copies of each rotation etc for me, and animates just fine as is in Blender 2.69. So we're not looking at things from identical environments to determine where the problem lies... So we're kind of back to is this a Babylon converter issue?

 

BGoblin_1.png

 

 

This is everything for the Z,Y,X rotations in the raw Collada, and a break out of input, output, and Interpolation for a single bone.

 

<source id="node-BGoblin_1_Head_rotationZ.ANGLE-input">

<param name="TIME" type="float"/>

</source>

 

<source id="node-BGoblin_1_Head_rotationZ.ANGLE-output">

<param name="ANGLE" type="float"/>

</source>

 

<source id="node-BGoblin_1_Head_rotationZ.ANGLE-interpolation">

<param name="INTERPOLATION" type="name"/>

</source>

      <source id="node-BGoblin_1_Head_rotationZ.ANGLE-input">        <float_array id="node-BGoblin_1_Head_rotationZ.ANGLE-input-array" count="297">0 0.03333334 0.06666667 0.1 0.1333333 0.1666667 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666667 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333333 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667 3.9 3.933333 3.966667 4 4.033333 4.066667 4.1 4.133333 4.166667 4.2 4.233333 4.266667 4.3 4.333333 4.366667 4.4 4.433333 4.466667 4.5 4.533333 4.566667 4.6 4.633333 4.666667 4.7 4.733333 4.766667 4.8 4.833333 4.866667 4.9 4.933333 4.966667 5 5.033333 5.066667 5.1 5.133333 5.166667 5.2 5.233333 5.266667 5.3 5.333333 5.366667 5.4 5.433333 5.466667 5.5 5.533333 5.566667 5.6 5.633333 5.666667 5.7 5.733333 5.766667 5.8 5.833333 5.866667 5.9 5.933333 5.966667 6 6.033333 6.066667 6.1 6.133333 6.166667 6.2 6.233333 6.266667 6.3 6.333333 6.366667 6.4 6.433333 6.466667 6.5 6.533333 6.566667 6.6 6.633333 6.666667 6.7 6.733333 6.766667 6.8 6.833333 6.866667 6.9 6.933333 6.966667 7 7.033333 7.066667 7.1 7.133333 7.166667 7.2 7.233333 7.266667 7.3 7.333333 7.366667 7.4 7.433333 7.466667 7.5 7.533333 7.566667 7.6 7.633333 7.666667 7.7 7.733333 7.766667 7.8 7.833333 7.866667 7.9 7.933333 7.966667 8 8.033334 8.066667 8.1 8.133333 8.166667 8.2 8.233334 8.266666 8.3 8.333333 8.366667 8.4 8.433333 8.466666 8.5 8.533334 8.566667 8.6 8.633333 8.666667 8.7 8.733334 8.766666 8.8 8.833333 8.866667 8.9 8.933333 8.966666 9 9.033334 9.066667 9.1 9.133333 9.166667 9.2 9.233334 9.266666 9.3 9.333333 9.366667 9.4 9.433333 9.466666 9.5 9.533334 9.566667 9.6 9.633333 9.666667 9.7 9.733334 9.766666 9.8 9.833333 9.866667</float_array>        <technique_common>          <accessor source="#node-BGoblin_1_Head_rotationZ.ANGLE-input-array" count="297" stride="1">            <param name="TIME" type="float"/>          </accessor>        </technique_common>      </source>      <source id="node-BGoblin_1_Head_rotationZ.ANGLE-output">        <float_array id="node-BGoblin_1_Head_rotationZ.ANGLE-output-array" count="297">-12.6016 -8.389232 -2.862077 3.499476 9.961589 15.74746 20.3657 23.66821 26.02461 27.89527 29.40323 30.44141 30.80072 30.15187 28.10061 15.78205 2.594082 18.97838 18.86184 19.78413 20.39402 20.73683 20.92688 20.76406 19.77579 17.66848 14.36517 10.1896 5.460576 0.537264 -4.27131 -8.709272 -12.6016 -8.362927 -7.704663 -13.50201 -21.66204 -29.95015 -36.32283 -38.81715 -32.85018 -20.53379 -9.129233 5.545638 24.85256 46.36135 67.47153 85.75278 98.92486 106.9382 111.3871 109.7618 101.3562 89.13581 76.12281 63.84479 54.59519 52.31571 56.66527 64.27606 69.82751 70.75369 68.81211 63.84797 60.03531 59.01401 59.0678 59.0678 59.0678 59.06781 59.06781 -12.6016 -25.72474 -71.64178 40.00836 46.99986 42.84556 15.96241 -14.35596 -31.32557 -30.20089 -20.5668 -7.69453 1.493155 5.497757 6.335132 7.798142 9.676251 9.992522 6.687141 0.2339802 -7.696783 -15.85709 -22.8508 -27.35941 -29.06038 -28.01131 -24.59553 -20.06378 -15.76964 -13.50283 -12.6016 -42.90339 -49.87267 -12.7204 12.50942 2.407976 -13.73205 -25.50923 -28.55329 -27.01882 -24.03857 -20.07528 -15.6519 -11.33222 -8.470507 -7.849651 -8.559918 -10.28459 -12.69345 -15.46789 -18.27878 -20.00749 -24.58801 -19.23463 -23.57285 -18.08237 -22.27265 -16.68698 -20.81181 -15.18956 -19.33066 -13.72948 -17.96644 -12.45531 -16.85736 -11.50267 -16.13233 -16.57716 -20.79114 -26.68181 -32.73244 -37.44041 -39.29053 -36.78288 -23.36526 -0.2887881 22.86089 36.53376 36.47595 28.70034 18.31835 10.21972 14.40063 17.70555 18.77652 17.49866 14.52837 11.37776 9.080132 7.674741 8.630865 9.453683 9.453683 -28.86864 -25.32104 -21.94521 -20.78319 -23.75814 -28.71407 -31.42283 -29.29393 -25.20345 -22.92446 -23.94444 -26.45279 -12.6016 -12.67243 -12.75686 -12.85809 -12.97824 -13.12322 -13.29809 -13.5008 -13.73607 -13.95474 -14.08641 -14.12329 -14.09235 -14.003 -13.86626 -13.68405 -13.46726 -13.22171 -12.96076 -12.68596 -12.4073 -12.12631 -11.85834 -11.5814 -11.30381 -11.18295 -11.2897 -11.56018 -11.91691 -12.28569 -12.6016 -11.08307 -9.402596 -7.656315 -5.946179 -4.375908 -3.039386 -2.03661 -1.471494 0.192846 2.750966 3.493622 -0.3225132 -9.688889 -20.44103 -28.19002 -30.3242 -27.66126 -23.49326 -19.24479 -13.97969 -7.429317 -1.383947 2.014412 -0.6233464 -7.933071 -16.13498 -20.68875 -20.61974 -19.03562 -16.52787 -13.68823 -11.11913 -10.15215 -10.78652 -11.68312 -11.97193 -10.6732 -6.719982 6.953399 28.42969 44.58568 48.65009 40.40541 22.90328 1.255158 -20.87245 -37.14399 -39.63748 -28.57316 -9.172893 10.14752 21.51531 23.39852 20.67452 15.27164 8.260844 0.6284224 -6.660494 -30.44957 -29.11677 -27.43615 -25.70579 -24.20954 -23.24721 -23.1075 -24.35379 -26.97325 -30.46512 -34.19014 -37.37406 -39.273 -39.45412 -38.2219 -35.93109 -32.92487 -29.59896 -26.54502 -24.42115 -23.4773 -23.44308 -24.19024 -25.57532 -27.47364 -29.60613 -31.56292 -33.01213 -33.53745 -33.18852 -32.32755 -31.30702</float_array>        <technique_common>          <accessor source="#node-BGoblin_1_Head_rotationZ.ANGLE-output-array" count="297" stride="1">            <param name="ANGLE" type="float"/>          </accessor>        </technique_common>      </source>      <source id="node-BGoblin_1_Head_rotationZ.ANGLE-interpolation">        <Name_array id="node-BGoblin_1_Head_rotationZ.ANGLE-interpolation-array" count="297">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>        <technique_common>          <accessor source="#node-BGoblin_1_Head_rotationZ.ANGLE-interpolation-array" count="297" stride="1">            <param name="INTERPOLATION" type="name"/>          </accessor>        </technique_common>      </source>      <source id="node-BGoblin_1_Head_rotationY.ANGLE-input">        <float_array id="node-BGoblin_1_Head_rotationY.ANGLE-input-array" count="297">0 0.03333334 0.06666667 0.1 0.1333333 0.1666667 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666667 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333333 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667 3.9 3.933333 3.966667 4 4.033333 4.066667 4.1 4.133333 4.166667 4.2 4.233333 4.266667 4.3 4.333333 4.366667 4.4 4.433333 4.466667 4.5 4.533333 4.566667 4.6 4.633333 4.666667 4.7 4.733333 4.766667 4.8 4.833333 4.866667 4.9 4.933333 4.966667 5 5.033333 5.066667 5.1 5.133333 5.166667 5.2 5.233333 5.266667 5.3 5.333333 5.366667 5.4 5.433333 5.466667 5.5 5.533333 5.566667 5.6 5.633333 5.666667 5.7 5.733333 5.766667 5.8 5.833333 5.866667 5.9 5.933333 5.966667 6 6.033333 6.066667 6.1 6.133333 6.166667 6.2 6.233333 6.266667 6.3 6.333333 6.366667 6.4 6.433333 6.466667 6.5 6.533333 6.566667 6.6 6.633333 6.666667 6.7 6.733333 6.766667 6.8 6.833333 6.866667 6.9 6.933333 6.966667 7 7.033333 7.066667 7.1 7.133333 7.166667 7.2 7.233333 7.266667 7.3 7.333333 7.366667 7.4 7.433333 7.466667 7.5 7.533333 7.566667 7.6 7.633333 7.666667 7.7 7.733333 7.766667 7.8 7.833333 7.866667 7.9 7.933333 7.966667 8 8.033334 8.066667 8.1 8.133333 8.166667 8.2 8.233334 8.266666 8.3 8.333333 8.366667 8.4 8.433333 8.466666 8.5 8.533334 8.566667 8.6 8.633333 8.666667 8.7 8.733334 8.766666 8.8 8.833333 8.866667 8.9 8.933333 8.966666 9 9.033334 9.066667 9.1 9.133333 9.166667 9.2 9.233334 9.266666 9.3 9.333333 9.366667 9.4 9.433333 9.466666 9.5 9.533334 9.566667 9.6 9.633333 9.666667 9.7 9.733334 9.766666 9.8 9.833333 9.866667</float_array>        <technique_common>          <accessor source="#node-BGoblin_1_Head_rotationY.ANGLE-input-array" count="297" stride="1">            <param name="TIME" type="float"/>          </accessor>        </technique_common>      </source>      <source id="node-BGoblin_1_Head_rotationY.ANGLE-output">        <float_array id="node-BGoblin_1_Head_rotationY.ANGLE-output-array" count="297">7.225909 2.406422 -1.339961 -3.402584 -3.551084 -2.054792 0.4277394 3.082425 5.220267 6.601945 7.202828 7.034624 6.16166 4.732622 3.053692 2.416966 6.670774 -0.3052917 3.51542 5.963672 8.408828 10.40184 11.58711 12.26448 13.07048 14.05453 14.9015 15.19786 14.80234 13.66584 11.88161 9.63905 7.225909 12.0809 14.41478 15.10114 14.77403 13.71237 12.99032 13.60727 15.72691 8.614565 -3.011707 -7.380661 -9.964751 -10.58223 -9.987471 -9.301641 -9.357075 -10.14399 -11.20829 -12.682 -13.96709 -14.05966 -12.5277 -9.97716 -7.408369 -6.578447 -7.3681 -7.70821 -6.506562 -4.609134 -2.986487 -2.756286 -2.501347 -2.338822 -2.237854 -2.237852 -2.237849 -2.237842 -2.237829 7.225907 11.05705 7.655806 -13.28969 2.600656 19.54226 32.20445 34.97683 27.06009 12.33022 -3.23316 -7.963799 -4.733483 -0.2477143 2.672459 3.6222 2.790574 1.524829 2.225413 4.691272 7.551551 9.919516 11.35631 11.89103 11.81673 11.38002 10.50125 9.256541 7.99533 7.389753 7.225908 9.935613 8.027026 -3.807986 -12.0212 -10.87359 -7.133953 -2.687166 0.9488394 3.261062 5.188965 6.67168 7.704777 8.408126 8.743042 8.629095 8.266959 7.812853 7.400096 7.129551 7.063428 6.942152 10.17038 5.491636 9.108254 4.784762 8.697177 4.651496 8.772845 4.921701 9.167793 5.428073 9.712515 5.998121 10.23954 6.462188 10.57847 7.945672 7.740655 7.807052 8.004669 8.16572 8.099686 7.626456 6.144688 4.715898 5.804491 8.719899 11.68777 13.35786 13.81911 13.29578 12.73874 12.32827 12.06963 11.83654 11.79855 11.9323 12.09108 12.17164 12.09751 12.04366 12.04366 -5.876243 -4.058764 -1.883645 0.04043579 1.468878 2.991367 4.088717 3.44911 1.082617 -1.467829 -2.982848 -4.309281 7.225908 7.588733 8.00744 8.451623 8.900841 9.325449 9.708443 10.0198 10.23956 10.35192 10.34483 10.22753 10.02656 9.757323 9.42697 9.056582 8.650316 8.225801 7.79463 7.371853 6.967936 6.597577 6.280259 6.020056 5.83287 5.803665 5.962634 6.249482 6.598729 6.945091 7.225908 6.737136 6.19169 5.622568 5.058218 4.534321 4.077758 3.722917 3.501276 3.569685 4.058258 4.93799 6.103314 7.375575 7.852707 6.319933 2.778263 -2.017912 -7.039029 -11.16908 -13.89589 -15.15704 -14.72196 -12.83131 -8.883767 -3.119368 2.736062 7.020607 10.03263 12.82538 15.30951 17.34567 18.75831 19.52006 19.08827 17.21983 14.36821 11.02427 7.789396 4.008273 2.469979 3.601696 3.777624 3.215904 2.759938 3.005986 3.781268 4.874547 5.175976 3.499998 -0.2316664 -4.497458 -7.089942 -7.441716 -6.39398 -4.285307 -1.425553 1.743722 4.754891 0.5691074 -0.756173 -2.299446 -3.934897 -5.52016 -6.895277 -7.899981 -8.244641 -7.785601 -6.770681 -5.533988 -4.322124 -3.410343 -2.745874 -2.088693 -1.44177 -0.7871457 0.1485086 1.467234 2.958305 4.191409 4.882192 4.978347 4.431192 3.203983 1.468492 -0.3485509 -1.921332 -2.659263 -2.433819 -1.576238 -0.4549422</float_array>        <technique_common>          <accessor source="#node-BGoblin_1_Head_rotationY.ANGLE-output-array" count="297" stride="1">            <param name="ANGLE" type="float"/>          </accessor>        </technique_common>      </source>      <source id="node-BGoblin_1_Head_rotationY.ANGLE-interpolation">        <Name_array id="node-BGoblin_1_Head_rotationY.ANGLE-interpolation-array" count="297">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>        <technique_common>          <accessor source="#node-BGoblin_1_Head_rotationY.ANGLE-interpolation-array" count="297" stride="1">            <param name="INTERPOLATION" type="name"/>          </accessor>        </technique_common>      </source>      <source id="node-BGoblin_1_Head_rotationX.ANGLE-input">        <float_array id="node-BGoblin_1_Head_rotationX.ANGLE-input-array" count="297">0 0.03333334 0.06666667 0.1 0.1333333 0.1666667 0.2 0.2333333 0.2666667 0.3 0.3333333 0.3666667 0.4 0.4333333 0.4666667 0.5 0.5333334 0.5666667 0.6 0.6333333 0.6666667 0.7 0.7333333 0.7666667 0.8 0.8333333 0.8666667 0.9 0.9333333 0.9666666 1 1.033333 1.066667 1.1 1.133333 1.166667 1.2 1.233333 1.266667 1.3 1.333333 1.366667 1.4 1.433333 1.466667 1.5 1.533333 1.566667 1.6 1.633333 1.666667 1.7 1.733333 1.766667 1.8 1.833333 1.866667 1.9 1.933333 1.966667 2 2.033333 2.066667 2.1 2.133333 2.166667 2.2 2.233333 2.266667 2.3 2.333333 2.366667 2.4 2.433333 2.466667 2.5 2.533333 2.566667 2.6 2.633333 2.666667 2.7 2.733333 2.766667 2.8 2.833333 2.866667 2.9 2.933333 2.966667 3 3.033333 3.066667 3.1 3.133333 3.166667 3.2 3.233333 3.266667 3.3 3.333333 3.366667 3.4 3.433333 3.466667 3.5 3.533333 3.566667 3.6 3.633333 3.666667 3.7 3.733333 3.766667 3.8 3.833333 3.866667 3.9 3.933333 3.966667 4 4.033333 4.066667 4.1 4.133333 4.166667 4.2 4.233333 4.266667 4.3 4.333333 4.366667 4.4 4.433333 4.466667 4.5 4.533333 4.566667 4.6 4.633333 4.666667 4.7 4.733333 4.766667 4.8 4.833333 4.866667 4.9 4.933333 4.966667 5 5.033333 5.066667 5.1 5.133333 5.166667 5.2 5.233333 5.266667 5.3 5.333333 5.366667 5.4 5.433333 5.466667 5.5 5.533333 5.566667 5.6 5.633333 5.666667 5.7 5.733333 5.766667 5.8 5.833333 5.866667 5.9 5.933333 5.966667 6 6.033333 6.066667 6.1 6.133333 6.166667 6.2 6.233333 6.266667 6.3 6.333333 6.366667 6.4 6.433333 6.466667 6.5 6.533333 6.566667 6.6 6.633333 6.666667 6.7 6.733333 6.766667 6.8 6.833333 6.866667 6.9 6.933333 6.966667 7 7.033333 7.066667 7.1 7.133333 7.166667 7.2 7.233333 7.266667 7.3 7.333333 7.366667 7.4 7.433333 7.466667 7.5 7.533333 7.566667 7.6 7.633333 7.666667 7.7 7.733333 7.766667 7.8 7.833333 7.866667 7.9 7.933333 7.966667 8 8.033334 8.066667 8.1 8.133333 8.166667 8.2 8.233334 8.266666 8.3 8.333333 8.366667 8.4 8.433333 8.466666 8.5 8.533334 8.566667 8.6 8.633333 8.666667 8.7 8.733334 8.766666 8.8 8.833333 8.866667 8.9 8.933333 8.966666 9 9.033334 9.066667 9.1 9.133333 9.166667 9.2 9.233334 9.266666 9.3 9.333333 9.366667 9.4 9.433333 9.466666 9.5 9.533334 9.566667 9.6 9.633333 9.666667 9.7 9.733334 9.766666 9.8 9.833333 9.866667</float_array>        <technique_common>          <accessor source="#node-BGoblin_1_Head_rotationX.ANGLE-input-array" count="297" stride="1">            <param name="TIME" type="float"/>          </accessor>        </technique_common>      </source>      <source id="node-BGoblin_1_Head_rotationX.ANGLE-output">        <float_array id="node-BGoblin_1_Head_rotationX.ANGLE-output-array" count="297">13.69004 1.156297 -12.85766 -27.6249 -42.18648 -55.53867 -66.81527 -75.31419 -81.4203 -85.09908 -85.90569 -84.07616 -79.8279 -73.37537 -64.89829 -37.48732 -1.359058 27.27504 32.86218 38.91873 43.45385 46.12677 46.51313 45.12001 42.8475 39.77657 36.10403 32.09095 27.92008 23.81172 19.97889 16.57638 13.69004 9.515277 4.831211 1.008438 -3.128915 -6.355676 -7.846698 -6.951908 0.2370252 12.84395 14.75595 11.20821 6.522845 2.330056 -0.02551016 -0.05156507 1.841594 5.077396 8.917072 12.68681 16.53209 20.56199 24.22888 27.48351 30.21304 30.78579 28.52367 24.19342 19.80599 16.58048 14.41346 14.86182 15.1464 15.17059 15.18589 15.18589 15.18589 15.18588 15.18588 13.69004 11.0543 15.85387 16.68242 9.763123 -6.070486 -6.233212 1.351498 11.35843 17.89728 15.5056 8.923609 5.499173 4.281582 4.601948 6.08868 8.644899 11.90822 14.79836 16.30493 16.39572 15.07294 13.03593 11.35699 10.65134 11.00427 12.05206 13.09225 13.76814 13.85499 13.69004 11.66562 11.83305 10.71548 1.274282 -1.747193 -4.555644 -8.079458 -10.29743 -10.88208 -10.33869 -8.97885 -7.194626 -5.410713 -3.976179 -2.786826 -1.548002 -0.2607276 1.062269 2.379569 3.615304 4.04447 2.295263 4.454019 2.597391 4.627336 2.689246 4.621942 2.626525 4.490218 2.46452 4.287935 2.256337 4.073668 2.06048 3.898003 1.934115 4.063971 4.502828 4.705191 4.784635 4.85802 5.052279 5.450976 6.558792 6.687687 6.370505 6.860571 6.271678 4.038559 1.050664 -1.071642 -0.01199581 1.066024 2.305709 3.709684 4.759397 5.08398 4.604816 3.717175 3.095868 2.562653 2.562653 0.1470285 -4.22182 -8.411269 -10.18591 -8.299735 -4.446119 -0.5399272 3.992448 8.636357 10.61773 8.610179 4.338992 13.69004 13.59212 13.47308 13.34276 13.20647 13.07738 12.95673 12.86205 12.79888 12.77317 12.78524 12.83142 12.89939 12.98991 13.09373 13.20782 13.32688 13.44461 13.55508 13.6636 13.75787 13.84002 13.90771 13.95833 13.99752 14.00135 13.96832 13.90906 13.83511 13.75533 13.69004 13.86763 14.02831 14.15888 14.26333 14.35168 14.43732 14.53849 14.68118 15.04881 15.63416 16.13676 16.20281 15.40368 13.8999 12.50057 11.9325 12.19519 12.59754 13.00642 13.3265 13.29499 13.31901 13.86326 15.13319 16.08645 15.78377 14.70249 13.56885 12.45441 11.58971 11.11244 11.06818 11.56219 12.56853 13.7548 14.70671 15.10351 14.67029 11.43774 5.632225 2.116072 1.477771 1.39987 1.89767 2.492623 3.125142 4.308499 6.463933 9.219726 11.27057 11.80875 11.82568 12.53464 13.5805 14.61358 15.24191 15.23399 14.61683 -3.743644 -2.994526 -2.250915 -1.567722 -0.9637411 -0.4184429 0.114795 0.7239736 1.412217 2.125213 2.80564 3.376121 3.802669 4.047253 4.103925 4.02712 3.854415 3.629194 3.445633 3.297633 3.075327 2.690531 2.126116 1.427076 0.675211 -0.05528573 -0.7446252 -1.375054 -1.938864 -2.446779 -2.911906 -3.334239</float_array>        <technique_common>          <accessor source="#node-BGoblin_1_Head_rotationX.ANGLE-output-array" count="297" stride="1">            <param name="ANGLE" type="float"/>          </accessor>        </technique_common>      </source>      <source id="node-BGoblin_1_Head_rotationX.ANGLE-interpolation">        <Name_array id="node-BGoblin_1_Head_rotationX.ANGLE-interpolation-array" count="297">LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR LINEAR</Name_array>        <technique_common>          <accessor source="#node-BGoblin_1_Head_rotationX.ANGLE-interpolation-array" count="297" stride="1">            <param name="INTERPOLATION" type="name"/>          </accessor>        </technique_common>      </source>
Link to comment
Share on other sites

Morning red. I retried the import procedure with the Goblin 3X this morning - always get the triplicates :(

 

Also repeated the import of my Mixamo created rig - no triplicates. This model had 5600+ tris and a 700+ frames for 52 bones. So it should be at least comparable to your Goblin model. (see image below). Why is there a difference - I do not know.

 

I decided to try other older versions of Blender to see what I got with the Goblin file and for the head bone.

 

V2.61 & 2.62: No triplicates, only parameters in animation = rotation in a Euler format, animation plays upside down, only 237 frames of animation

 

V2.63 & 2.66: Triplicates, parameters in animation =rotation(quaternion), location and scale, animation plays OK but only 237 frames of animation

 

V2.69: Triplicates, parameters in animation =rotation(quaternion), location and scale, animation plays OK with 296 frames of animation

 

My only conclusion is that the Blender Collada file importer is not very trustworthy. :(

 

cheers, gryff :)

 

 

 

 

post-7026-0-86461100-1401118193.jpg

Link to comment
Share on other sites

Yes, I'm using the default Collada Import just like you.

 

Just tried Blender version 2.70a  same triplicates

 

The number of frames issue is solved - just had to set the frame rate to 30fps before import - now all versions get 296 frames.

 

The autodesk Collada export for Max 2013 isn't compatible with blender.

 

Yes I know that. Just using your "BGoblin_1.DAE" file downloaded from above.

 

By the way, after you convert to a .babylon file and try to view it on a web page, what error messages show up in the console ?

 

cheers, gryff :)

Link to comment
Share on other sites

red,

 

I tried the new Goblin file - still triplicates when I import it.  Error messages I get when I try to load the Goblin guy locally:

"Unable to compile effect: default" babylon.js:1"Defines: #define LIGHT0#define HEMILIGHT0#define UV1#define BONES#define BonesPerMesh 69" babylon.js:1"Optional defines: #define BONES4" babylon.js:1

Looks very similar to your response.

 

 

Scene is very nice - though a couple of textures don't seem to load for me - the tree foliage and the steps seem to have no texture.

 

cheers gryff :)

Link to comment
Share on other sites

yea, we have texture problems etc. We'll get to them. We have to get this new exporter to behave first. I still find it weird that we have different results in blender... Maybe someone else will understand the console errors for babylon a little better than me.

 

DK,

Did those 2 scenes help you at all?

Link to comment
Share on other sites

I still find it weird that we have different results in blender.

 

 

red - so do I. And even more weird that my samba lady rigged at Mixamo with more frames does not give me triplicates. I needed her as a .dae file so that I could add hair and materials in Blender

 

You can see her here in Unity Game Engine:

 

samba lady

 

Will keep thinking about this issue.

 

cheers, gryff

Link to comment
Share on other sites

hmmm... may be hard to reduce the bone counts... I'll think about how to do that. It'll have to be a manual operation for sure. Thanks for the info, I'll split this one up for now and let you all know how it works out.

 

How will I animate / attach everything in babylon once they're all split up? I assume that I can just use "mount". (See this post: http://www.html5gamedevs.com/topic/1759-attaching-object-to-bone/)

 

Textures are my own fault, and the goblin doesn't have any applied just yet.

 

 

EDIT:

DK,

There's only 21 bones in the model. So the duplication is causing the issue.

 

Soooo... gryff... now I'm getting triplication. so weird. Something for sure wrong with the blender import script. Even tested on 2.70. Reporting it to Blender now.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...