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

learn more… | top users | synonyms

0
votes
1answer
47 views

Skeletal animation using OpenGL [closed]

I want to do skeletal animation using OpenGL. I tried to search on net, but I couldn't find any proper tutorial or any book. I saw few sites, but they are using some other software like COLLADA or ...
0
votes
0answers
12 views

Uncaught TypeError: Cannot read property 'material' of undefined

i got a problem with texturing a collada human object. i tried this and that, and of them is one of solution but, i got this error : Uncaught TypeError: Cannot read property 'material' of undefined ...
0
votes
0answers
25 views

change collada objects dynamically with three.js

i'm trying to load more than one collada objects in one site by using check box. assume i have two collada objects, cube and sphere. what i want to do is changing the object dynamically. so, if i ...
1
vote
1answer
36 views

vb.net + webbrowser/webkitbrowser + collada viewer

I am currently working on a vb.net application (winforms) and my task is to somehow import collada files(.dae) files and make them viewable from inside the application. What worked for me is this: ...
0
votes
1answer
18 views

naming a multiple collada objects differing from another

we are currently able to load multiple collada files using the code below, we want to know how we will be able to name the collada files differently. Here are some of the functions that we used: ...
0
votes
0answers
17 views

Interaction with collada loader

So I am doing an office work where a collada file(.dae) modeling our work place has been created. Well, I want to render this file on the web and so far I am successful. I also broke down the file ...
0
votes
0answers
30 views

Render Collada .dae file on iOS

I have a Collada 3D file made up from 30-40 different images and I want to render in iOS. I tried converting the .dae file into .OBJ, object plist, .POD. All of the solutions that I found until now ...
0
votes
1answer
71 views

How to save a geometry and its material created in Three.js as collada file?

I'm relatively new to programming and currently trying to learn more about three.js, a JavaScript 3D library. Many things are relatively easy to understand, but I an having a hard time saving an ...
0
votes
0answers
43 views

Connection between ColladaLoader Three.js and HTML input tag

i have two collada objects that will be loaded by using radio button with html input tag. so, user can choose between A.dae and B.dae....after choosing the object, user can also make the object ...
0
votes
1answer
53 views

x,y,z size of collada object in Three.js

assume i have a cube as a collada object (in .dae format). i need to know the size of this cube and later will be computed or calculated so, how can i get the x,y,z size(for example height, width) of ...
0
votes
1answer
67 views

Collada loader not working properly

I created a model in blender, rigged it and created some simple animation, after which i exported to .dae. The animation looks fine when i open the .dae file, however after i loaded it into browser ...
2
votes
0answers
94 views

loading multiple collada objects at the same time Three.js

