├── .DS_Store
├── .gitignore
├── README.md
├── ant
└── ant-contrib.jar
├── away3d-tutorials-fp11.iml
├── build.xml
├── bundle
├── build
│ ├── post_compile.xml
│ └── pre_compile.xml
├── html-template
│ ├── history
│ │ ├── history.css
│ │ ├── history.js
│ │ └── historyFrame.html
│ ├── index.template.html
│ ├── playerProductInstall.swf
│ └── swfobject.js
└── launch
│ └── project.launch
└── tutorials
├── animation
└── basic_tweening
│ ├── Basic_Tweening3D.zip
│ ├── bin
│ ├── Basic_Tweening3D.html
│ ├── Basic_Tweening3D.swf
│ ├── history
│ │ ├── history.css
│ │ └── history.js
│ ├── playerProductInstall.swf
│ └── swfobject.js
│ ├── embeds
│ ├── floor_diffuse.jpg
│ └── trinket_diffuse.jpg
│ ├── images
│ └── Basic_Tweening3D.jpg
│ ├── libs
│ └── tweener.swc
│ ├── manifest.txt
│ └── src
│ ├── Basic_Tweening3D.as
│ └── Interactivity and Tweening.html
├── materials
├── advanced_custom
│ ├── assets
│ │ └── floor_diffuse.jpg
│ └── src
│ │ ├── Custom Materials 01.html
│ │ ├── Custom Materials 02.html
│ │ ├── Custom Materials 03.html
│ │ ├── CustomMaterials01.as
│ │ ├── CustomMaterials02.as
│ │ ├── CustomMaterials03.as
│ │ ├── tut01
│ │ ├── TrivialColorMaterial.as
│ │ └── TrivialColorPass.as
│ │ ├── tut02
│ │ ├── TrivialTextureMaterial.as
│ │ ├── TrivialTexturePass.as
│ │ └── TrivialTexturePass_Alternative.as
│ │ ├── tut03
│ │ ├── SingleLightTextureMaterial.as
│ │ └── SingleLightTexturePass.as
│ │ └── utils
│ │ └── FlightController.as
├── basic_atf_shading
│ ├── Basic_ATF_Shading.zip
│ ├── asset
│ │ ├── ball
│ │ │ ├── beachball_diffuse.atf
│ │ │ ├── beachball_diffuse.png
│ │ │ ├── beachball_specular.atf
│ │ │ └── beachball_specular.png
│ │ ├── cube
│ │ │ ├── trinket_diffuse.atf
│ │ │ ├── trinket_diffuse.png
│ │ │ ├── trinket_normal.atf
│ │ │ ├── trinket_normal.png
│ │ │ ├── trinket_specular.atf
│ │ │ └── trinket_specular.png
│ │ ├── floor
│ │ │ ├── floor_diffuse.atf
│ │ │ ├── floor_diffuse.png
│ │ │ ├── floor_normal.atf
│ │ │ ├── floor_normal.png
│ │ │ ├── floor_specular.atf
│ │ │ └── floor_specular.png
│ │ ├── signature.fla
│ │ ├── signature.swf
│ │ ├── sky
│ │ │ └── hourglass_cubemap2.atf
│ │ └── torus
│ │ │ ├── weave_diffuse.atf
│ │ │ ├── weave_diffuse.png
│ │ │ ├── weave_normal.atf
│ │ │ └── weave_normal.png
│ ├── bin
│ │ └── Basic_Shading_with_ATF.swf
│ ├── manifest.txt
│ ├── pb
│ │ ├── NormalizeSplats.pbj
│ │ ├── NormalizeSplats.pbk
│ │ ├── RayTriangleKernel.pbj
│ │ └── RayTriangleKernel.pbk
│ └── src
│ │ └── Basic_Shading_with_ATF.as
├── basic_atf_texture
│ ├── Basic_ATF_Texture.zip
│ ├── asset
│ │ ├── ball
│ │ │ ├── beachball_diffuse.atf
│ │ │ ├── beachball_diffuse.png
│ │ │ ├── beachball_specular.atf
│ │ │ └── beachball_specular.png
│ │ ├── cube
│ │ │ ├── trinket_diffuse.atf
│ │ │ ├── trinket_diffuse.png
│ │ │ ├── trinket_normal.atf
│ │ │ ├── trinket_normal.png
│ │ │ ├── trinket_specular.atf
│ │ │ └── trinket_specular.png
│ │ ├── floor
│ │ │ ├── floor_diffuse.atf
│ │ │ ├── floor_diffuse.png
│ │ │ ├── floor_normal.atf
│ │ │ ├── floor_normal.png
│ │ │ ├── floor_specular.atf
│ │ │ └── floor_specular.png
│ │ ├── signature.fla
│ │ ├── signature.swf
│ │ ├── sky
│ │ │ └── hourglass_cubemap2.atf
│ │ └── torus
│ │ │ ├── weave_diffuse.atf
│ │ │ ├── weave_diffuse.png
│ │ │ ├── weave_normal.atf
│ │ │ └── weave_normal.png
│ ├── bin
│ │ └── Basic_ATF_Texture.swf
│ ├── manifest.txt
│ ├── pb
│ │ ├── NormalizeSplats.pbj
│ │ ├── NormalizeSplats.pbk
│ │ ├── RayTriangleKernel.pbj
│ │ └── RayTriangleKernel.pbk
│ └── src
│ │ └── Basic_ATF_Texture.as
├── basic_shading
│ ├── Basic_Shading.zip
│ ├── bin
│ │ ├── Basic_Shading.html
│ │ ├── Basic_Shading.swf
│ │ ├── Basic_Shading_Ex1.html
│ │ ├── Basic_Shading_Ex1.swf
│ │ ├── Basic_Shading_Ex2.html
│ │ ├── Basic_Shading_Ex2.swf
│ │ ├── Basic_Shading_Ex3.html
│ │ ├── Basic_Shading_Ex3.swf
│ │ ├── assets
│ │ │ └── PolarBear.awd
│ │ ├── history
│ │ │ ├── history.css
│ │ │ └── history.js
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── embeds
│ │ ├── beachball_diffuse.jpg
│ │ ├── beachball_specular.jpg
│ │ ├── floor_diffuse.jpg
│ │ ├── floor_normal.jpg
│ │ ├── floor_specular.jpg
│ │ ├── signature.swf
│ │ ├── trinket_diffuse.jpg
│ │ ├── trinket_normal.jpg
│ │ ├── trinket_specular.jpg
│ │ ├── weave_diffuse.jpg
│ │ └── weave_normal.jpg
│ ├── images
│ │ ├── Basic_Shading.jpg
│ │ ├── Basic_Shading_Ex1.jpg
│ │ ├── Basic_Shading_Ex2.jpg
│ │ ├── Basic_Shading_Ex3.jpg
│ │ ├── beachball_diffuse_t.jpg
│ │ ├── beachball_specular_t.jpg
│ │ ├── signature.swf
│ │ ├── speculardifference_1.jpg
│ │ ├── trinket_diffuse_t.jpg
│ │ ├── trinket_normal_t.jpg
│ │ ├── trinket_specular_t.jpg
│ │ ├── weave_diffuse_t.jpg
│ │ └── weave_normal_t.jpg
│ ├── manifest.txt
│ └── src
│ │ ├── Basic_Shading.as
│ │ ├── Basic_Shading_Ex1.as
│ │ ├── Basic_Shading_Ex2.as
│ │ ├── Basic_Shading_Ex3.as
│ │ └── Introduction To Materials.html
├── basic_skybox
│ ├── Basic_SkyBox.zip
│ ├── bin
│ │ ├── Basic_SkyBox.html
│ │ ├── Basic_SkyBox.swf
│ │ ├── history
│ │ │ ├── history.css
│ │ │ └── history.js
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── embeds
│ │ └── skybox
│ │ │ ├── snow_negative_x.jpg
│ │ │ ├── snow_negative_y.jpg
│ │ │ ├── snow_negative_z.jpg
│ │ │ ├── snow_positive_x.jpg
│ │ │ ├── snow_positive_y.jpg
│ │ │ └── snow_positive_z.jpg
│ ├── images
│ │ ├── Basic_Skybox.jpg
│ │ ├── skybox_description.jpg
│ │ ├── snow_negative_x_t.jpg
│ │ ├── snow_negative_y_t.jpg
│ │ ├── snow_negative_z_t.jpg
│ │ ├── snow_positive_x_t.jpg
│ │ ├── snow_positive_y_t.jpg
│ │ └── snow_positive_z_t.jpg
│ ├── manifest.txt
│ └── src
│ │ ├── Basic_SkyBox.as
│ │ └── Using A Skybox.html
└── globe
│ ├── GlobeMaterialsTutorial.zip
│ ├── bin
│ ├── listing_01
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_02
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_03
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_04
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_05
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_06
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_07
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_08
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ └── listing_09
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── embeds
│ ├── earth_ambient.jpg
│ ├── earth_clouds.jpg
│ ├── earth_diffuse.jpg
│ ├── earth_normals.png
│ ├── earth_specular.jpg
│ ├── flare0.jpg
│ ├── flare1.jpg
│ ├── flare10.jpg
│ ├── flare11.jpg
│ ├── flare12.jpg
│ ├── flare2.jpg
│ ├── flare3.jpg
│ ├── flare4.jpg
│ ├── flare5.jpg
│ ├── flare6.jpg
│ ├── flare7.jpg
│ ├── flare8.jpg
│ ├── flare9.jpg
│ ├── moon.jpg
│ ├── space_negX.jpg
│ ├── space_negY.jpg
│ ├── space_negZ.jpg
│ ├── space_posX.jpg
│ ├── space_posY.jpg
│ ├── space_posZ.jpg
│ ├── star.jpg
│ └── sun.jpg
│ ├── images
│ ├── earth_ambient.jpg
│ ├── earth_diffuse.jpg
│ ├── earth_normals.png
│ ├── earth_specular.jpg
│ ├── listing_01.jpg
│ ├── listing_02.jpg
│ ├── listing_03.jpg
│ ├── listing_04.jpg
│ ├── listing_05.jpg
│ ├── listing_06.jpg
│ ├── listing_07.jpg
│ ├── listing_08.jpg
│ └── listing_09.jpg
│ ├── manifest.txt
│ └── src
│ ├── GlobeMaterialsTutorial.html
│ ├── GlobeMaterialsTutorialListing01.as
│ ├── GlobeMaterialsTutorialListing02.as
│ ├── GlobeMaterialsTutorialListing03.as
│ ├── GlobeMaterialsTutorialListing04.as
│ ├── GlobeMaterialsTutorialListing05.as
│ ├── GlobeMaterialsTutorialListing06.as
│ ├── GlobeMaterialsTutorialListing07.as
│ ├── GlobeMaterialsTutorialListing08.as
│ ├── GlobeMaterialsTutorialListing09.as
│ └── GlobeMaterialsTutorialListingBase.as
├── misc
└── wikitutorials
│ └── src
│ └── WikiTutorials.html
├── particles
└── particles_beginning
│ ├── ParticlesBeginning.zip
│ ├── bin
│ ├── TheAdvancedDemo.html
│ ├── TheAdvancedDemo.jpg
│ ├── TheAdvancedDemo.swf
│ ├── TheBasicTutorial.html
│ ├── TheBasicTutorial.jpg
│ ├── TheBasicTutorial.swf
│ ├── history
│ │ ├── history.css
│ │ ├── history.js
│ │ └── historyFrame.html
│ ├── playerProductInstall.swf
│ ├── preview.html
│ ├── preview.jpg
│ ├── preview.swf
│ └── swfobject.js
│ ├── embeds
│ └── text.png
│ ├── manifest.txt
│ └── src
│ ├── ParticlesBeginning.html
│ ├── TheAdvancedDemo.as
│ └── TheBasicTutorial.as
├── picking
└── overview
│ ├── PickingTutorial.zip
│ ├── assets
│ └── RayScene.mb
│ ├── bin
│ ├── listing_01
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_02
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_03
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_04
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── listing_05
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ └── listing_06
│ │ ├── Launcher.html
│ │ ├── Launcher.swf
│ │ ├── playerProductInstall.swf
│ │ └── swfobject.js
│ ├── embeds
│ ├── head.obj
│ ├── hellknight.md5mesh
│ ├── hellknight_diffuse.jpg
│ ├── hellknight_normals.png
│ ├── hellknight_specular.png
│ └── walk7.md5anim
│ ├── images
│ ├── figure_01.jpg
│ ├── figure_02.png
│ ├── listing_01.jpg
│ ├── listing_02.jpg
│ ├── listing_03.jpg
│ ├── listing_04.jpg
│ ├── listing_05.jpg
│ └── listing_06.jpg
│ ├── manifest.txt
│ └── src
│ ├── PickingTutorial.html
│ ├── PickingTutorialListing01.as
│ ├── PickingTutorialListing02.as
│ ├── PickingTutorialListing03.as
│ ├── PickingTutorialListing04.as
│ ├── PickingTutorialListing05.as
│ ├── PickingTutorialListing06.as
│ └── PickingTutorialListingBase.as
├── scenegraph
└── basic_view
│ ├── Basic_View.zip
│ ├── bin
│ ├── Basic_View.html
│ ├── Basic_View.swf
│ ├── history
│ │ ├── history.css
│ │ └── history.js
│ ├── playerProductInstall.swf
│ └── swfobject.js
│ ├── embeds
│ └── floor_diffuse.jpg
│ ├── images
│ ├── Basic_View.jpg
│ └── floor_no_texture.png
│ ├── manifest.txt
│ └── src
│ ├── Basic_View.as
│ └── Setting_Up_Your_Scene.html
├── starling
└── interoperation
│ ├── Intermediate_One_Away3D_Two_Starling_Layers.zip
│ ├── bin
│ ├── Intermediate_One_Away3D_Two_Starling_Layers.html
│ ├── Intermediate_One_Away3D_Two_Starling_Layers.swf
│ ├── history
│ │ ├── history.css
│ │ └── history.js
│ ├── playerProductInstall.swf
│ └── swfobject.js
│ ├── embeds
│ ├── .svn
│ │ ├── entries
│ │ ├── prop-base
│ │ │ ├── button.png.svn-base
│ │ │ └── stars.png.svn-base
│ │ └── text-base
│ │ │ ├── button.png.svn-base
│ │ │ ├── stars.pex.svn-base
│ │ │ └── stars.png.svn-base
│ ├── button.png
│ ├── stars.pex
│ └── stars.png
│ ├── manifest.txt
│ └── src
│ ├── Intermediate_One_Away3D_Two_Starling_Layers.as
│ ├── Starling_Tutorial.html
│ └── starling
│ ├── .svn
│ └── entries
│ └── rootsprites
│ ├── .svn
│ ├── entries
│ └── text-base
│ │ ├── StarlingCheckerboardSprite.as.svn-base
│ │ └── StarlingStarsSprite.as.svn-base
│ ├── StarlingCheckerboardSprite.as
│ └── StarlingStarsSprite.as
└── workflow
└── max
├── bin
└── listing_01
│ ├── Launcher.html
│ ├── onkba.awd
│ ├── onkba.html
│ ├── onkba_N.jpg
│ ├── onkba_N.png
│ ├── swfobject.js
│ ├── viewer.swf
│ └── viewer_loth.swf
├── images
└── listing_01.jpg
└── src
└── Away3DMaxWorkflow.html
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/away3d/away3d-tutorials-fp11/a01efc1f2b23b6468e00393abe9e42a6770e2fbe/.DS_Store
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Build and Release Folders
2 | bin-debug/
3 | bin-release/
4 |
5 | # Project property files
6 | .actionScriptProperties
7 | .flexProperties
8 | .settings/
9 | .project
10 | .iml
11 |
12 | # OSX files
13 | .DS_Store
14 |
15 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | away3d-tutorials-fp11
2 | =====================
3 |
4 | Tutorials for use with the Away3D engine for Flash Player 11
--------------------------------------------------------------------------------
/ant/ant-contrib.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/away3d/away3d-tutorials-fp11/a01efc1f2b23b6468e00393abe9e42a6770e2fbe/ant/ant-contrib.jar
--------------------------------------------------------------------------------
/away3d-tutorials-fp11.iml:
--------------------------------------------------------------------------------
1 |
2 |
70 | To view this page ensure that Adobe Flash Player version 71 | 11.4.0 or greater is installed. 72 |
73 | 78 |60 | To view this page ensure that Adobe Flash Player version 61 | 11.1.0 or greater is installed. 62 |
63 |60 | To view this page ensure that Adobe Flash Player version 61 | 11.1.0 or greater is installed. 62 |
63 |