Here’s a simple FlashDevelop template to speed up the creation of a 3D render in Papervision3D 2.0. Download the template from here or copy the code below and save it as View3D.as.fdt.
In FlashDevelop go to Tools –> Application files. This will open your Explorer: Now go into the folder Templates > ProjectFiles > AS3Project and drop the template in there.
You will now if you left click on your src package and go to Add > see the option ‘BasicView’ in the menu that pops up.
The custom arguments available for template creation are listed at http://www.flashdevelop.org/community/viewtopic.php?t=1521
Here’s the template:
import flash.events.Event;
import org.papervision3d.view.BasicView;
public class $(FileName) extends BasicView {
$(EntryPoint)
/**
* $(FileName)
*/
public function $(FileName)():void {
init();
startRendering();
}
private function init():void {
}
override protected function onRenderTick(e:Event=null):void{
super.onRenderTick();
}
}
}
Lastly, a good set of templates can be found over at http://www.actionscriptdeveloper.co.uk/puremvc-first-thoughts-flashdevelop-templates/