i have to load the same collada object multiple times. Here is the code var ai = []; function setupAI() { var c = getMapSector(cam.position); var loader ...
1
vote
2answers
135 views

Using multiple textures in OpenGL

Update: I can draw multiple textures now, I figured out how glGenTextures etc works, and rewrote my loadtextures () function and stuff. However only a few parts of the car are drawn; the steering ...
0
votes
1answer
40 views

Panda 3d Collada help c++

So I'm new to Panda 3D in c++ and I have created collada files or dae files to show in panda 3d. When I view them in pview, they show up without color or texture. So if I press the L hotkey, color ...
2
votes
1answer
80 views

3d object rotation issue in cocos3d

I ve created a 3d object using Blender and exported in to collada form. And converted to pod file using PVRGeoPod. I added the pod file to cocos3d project resources. Then altered the hello-world ...
3
votes
1answer
84 views

HOw to export to Collada form in Blender for cocos3d

I hope someone can help me here because I have exhausted all options. 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 ...
0
votes
0answers
13 views

How to implement texturing over a model using pycollada?

I am developing a python script which will be able to generate .DAE (COLLADA) files along with the associated KML files for developing 3D models of buildings. I have the street images of the ...
0
votes
0answers
27 views

How can I bake transformations when exporting a dae from blender?

I would like to bake the transformations (translate/rotate/scale) to a matrix at the dae-export. Is this possible? In the blender documentation v2.6 there is a description of an export option ...
0
votes
3answers
161 views

Matrix needed to convert rotations for one coordinate system to another

i have rotationmatrixes in a "selfmade" GL coordinate system, and want to apply them to a collada coordinate system. I know i need a Matrix to multiply the GL rotations to convert them into the ...
0
votes
1answer
21 views

Moving Collada file Lat Long

I append a collada file into the plug-in, and then move it (append.Child, then remove.Child, then append.Child, etc) based on very small Latitude and Longitude increments. When the Latitude increment ...
2
votes
3answers
93 views

What are the semantics of Scene Kit's pivot matrix?

I am working on understanding the semantics of Scene Kit's use of transform related properties for nodes. In particular, the pivot property on a node is not a single point, but a full transform ...
0
votes
0answers
41 views

3dsmax to OpenGL ES IOS

I made a 3dsmax to OpenGL ES tutorial for french users. It uses cocos3D. Is that helping ? please rate it ! "Bien préparer son projet 3D sur IOS ou Android: de 3dsmax à openGL ES: ...
0
votes
0answers
19 views

collada physics parser/importer

i am working on the beginnings of a game, and am wondering how i can import physics data into the game's physics engine. I am using bullet as the physics library. I use blender for model creation and ...
1
vote
0answers
35 views

Collada animation node, how to write rotation as quaternion

I need to rewrite Euler rotations in a collada file as quaternions. I can`t find out how the quaternion representation would look like. Can anyone point me in the direction on how such a animation ...
0
votes
1answer
24 views

Loading Collada mesh pose

I have a problem loading a collada mesh animation from file. The skeletons startpose is defined like this <translate sid="translate">-0.01199548 0.1422831 -0.009544329</translate> ...
1
vote
2answers
135 views

Three.JS, How to configure the camera to do not upside down the model?

I am working on a 3D model of a building using Three.JS and Collada loader. I'm improving my system interactivity, but I have two main issues: 1- When I rotate the model in the scene, it rotates in ...
0
votes
0answers
89 views

Clone DAE model with subgroups in three.js

I am trying to clone a dae model after loading it. I've tryed several solutions, but I think my problem is that the model has groups inside groups. It has a main parent group with all assets. No ...
1
vote
1answer
187 views

Mesh Groups not visible Three.JS ColladaLoader

Sketchup allows making components to facilitate re-use of geometry. For instance, a car wheel can be made into a component and 4 instances of the component can be used for the 4 wheels of the car. ...
0
votes
0answers
84 views

Three.js-How to represent objects in WebGL pleasantly?

I am using Three.Js to represent a 3D model of a building. Data is a collada file and I am using collada loader. I have two main problems: 1-when I rotate the building, some walls are vanished in ...
0
votes
1answer
126 views

two collada object colliding

I am trying to use Ray intersect to find out if 2 collada object collide. But so far no success :( my code http://jsfiddle.net/XqQzF/ object.updateMatrix(); // ray var ...
2
votes
1answer
121 views

Texture dificulties in Three.js

I'm still experiencing some difficulties with the texture on my model. First I was trying the collada model with three.js r50, now I'm trying the .obj model with three.js r56 and still getting some ...
1
vote
1answer
240 views

actionscript-3 papervision3d mxmlc embedded collada model not showing

I am writing some code based on the following tutorial: http://active.tutsplus.com/tutorials/3d/quick-tip-displaying-a-3d-model-with-papervision3d/ I copied the code from the example and added paths ...
1
vote
0answers
52 views

Converting COLLADA to POD

Does anybody know what this error mean and how to fix it? "No supported geometry data found for mesh "SketchUp" I encountered this when using tool Collada2POD. I read that article. Can anybody tell ...
0
votes
3answers
574 views

Changing texture and color on Three.js collada object

i recently got three.js example from the official site working with my collada objects (.dae) using the ColladaLoader.js . Now my question is, how do i change the loaded collada object color ...
0
votes
1answer
458 views

Trying to implement WebGL viewer using Three.js + ColladaLoader.js

I am trying to implement a WebGl viewer using three.js + colladaloader.js but i am having some problems when trying to import and view my own collada object. I can load the example correctly, but when ...
0
votes
1answer
272 views

camera and terrain collision on three.js

I have a building model created with sketchup, exported as collada file and loaded to three.js with colladaloader. Everything works fine except that the camera can pass through walls. How do I prevent ...
0
votes
0answers
178 views

Three js - Can you clone animations loaded from a collada file?

I'm essentially asking the same question as the one found here - https://github.com/mrdoob/three.js/issues/1883 - Using three js I can import a collada scene with basic keyframe animation and play ...
0
votes
1answer
90 views

How to handle COLLADA indices?

I wrote a simple reader for 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), ...
5
votes
1answer
289 views

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 <vcount> data in the ...
0
votes
0answers
125 views

Three.Js : Ray Detection and Collada from Sketchup

inb4 I'm french so sorry for my bad english. I've got a strange issue, when I export a collada file from Sketchup I can't click on it but when I export from blender it works. I tried to use exactly ...
0
votes
0answers
224 views

webgl collada model rotation

I export a 3d studio max model using "open" and "collada" commands. After doing this I add this model to my scene by webgl THREE.ColladaLoader, but objects which are used to built model are not ...
1
vote
1answer
27 views

collada External Reference

When I load the samples with viewer by collada dom 1.4. externalRef.dae <library_nodes> <node> <instance_geometry url="cube.dae#box-lib"/> </node> ...
0
votes
0answers
438 views

How can i export .dae (collada) with photoshop cs6? [closed]

I tryed to modify a .dae 3d file in photoshop and when I go to File->Export I do not find the 3D or Collada option. How can I export .dae with photoshop? Do I have to install some plug-in or ...
2
votes
2answers
175 views

C++ OpenGL Wrong Collada Texture Coordinates

I am parsing a Collada file for animations. I have it drawn and animated fine but the issue now is how to setup the texture coordinates. I feed it to OpenGL exactly how the collada dae file gives it ...
0
votes
0answers
320 views

Animating Blender collada export in three.js

http://www.diviniaro.com/WGClient/js/three.js/examples/webgl_loader_collada_Gate.html After trying several things we're just left at a loss to get the exported animation from blender to load. I have ...
0
votes
0answers
39 views

FLAR Toolkit does not show model correctly: only lines are shown

We're trying to convert a .STL model (from Solidworks) to .DAE (for FLAR Toolkit) using Blender, however when we check the model with FLAR Toolkit all we see is lines. I have provided a picture to ...
0
votes
0answers
19 views

Is it possible in WebGLGE to set the range of frames to play within a COLLADA animation?

I have a COLLADA file that contains a large number of 1-second animations all strung together sequentially within a single file. I would like to render 1 second ranges within the timeline of this file ...
0
votes
0answers
34 views

COLLADA DOM open() function returning null because of “topMeta”

Im trying to open a .dae file. But when I try to open the document, it is null because something called "topMeta" is null. I don't know how to set topMeta properly. This is the code DAE dae; ...
0
votes
1answer
299 views

iPhone OpenGL ES 2.0 Strange Pattern Rendering Texture on Sphere from COLLADA File

I'm using Cheetah3D to export a COLLADA file ( .dae ) and then Erik Buck's COLLADAViewer2 ( https://github.com/erikbuck/COLLADAViewer2/tree/master/COLLADAViewer2 ) program to export a modelplist ...
1
vote
2answers
249 views

Working OpenSceneGraph bindings for Python?

I'm building a rendering engine in Python for fun. I need to load 3D scenes. Any standard modern format like DAE, 3DS, or MAX would work: I can convert my files easily between standard formats. ...

1 2 3 4