Questions tagged [collada]

COLLADA is a royalty-free XML schema that enables digital asset exchange within the interactive 3D industry.

COLLADA is a royalty-free XML schema that enables digital asset exchange within the interactive 3D industry.

524 questions
6
votes
4 answers

SceneKit - Stop continuously looping Collada animation

I am using SceneKit to load a Collada (.dae) file. Whatever I have tried, the animation repeats in a continuous loop whereas I only want it play once and then stop. Here's the loading code where sceneView is my SCNView: //Load the scene and…
Eric
  • 121
  • 1
  • 5
6
votes
1 answer

How to correctly parse collada files for WebGL ? (example included)

This is my current result: As you can see the models have a bunch of gaps in them. My guess, why this happens would be, that I somehow need to include the data in the element, which is supposed to determine the vertex count for…
user625860
5
votes
1 answer

How to setup materials in THREE.js when loading Collada (dae) models?

How do I setup materials in THREE.js when loading Collada (dae) models? I have the following code: new THREE.ColladaLoader().load('models/cylinder.dae', function(collada) { var model = collada.scene; model.scale.set(10.0, 10.0, 10.0); …
JimFing
  • 151
  • 5
  • 11
5
votes
1 answer

How to export the contents of a SceneKit scene under MacOS

I'm getting unexpected results when exporting the contents of a SceneKit scene to a Collada (.dae) file. Here's what I have so far. I created a simple scene with 5 spheres along the x-axis var x:CGFloat = 0 for i in 0...4 { let sphere =…
Epsilon
  • 1,016
  • 1
  • 6
  • 15
5
votes
1 answer

How can I export a simple rigged model from Maya for use in Scenekit?

I am attempting to experiment with Apple’s Fox game SceneKit example (link below) by adding a model with a simple animation like the ‘panda.scn’ and ‘walk.scn’ assets. I can create a static model with no joints or animation that works: e.g. In…
Pat Niemeyer
  • 5,930
  • 1
  • 31
  • 35
5
votes
3 answers

Loading collada file from webserver in scenekit

I am working with SceneKit and Collada file. Now, I am able to load the collada file inside art.scnassets folder as well as in my project root directory. I am getting an error when i am trying to load the file from a local webserver. Any reason why…
user4432964
5
votes
1 answer

Three.js - avatar animation

I have a question about three.js library. I was wondering how i can create an animation, in which an avatar, which was exported from Blender to Collada format (.dae), moves an arm or a leg, using WebGL (three.js) library not Blender.
user5041326
5
votes
1 answer

Can't display 3d file from cache directory

Can you please help me determine the problem here? It seems that I can't display the 3d file from cache directory. I'm having this error SceneKit IO: error, COLLADA files are not supported on this platform. The zip file im saving in the cache…
user3316454
  • 89
  • 2
  • 7
5
votes
1 answer

How to handle COLLADA indices?

I wrote a simple reader for the COLLADA file format, and it seems to work OK. Now, I have a Blender-exported cube mesh which is edge-splitted and triangulated, so it should have 12 triangles (2 per face), 24 vertices (4 per face) and 36 indices (6…
manabreak
  • 5,415
  • 7
  • 39
  • 96
5
votes
1 answer

Are there any automated tools that can generate 2d images from COLLADA format 3d models for display on a website?

First off, I have very little experience with 3d modeling, so this may be a poorly worded question. If that is the case, then I apologize. Essentially, I have a large database of COLLADA format 3d models that need to be displayed in a gallery on a…
MTurcotte
  • 53
  • 3
5
votes
2 answers

Including texture files into the collada file

I want to include my texture image files into my collada file. Now I have many files: the .dae itself and the .png texture files. However I want only one file: the .dae, but with the textures included into it. Could I somehow store the .png…
Fract
  • 323
  • 1
  • 6
  • 22
5
votes
2 answers

How to animate a 3D character?

I have some 3D character model, and I would like to animate them, to use them in my project. The result should be a keyframe animated collada. I need only the basic movements: walk, run, aim, die... Are there any programs for that? I unfortunatly…
Danny Fox
  • 38,659
  • 28
  • 68
  • 94
4
votes
2 answers

Three JS animation in Editor possible?

I have been able to get almost everything I need into the editor, But cannot figure out how to get a collada model that was imported to play it's keyframes. Since I am not doing loader.load (collada) blah blah like in the examples. I cannot figure…
iiidefektiii
  • 163
  • 1
  • 12
4
votes
0 answers

three.js png textures not transparent when using colladaloader

I saved a collada file from second life and am rendering it using 3js and colladaloader2. The image looks fine except for the part that is using the transparent texture file. The file is a png with transparency. The transparent part renders as…
sentireb
  • 41
  • 2
4
votes
1 answer

How do I load SCNMorpher targets from a Collada .dae file's morph controllers into SceneKit?

According to WWDC 2013 What's new in SceneKit target geometries for morphers can be contained in a .dae file: All the morphing information and animations can be loaded from a DAE file or you can create everything programmatically." I have a…
OliverD
  • 1,074
  • 13
  • 19
1 2
3
34 35