Posts Tagged ‘ actionscript ’
How to bend stuff and make things a bit more alive in papervision3D plus a lot of interesting stuff available for all Flash 3D enthusiasts: www.everydayflash.com/blog/index.php/2008/06/11/bending-modifier-papervision3d/ [ READ MORE ]
Top navigation and content headers (H1,H2,H3) are made with Cufon-text replacement. Title is transparent particlefield made with Flash CS4 & Papervision3D. Rotating logo is Flash & Actionscript 3 and rest of the site is same-o same-o :D See the changes and get your killer site here: www.progapanda.com [ READ MORE ]
Changed whole mouse movement so that it keeps rotating left-to-right endlessly. Up-down movement is limited to 20 degrees. //Mouse control private function mouseHandler(e:Event):void{ //movement limit outer if(camera.x < -distLimit) camera.x = -distLimit; if(camera.x > distLimit) camera.x = distLimit; if(camera.z < -distLimit) camera.z = -distLimit; if(camera.z > distLimit) camera.z = distLimit; //movement [ READ MORE ]