Questions tagged [away3d]

Away3D is an open-source real-time 3D engine for the Adobe Flash Platform.

Away3D is an open-source engine for rendering realtime 3D content on the Adobe Flash Platform. It was first launched as a fork of Papervision3D in 2007, by Alexander Zadorozhny and Rob Bateman, and is now developed by the Away3D team and a large number of contributors. It is the most popular open-source engine for the platform.

The Away3D set of libraries support Flash Player 9, 10, and 11, and implements the hardware accelerated capabilities of the most recent version. The latest major version, Away3D 4.0 is a complete rewrite from scratch for the GPU accelerated Stage3D APIs of Flash Player 11.

172 questions
0
votes
1 answer

How hard would it be to manipulate a 3d model in flash with the mouse?

Using a common flash 3d library such as Papervision3d or away3d & as3dmod or better create a Flash 3d object manipulator that: Loads a complex 3d object (for example a pottery item) Allows a user to rotate the object Allows a user to grab vertices…
jpstrikesback
  • 2,300
  • 14
  • 18
0
votes
1 answer

How to turn iOS camera off

I’m working on an IOS app in which video from the iPad's camera is displayed on a plane in an Away3D environment. private function liveVideoCamera():void { liveCamera = getCamera(CameraPosition.FRONT); liveCamera.setMode(1024, 730, 30); …
user2016210
  • 119
  • 4
  • 13
0
votes
1 answer

Away3D click listener doesn't work with all the cube, only its center

I am trying to add a click listener to a cube in Away3D. This works... partially. Seems like the click works only with the center of the cube's face. I have no idea why this is so because it should be taking the bounding box (which, of course, is…
Fygo
  • 4,555
  • 6
  • 33
  • 47
0
votes
2 answers

TypeScript error TS2082 and TS2087 assigning Away3D canvas to a var

I am new to TypeScript. I am creating an Away3D scene, that dynamically creates a canvas element. I would like to append that element to a container. The code works, but I get the following compiling errors: error TS2082: Supplied parameters do…
GrokDD
  • 70
  • 4
0
votes
1 answer

AwayPhysics collision complete by gravity

I was wondering if there is any event or logic that captures the arrest of a group of 3d objects by gravity. I have 5 dice, randomly throw in a plane, they collide into the plane, collide with each other, and finally stand still. Once the dice are…
0
votes
1 answer

Returning to Stage3D (Away3d) after StageVideo

I'm having the well documented problem of StageVideo killing Stage3d, or at least overlaying a black layer above the Stage3D on mobile. I've attempted some of the various solutions offered around the forums, including moving the viewport off…
beek
  • 3,522
  • 8
  • 33
  • 86
0
votes
1 answer

Problems with Flash Builder 4.5 and Away3D

I've got a very annoying problem with Flash Builder and Away3D. We've got a web/mobile panorama product that uses Away3D to render the panoramas as a skybox. I recently updated Away3D to the latest version, and found that on mobile, there is a…
beek
  • 3,522
  • 8
  • 33
  • 86
0
votes
4 answers

Away3D load and display .obj at runtime

I'm having my first go with Away3D and am having great difficulties in simply loading a 3D model at runtime. I’m using AIR 4.0 and the latest Away3D Library. The setup seems fine, I can compile without errors!! I have tried all sorts I have found on…
M4tchB0X3r
  • 1,531
  • 1
  • 15
  • 28
0
votes
1 answer

away3d with transparent background over html content

Can I embed flash with away3d inside of it into html and have a transparent background? All the information I've found refers to the inability due to restrictions of Stage3d. But i saw working example. Is there any way to achieve this result? (swf…
Aspiro
  • 552
  • 3
  • 7
0
votes
1 answer

Looping Cubes & Adding Material (Away3D)

I'm trying to create a loop of cubes and apply a ColorMaterial to the surface. The main actionscript class has the following method for creating the loop. There is an external class file called Building which is responsible for the shape and…
0
votes
1 answer

Is it possible to contain the view3d instance into a movieclip ?

Trying to do something like this : _plane = new Mesh(new PlaneGeometry(124, 179), new TextureMaterial(Cast.bitmapTexture( CardBack))); _view.scene.addChild(_plane); container_mc.addChild(_view); addChild(container_mc); …
Vishwas
  • 1,533
  • 2
  • 19
  • 40
0
votes
1 answer

AS3 Move and Rotate a object to a point in 3D space

Hello, I trying to move a object in stage 3D (I'm using away3d framework) to a point in space (vector 3d), its fine and working, but I want that object turn it "front face" to that point, so it will be aways "looking" and "walk" to it. The code that…
0
votes
2 answers

Lerping 3d rotation (away3d)

I'm creating a 3d game using away3d and awayphysics. I've created a rotation formula that will rotate my model with a "smooth factor". private var chRotation:Number = 0; public override function update(delta:uint):void { if(target){ var…
Duckdoom5
  • 716
  • 7
  • 27
0
votes
1 answer

AWD plugin for 3dmax2013 and Maya

I am new in Away3d. I am developing Flex project for 3d objects. I am using 3dmax 2013. But i did't get AWD plugin of max 2013. PLEASE ANYBODY HELP ME TO EXPORT ADW MODEL FROM MAX 3D.
Madhu
  • 147
  • 2
  • 8
0
votes
1 answer

texturing a cylinder with multiple texture

I have one cylinder and I would like to texture it using 36 different bitmaps. The problem that If i texture the cylinder with just one texture, I see that is stretched, like the picture here : // 90, 90, are top radius, down radius, 50 is the…
Andre
  • 363
  • 3
  • 15