I have implemented an Augmented Reality application on Adobe Air for Android. When I publish my app on the android mobile phone (Nexus One) the 3D models that I have created don't appear on the screen. On flash CS5 it is working fine.

I have used Away3DLite engine and I have imported a 3D collada object. I have also tried to publish some projects that I found online and I checked if the the 3D model appears on the screen but it doesn't show it either.

Does anyone know how the 3D Models that I have imported in my project using Away3DLite can be visible when I publish the application on the android phone?

Some extra stuff be usefull:

  • I'm using GPU rendering

A also using a combination of the following softwares in order to create my AR application:

  • FLARToolkit
  • FLARManager
  • Away3DLite

I have created one 3D Model on 3DS MAX and another one on Maya 2010.

I will really appreciate any advice i can get from you.

Thank you

link|improve this question

Have you tried debugging your app to see if there is any error? – Florian F Mar 16 '11 at 10:48
@Florian F yes I have debbug my app and I don't have any error. I have tried download an application from away3D applications and i can't even use that one on my phone. The 3D models doesn't appear on the screen. – Apollon1954 Mar 16 '11 at 10:55
Have you tried creating a simple primitive such as a Sphere, Cube, ... – Florian F Mar 16 '11 at 10:59
@Florian F Yes, on the Android phone is working only with a simple primitives. – Apollon1954 Mar 16 '11 at 11:19
Ok. Do you load your 3D model locally or from a server? I wouldn't be surprised if it were a crossdomain issue... – Florian F Mar 16 '11 at 11:39
show 11 more comments
feedback

1 Answer

The cause is GPU rendering.

More specifically you use some feature, that is not available when you use GPU rendering. For limitations see http://help.adobe.com/en_US/as3/mobile/WS901d38e593cd1bac-3d719af412b2b394529-8000.html . the important part is "If The GPU cannot render an object, it is not displayed at all."
GPU rendering+putting something over a video = problems in Air
Plus GPU rendering and the Camera class dont work together either: http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7d49zephyr_serranozephyr.html

"The Camera class is not supported in mobile AIR apps that use the GPU rendering mode."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.