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
4
votes
1 answer

ThreeJS .dae Not loading textures

./textures/Seats_Lvl2b_2k.jpg In the default skinning example for Collada via ThreeJS website I see that this should hold my images and then the…
Cameron Owen
  • 109
  • 1
  • 1
  • 10
4
votes
2 answers

Cinema 4d R13 .dae will not import into SceneKit

I have a Cinema 4d R13 beating heart model that I would like to use in scene kit. The exported .dae file will not open in Xcode or in Preview on the Mac. Has anyone had problems importing animated cinema 4d r13 .dae files into SceneKit? I'm very new…
kgersony
  • 41
  • 2
4
votes
1 answer

Constant Rotation of a SceneKit Model

I'm getting accelerometer data 10x/second from an external device and I want to have that be reflected on a 3-D SceneKit model. That is, I want the model to rotate in response to the accelerometer data. The 3-D model is a .dae file built in SketchUp…
Benjamin Martin
  • 1,795
  • 3
  • 15
  • 17
4
votes
1 answer

Collada to SceneKit to iOS

I have a collada file, it contains a cube, from this I export the data to a file (just raw bytes), and I import the bytes into iOS. All good, I examined the data and all looks the same for vertices on iOS and osx. However when I examine the…
Darren
  • 269
  • 3
  • 8
4
votes
2 answers

Texturing on 3d Blocks 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 buildings. By street images, I mean the front face image…
unrealsoul007
  • 3,809
  • 1
  • 17
  • 33
4
votes
0 answers

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 buildings. By street images, I mean the front face image…
Abhinav Vatsa
  • 59
  • 1
  • 10
4
votes
1 answer

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 back those animations easily enough, but would like…
Charlie
  • 4,197
  • 5
  • 42
  • 59
4
votes
2 answers

collada External Reference

When I load the samples with viewer by collada dom 1.4. externalRef.dae I tried many loaders of collada like glc_player,google sketchUp,but none…
Artistzhou
  • 51
  • 3
4
votes
2 answers

Collada model faces not displaying correctly in three.js

After importing a collada model into three.js, some of the model's faces are only visible from the inside of the model and not from the outside. How can I fix the problem with the faces in question? Is it possible to have the model's faces visible…
user1565123
  • 89
  • 1
  • 5
4
votes
1 answer

Skeletal animation using parsed data from COLLADA file in Three.js

I have experimented with the example COLLADA parser colladaloader.js and imported a skeletal animated collada model "Seymour_anim2.dae" from http://collada.org/owl/browse.php?sess=0&parent=131&expand=0&order=name&curview=0 using…
KillerFox
  • 53
  • 1
  • 6
4
votes
2 answers

How to make COLLADA models cast shadow on its own in three.js?

I tried this: dae.castShadow = true; dae.receiveShadow = true; scene.add(dae); //spotLight is defined already. spotLight.castShadow = true; renderer.shadowMapEnabled = true; But the model still does not have shadows? Did I do anything wrong?…
Derek 朕會功夫
  • 92,235
  • 44
  • 185
  • 247
4
votes
2 answers

Convert 3d 4x4 Rotation Matrix into 2d

Say we have a 4x4 matrix with indices like so: 00 01 02 03 10 11 12 13 20 21 22 23 30 31 32 33 How does one convert the rotation data (ignoring the z axis, if that helps) contained in this matrix into a single 2d rotational angle (in…
Nathanael Weiss
  • 737
  • 1
  • 10
  • 23
3
votes
1 answer

Loading Collada animation joints?

I'm having trouble loading joint data information from 'animation' node of collada file. First, I try to load joints from 'library_visual_scenes' : The first 2 joints look like that :
Baptiste Costa
  • 1,044
  • 1
  • 12
  • 24
3
votes
1 answer

Conversion of .dae to .glb / .gltf

I am having success converting .usdz models to .dae using Xcode. However I eventually want the file formats to end up as .glb / .gltf. I'm using blender to encode .dae into .glb, also a tool made by Khronos group here.…
3
votes
1 answer

3D model manipulation in Augmented Reality

I'm using FLARManager and papervision3d to implement a small augmented reality hack. my requirement is to yaw the model upon a button click. This is what i have done so far: public class AugmentedReality extends Sprite { private var…
codemaniac
  • 879
  • 1
  • 11
  • 31