├── .gitattributes ├── .gitignore ├── LICENSE ├── examples2D ├── BrownianMotion │ ├── Flash │ │ ├── BrownianMotion.fla │ │ ├── BrownianMotion.swf │ │ ├── Frame1.as │ │ └── ShowAirAction.as │ ├── Flex │ │ ├── BrownianMotion.mxml │ │ ├── BrownianMotion.swf │ │ └── ShowAirAction.as │ └── PureAS3 │ │ ├── BrownianMotion.as │ │ ├── BrownianMotion.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ └── ShowAirAction.as ├── CatherineWheel │ ├── Flash │ │ ├── CatherineWheel.fla │ │ ├── CatherineWheel.swf │ │ └── Frame1.as │ ├── Flex │ │ ├── CatherineWheel.mxml │ │ └── CatherineWheel.swf │ └── PureAS3 │ │ ├── CatherineWheel.as │ │ ├── CatherineWheel.swf │ │ ├── Main.as │ │ └── MainPlus.as ├── ExplodeImage │ ├── Flash │ │ ├── ExplodeImage.fla │ │ ├── ExplodeImage.swf │ │ └── Frame1.as │ ├── Flex │ │ ├── ExplodeImage.mxml │ │ ├── ExplodeImage.swf │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ └── PureAS3 │ │ ├── ExplodeImage.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ └── assets │ │ ├── Assets.fla │ │ └── Assets.swc ├── FireAndSmoke │ ├── Flash │ │ ├── FireAndSmoke.fla │ │ ├── FireAndSmoke.swf │ │ └── Frame1.as │ ├── Flex │ │ ├── FireAndSmoke.mxml │ │ ├── FireAndSmoke.swf │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ └── PureAS3 │ │ ├── Fire.as │ │ ├── FireAndSmoke.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ ├── Smoke.as │ │ └── assets │ │ ├── Assets.fla │ │ └── Assets.swc ├── Firework │ ├── Flash │ │ ├── Firework.fla │ │ ├── Firework.swf │ │ └── Frame1.as │ ├── Flex │ │ ├── Firework.mxml │ │ └── Firework.swf │ └── PureAS3 │ │ ├── Firework.as │ │ ├── Firework.swf │ │ ├── Main.as │ │ └── MainPlus.as ├── Flocking │ ├── Flash │ │ ├── Flocking.fla │ │ ├── Flocking.swf │ │ └── Frame1.as │ ├── Flex │ │ ├── Flocking.mxml │ │ ├── Flocking.swf │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ └── PureAS3 │ │ ├── Flock.as │ │ ├── Flocking.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ └── assets │ │ ├── Assets.fla │ │ └── Assets.swc ├── Grass │ ├── Flash │ │ ├── Frame1.as │ │ ├── Grass.fla │ │ └── Grass.swf │ ├── Flex │ │ ├── Grass.mxml │ │ └── Grass.swf │ └── PureAS3 │ │ ├── Grass.as │ │ ├── Grass.swf │ │ ├── Main.as │ │ └── MainPlus.as ├── GravityWells │ ├── Flash │ │ ├── Frame1.as │ │ ├── GravityWells.fla │ │ └── GravityWells.swf │ ├── Flex │ │ ├── GravityWells.mxml │ │ └── GravityWells.swf │ └── PureAS3 │ │ ├── GravityWells.as │ │ ├── GravityWells.swf │ │ ├── Main.as │ │ └── MainPlus.as ├── LogoFirework │ ├── Flash │ │ ├── Frame1.as │ │ ├── LogoFirework.fla │ │ └── LogoFirework.swf │ ├── Flex │ │ ├── LogoFirework.mxml │ │ ├── LogoFirework.swf │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ └── PureAS3 │ │ ├── LogoFirework.as │ │ ├── LogoFirework.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ └── assets │ │ ├── Assets.fla │ │ └── Assets.swc ├── LogoOnFire │ ├── Flash │ │ ├── Frame1.as │ │ ├── LogoOnFire.fla │ │ └── LogoOnFire.swf │ ├── Flex │ │ ├── LogoOnFire.mxml │ │ ├── LogoOnFire.swf │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ └── PureAS3 │ │ ├── LogoFire.as │ │ ├── LogoOnFire.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ └── assets │ │ ├── Assets.fla │ │ └── Assets.swc ├── LogoTween │ ├── Flash │ │ ├── Frame1.as │ │ ├── LogoTween.fla │ │ └── LogoTween.swf │ └── PureAS3 │ │ ├── FirstEmitter.as │ │ ├── LogoTween.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ ├── TweenToFlint.as │ │ ├── TweenToParticles.as │ │ └── assets │ │ ├── Assets.fla │ │ └── Assets.swc ├── MutualGravity │ ├── Flash │ │ ├── Frame1.as │ │ ├── MutualGravity.fla │ │ └── MutualGravity.swf │ ├── Flex │ │ ├── MutualGravity.mxml │ │ └── MutualGravity.swf │ └── PureAS3 │ │ ├── Main.as │ │ ├── MainPlus.as │ │ ├── MutualG.as │ │ └── MutualGravity.swf ├── Pachinko │ ├── Flash │ │ ├── Frame1.as │ │ ├── Pachinko.fla │ │ └── Pachinko.swf │ └── PureAS3 │ │ ├── Main.as │ │ ├── MainPlus.as │ │ ├── Pachinko.as │ │ └── Pachinko.swf ├── Rain │ ├── Flash │ │ ├── Frame1.as │ │ ├── Rain.fla │ │ └── Rain.swf │ ├── Flex │ │ ├── Rain.mxml │ │ ├── Rain.swf │ │ └── assets │ │ │ ├── Assets.fla │ │ │ ├── Assets.swc │ │ │ └── Photos.txt │ └── PureAS3 │ │ ├── Main.as │ │ ├── MainPlus.as │ │ ├── Rain.as │ │ ├── Rain.swf │ │ └── assets │ │ ├── Assets.fla │ │ ├── Assets.swc │ │ └── Photos.txt ├── Snowfall │ ├── Flash │ │ ├── Frame1.as │ │ ├── Snowfall.fla │ │ └── Snowfall.swf │ ├── Flex │ │ ├── Snowfall.mxml │ │ ├── Snowfall.swf │ │ └── assets │ │ │ ├── Assets.fla │ │ │ ├── Assets.swc │ │ │ └── Photos.txt │ └── PureAS3 │ │ ├── Main.as │ │ ├── MainPlus.as │ │ ├── Snowfall.as │ │ ├── Snowfall.swf │ │ └── assets │ │ ├── Assets.fla │ │ ├── Assets.swc │ │ └── Photos.txt └── Sparkler │ ├── Flash │ ├── Frame1.as │ ├── Sparkler.fla │ └── Sparkler.swf │ ├── Flex │ ├── Sparkler.mxml │ └── Sparkler.swf │ └── PureAS3 │ ├── Main.as │ ├── MainPlus.as │ ├── Sparkler.as │ └── Sparkler.swf ├── examples3D ├── BrownianMotion │ ├── Alternativa3d │ │ ├── BrownianMotion.as │ │ ├── BrownianMotion.swf │ │ ├── Main.as │ │ └── ShowAirAction.as │ ├── Away3d3 │ │ ├── BrownianMotion.as │ │ ├── BrownianMotion.swf │ │ ├── Main.as │ │ └── ShowAirAction.as │ ├── Away3d4 │ │ ├── BrownianMotion.as │ │ ├── BrownianMotion.swf │ │ ├── Main.as │ │ └── ShowAirAction.as │ ├── Flare3d │ │ ├── BrownianMotion.as │ │ ├── BrownianMotion.swf │ │ ├── Main.as │ │ └── ShowAirAction.as │ ├── Flash │ │ ├── BrownianMotion.fla │ │ ├── BrownianMotion.swf │ │ ├── Frame1.as │ │ └── ShowAirAction.as │ ├── Flex │ │ ├── BrownianMotion.mxml │ │ ├── BrownianMotion.swf │ │ └── ShowAirAction.as │ ├── Papervision3d │ │ ├── BrownianMotion.as │ │ ├── BrownianMotion.swf │ │ ├── Main.as │ │ └── ShowAirAction.as │ └── PureAS3 │ │ ├── BrownianMotion.as │ │ ├── BrownianMotion.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ └── ShowAirAction.as ├── ExplodeImage │ ├── Flash │ │ ├── ExplodeImage.fla │ │ ├── ExplodeImage.swf │ │ └── Frame1.as │ ├── Flex │ │ ├── ExplodeImage.mxml │ │ ├── ExplodeImage.swf │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ └── PureAs3 │ │ ├── ExplodeImage.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ └── assets │ │ ├── Assets.fla │ │ └── Assets.swc ├── FireAndSmoke │ ├── Alternativa3d │ │ ├── Fire.as │ │ ├── FireAndSmoke.swf │ │ ├── Main.as │ │ ├── Smoke.as │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ ├── Away3d3 │ │ ├── Fire.as │ │ ├── FireAndSmoke.swf │ │ ├── Main.as │ │ ├── Smoke.as │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ ├── Away3d4 │ │ ├── Fire.as │ │ ├── FireAndSmoke.swf │ │ ├── Main.as │ │ ├── Smoke.as │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ ├── Flash │ │ ├── FireAndSmoke.fla │ │ ├── FireAndSmoke.swf │ │ └── Frame1.as │ ├── Flex │ │ ├── FireAndSmoke.mxml │ │ ├── FireAndSmoke.swf │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ ├── Papervision3d │ │ ├── Fire.as │ │ ├── FireAndSmoke.swf │ │ ├── Main.as │ │ ├── Smoke.as │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ └── PureAS3 │ │ ├── Fire.as │ │ ├── FireAndSmoke.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ ├── Smoke.as │ │ └── assets │ │ ├── Assets.fla │ │ └── Assets.swc ├── FireworkDisplay │ ├── Flash │ │ ├── Candle.as │ │ ├── CatherineWheel.as │ │ ├── FireworkDisplay.fla │ │ ├── FireworkDisplay.swf │ │ ├── Frame1.as │ │ ├── SphereBang.as │ │ └── Whizzer.as │ ├── Flex │ │ ├── Candle.mxml │ │ ├── CatherineWheel.mxml │ │ ├── FireworkDisplay.mxml │ │ ├── FireworkDisplay.swf │ │ ├── SphereBang.mxml │ │ └── Whizzer.mxml │ └── PureAS3 │ │ ├── Candle.as │ │ ├── CatherineWheel.as │ │ ├── FireworkDisplay.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ ├── SphereBang.as │ │ └── Whizzer.as ├── Flocking │ ├── Flash │ │ ├── Flocking.fla │ │ ├── Flocking.swf │ │ └── Frame1.as │ ├── Flex │ │ ├── Flocking.mxml │ │ ├── Flocking.swf │ │ └── assets │ │ │ ├── Assets.fla │ │ │ └── Assets.swc │ └── PureAS3 │ │ ├── Flock.as │ │ ├── Flocking.swf │ │ ├── Main.as │ │ ├── MainPlus.as │ │ └── assets │ │ ├── Assets.fla │ │ └── Assets.swc ├── Fountain │ ├── Flash │ │ ├── Fountain.fla │ │ ├── Fountain.swf │ │ └── Frame1.as │ ├── Flex │ │ ├── Fountain.mxml │ │ └── Fountain.swf │ ├── Papervision3d │ │ ├── Fountain.as │ │ ├── Fountain.swf │ │ └── Main.as │ └── PureAS3 │ │ ├── Fountain.as │ │ ├── Fountain.swf │ │ ├── Main.as │ │ └── MainPlus.as └── Planets │ ├── Alternativa3d │ ├── Main.as │ ├── Planets.as │ └── Planets.swf │ ├── Away3d4 │ ├── Main.as │ ├── MainPlus.as │ ├── Planets.as │ └── Planets.swf │ └── Flare3d │ ├── Main.as │ ├── Planets.as │ └── Planets.swf └── libs ├── Away3d_3.6.swc ├── Away3d_4.0.110915.swc ├── Flare3D_2042.swc ├── Flint2d_4.0.1.swc ├── Flint3d_4.0.1.swc ├── FlintAlternativa3d_4.0.1.swc ├── FlintAway3d3_4.0.1.swc ├── FlintAway3d4_4.0.1.swc ├── FlintFlare3d_4.0.1.swc ├── FlintPapervision3d_4.0.1.swc ├── Papervision3D_2.1.920.swc ├── alternativa3d.txt ├── away3d-license.txt ├── flare3d-license.txt ├── flint_license └── papervision3d-license.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /examples2D/BrownianMotion/Flash/BrownianMotion.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/Flash/BrownianMotion.fla -------------------------------------------------------------------------------- /examples2D/BrownianMotion/Flash/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/Flash/BrownianMotion.swf -------------------------------------------------------------------------------- /examples2D/BrownianMotion/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/BrownianMotion/Flash/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/Flash/ShowAirAction.as -------------------------------------------------------------------------------- /examples2D/BrownianMotion/Flex/BrownianMotion.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/Flex/BrownianMotion.mxml -------------------------------------------------------------------------------- /examples2D/BrownianMotion/Flex/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/Flex/BrownianMotion.swf -------------------------------------------------------------------------------- /examples2D/BrownianMotion/Flex/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/Flex/ShowAirAction.as -------------------------------------------------------------------------------- /examples2D/BrownianMotion/PureAS3/BrownianMotion.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/PureAS3/BrownianMotion.as -------------------------------------------------------------------------------- /examples2D/BrownianMotion/PureAS3/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/PureAS3/BrownianMotion.swf -------------------------------------------------------------------------------- /examples2D/BrownianMotion/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/BrownianMotion/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/BrownianMotion/PureAS3/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/BrownianMotion/PureAS3/ShowAirAction.as -------------------------------------------------------------------------------- /examples2D/CatherineWheel/Flash/CatherineWheel.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/CatherineWheel/Flash/CatherineWheel.fla -------------------------------------------------------------------------------- /examples2D/CatherineWheel/Flash/CatherineWheel.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/CatherineWheel/Flash/CatherineWheel.swf -------------------------------------------------------------------------------- /examples2D/CatherineWheel/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/CatherineWheel/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/CatherineWheel/Flex/CatherineWheel.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/CatherineWheel/Flex/CatherineWheel.mxml -------------------------------------------------------------------------------- /examples2D/CatherineWheel/Flex/CatherineWheel.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/CatherineWheel/Flex/CatherineWheel.swf -------------------------------------------------------------------------------- /examples2D/CatherineWheel/PureAS3/CatherineWheel.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/CatherineWheel/PureAS3/CatherineWheel.as -------------------------------------------------------------------------------- /examples2D/CatherineWheel/PureAS3/CatherineWheel.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/CatherineWheel/PureAS3/CatherineWheel.swf -------------------------------------------------------------------------------- /examples2D/CatherineWheel/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/CatherineWheel/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/CatherineWheel/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/CatherineWheel/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/ExplodeImage/Flash/ExplodeImage.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/Flash/ExplodeImage.fla -------------------------------------------------------------------------------- /examples2D/ExplodeImage/Flash/ExplodeImage.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/Flash/ExplodeImage.swf -------------------------------------------------------------------------------- /examples2D/ExplodeImage/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/ExplodeImage/Flex/ExplodeImage.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/Flex/ExplodeImage.mxml -------------------------------------------------------------------------------- /examples2D/ExplodeImage/Flex/ExplodeImage.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/Flex/ExplodeImage.swf -------------------------------------------------------------------------------- /examples2D/ExplodeImage/Flex/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/Flex/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/ExplodeImage/Flex/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/Flex/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/ExplodeImage/PureAS3/ExplodeImage.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/PureAS3/ExplodeImage.swf -------------------------------------------------------------------------------- /examples2D/ExplodeImage/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/ExplodeImage/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/ExplodeImage/PureAS3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/PureAS3/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/ExplodeImage/PureAS3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/ExplodeImage/PureAS3/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/Flash/FireAndSmoke.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/Flash/FireAndSmoke.fla -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/Flash/FireAndSmoke.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/Flash/FireAndSmoke.swf -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/Flex/FireAndSmoke.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/Flex/FireAndSmoke.mxml -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/Flex/FireAndSmoke.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/Flex/FireAndSmoke.swf -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/Flex/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/Flex/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/Flex/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/Flex/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/PureAS3/Fire.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/PureAS3/Fire.as -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/PureAS3/FireAndSmoke.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/PureAS3/FireAndSmoke.swf -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/PureAS3/Smoke.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/PureAS3/Smoke.as -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/PureAS3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/PureAS3/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/FireAndSmoke/PureAS3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/FireAndSmoke/PureAS3/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/Firework/Flash/Firework.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Firework/Flash/Firework.fla -------------------------------------------------------------------------------- /examples2D/Firework/Flash/Firework.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Firework/Flash/Firework.swf -------------------------------------------------------------------------------- /examples2D/Firework/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Firework/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/Firework/Flex/Firework.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Firework/Flex/Firework.mxml -------------------------------------------------------------------------------- /examples2D/Firework/Flex/Firework.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Firework/Flex/Firework.swf -------------------------------------------------------------------------------- /examples2D/Firework/PureAS3/Firework.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Firework/PureAS3/Firework.as -------------------------------------------------------------------------------- /examples2D/Firework/PureAS3/Firework.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Firework/PureAS3/Firework.swf -------------------------------------------------------------------------------- /examples2D/Firework/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Firework/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/Firework/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Firework/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/Flocking/Flash/Flocking.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/Flash/Flocking.fla -------------------------------------------------------------------------------- /examples2D/Flocking/Flash/Flocking.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/Flash/Flocking.swf -------------------------------------------------------------------------------- /examples2D/Flocking/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/Flocking/Flex/Flocking.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/Flex/Flocking.mxml -------------------------------------------------------------------------------- /examples2D/Flocking/Flex/Flocking.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/Flex/Flocking.swf -------------------------------------------------------------------------------- /examples2D/Flocking/Flex/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/Flex/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/Flocking/Flex/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/Flex/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/Flocking/PureAS3/Flock.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/PureAS3/Flock.as -------------------------------------------------------------------------------- /examples2D/Flocking/PureAS3/Flocking.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/PureAS3/Flocking.swf -------------------------------------------------------------------------------- /examples2D/Flocking/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/Flocking/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/Flocking/PureAS3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/PureAS3/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/Flocking/PureAS3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Flocking/PureAS3/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/Grass/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Grass/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/Grass/Flash/Grass.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Grass/Flash/Grass.fla -------------------------------------------------------------------------------- /examples2D/Grass/Flash/Grass.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Grass/Flash/Grass.swf -------------------------------------------------------------------------------- /examples2D/Grass/Flex/Grass.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Grass/Flex/Grass.mxml -------------------------------------------------------------------------------- /examples2D/Grass/Flex/Grass.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Grass/Flex/Grass.swf -------------------------------------------------------------------------------- /examples2D/Grass/PureAS3/Grass.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Grass/PureAS3/Grass.as -------------------------------------------------------------------------------- /examples2D/Grass/PureAS3/Grass.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Grass/PureAS3/Grass.swf -------------------------------------------------------------------------------- /examples2D/Grass/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Grass/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/Grass/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Grass/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/GravityWells/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/GravityWells/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/GravityWells/Flash/GravityWells.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/GravityWells/Flash/GravityWells.fla -------------------------------------------------------------------------------- /examples2D/GravityWells/Flash/GravityWells.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/GravityWells/Flash/GravityWells.swf -------------------------------------------------------------------------------- /examples2D/GravityWells/Flex/GravityWells.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/GravityWells/Flex/GravityWells.mxml -------------------------------------------------------------------------------- /examples2D/GravityWells/Flex/GravityWells.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/GravityWells/Flex/GravityWells.swf -------------------------------------------------------------------------------- /examples2D/GravityWells/PureAS3/GravityWells.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/GravityWells/PureAS3/GravityWells.as -------------------------------------------------------------------------------- /examples2D/GravityWells/PureAS3/GravityWells.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/GravityWells/PureAS3/GravityWells.swf -------------------------------------------------------------------------------- /examples2D/GravityWells/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/GravityWells/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/GravityWells/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/GravityWells/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/LogoFirework/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/LogoFirework/Flash/LogoFirework.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/Flash/LogoFirework.fla -------------------------------------------------------------------------------- /examples2D/LogoFirework/Flash/LogoFirework.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/Flash/LogoFirework.swf -------------------------------------------------------------------------------- /examples2D/LogoFirework/Flex/LogoFirework.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/Flex/LogoFirework.mxml -------------------------------------------------------------------------------- /examples2D/LogoFirework/Flex/LogoFirework.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/Flex/LogoFirework.swf -------------------------------------------------------------------------------- /examples2D/LogoFirework/Flex/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/Flex/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/LogoFirework/Flex/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/Flex/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/LogoFirework/PureAS3/LogoFirework.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/PureAS3/LogoFirework.as -------------------------------------------------------------------------------- /examples2D/LogoFirework/PureAS3/LogoFirework.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/PureAS3/LogoFirework.swf -------------------------------------------------------------------------------- /examples2D/LogoFirework/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/LogoFirework/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/LogoFirework/PureAS3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/PureAS3/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/LogoFirework/PureAS3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoFirework/PureAS3/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/LogoOnFire/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/LogoOnFire/Flash/LogoOnFire.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/Flash/LogoOnFire.fla -------------------------------------------------------------------------------- /examples2D/LogoOnFire/Flash/LogoOnFire.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/Flash/LogoOnFire.swf -------------------------------------------------------------------------------- /examples2D/LogoOnFire/Flex/LogoOnFire.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/Flex/LogoOnFire.mxml -------------------------------------------------------------------------------- /examples2D/LogoOnFire/Flex/LogoOnFire.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/Flex/LogoOnFire.swf -------------------------------------------------------------------------------- /examples2D/LogoOnFire/Flex/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/Flex/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/LogoOnFire/Flex/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/Flex/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/LogoOnFire/PureAS3/LogoFire.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/PureAS3/LogoFire.as -------------------------------------------------------------------------------- /examples2D/LogoOnFire/PureAS3/LogoOnFire.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/PureAS3/LogoOnFire.swf -------------------------------------------------------------------------------- /examples2D/LogoOnFire/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/LogoOnFire/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/LogoOnFire/PureAS3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/PureAS3/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/LogoOnFire/PureAS3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoOnFire/PureAS3/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/LogoTween/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/LogoTween/Flash/LogoTween.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/Flash/LogoTween.fla -------------------------------------------------------------------------------- /examples2D/LogoTween/Flash/LogoTween.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/Flash/LogoTween.swf -------------------------------------------------------------------------------- /examples2D/LogoTween/PureAS3/FirstEmitter.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/PureAS3/FirstEmitter.as -------------------------------------------------------------------------------- /examples2D/LogoTween/PureAS3/LogoTween.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/PureAS3/LogoTween.swf -------------------------------------------------------------------------------- /examples2D/LogoTween/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/LogoTween/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/LogoTween/PureAS3/TweenToFlint.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/PureAS3/TweenToFlint.as -------------------------------------------------------------------------------- /examples2D/LogoTween/PureAS3/TweenToParticles.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/PureAS3/TweenToParticles.as -------------------------------------------------------------------------------- /examples2D/LogoTween/PureAS3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/PureAS3/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/LogoTween/PureAS3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/LogoTween/PureAS3/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/MutualGravity/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/MutualGravity/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/MutualGravity/Flash/MutualGravity.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/MutualGravity/Flash/MutualGravity.fla -------------------------------------------------------------------------------- /examples2D/MutualGravity/Flash/MutualGravity.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/MutualGravity/Flash/MutualGravity.swf -------------------------------------------------------------------------------- /examples2D/MutualGravity/Flex/MutualGravity.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/MutualGravity/Flex/MutualGravity.mxml -------------------------------------------------------------------------------- /examples2D/MutualGravity/Flex/MutualGravity.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/MutualGravity/Flex/MutualGravity.swf -------------------------------------------------------------------------------- /examples2D/MutualGravity/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/MutualGravity/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/MutualGravity/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/MutualGravity/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/MutualGravity/PureAS3/MutualG.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/MutualGravity/PureAS3/MutualG.as -------------------------------------------------------------------------------- /examples2D/MutualGravity/PureAS3/MutualGravity.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/MutualGravity/PureAS3/MutualGravity.swf -------------------------------------------------------------------------------- /examples2D/Pachinko/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Pachinko/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/Pachinko/Flash/Pachinko.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Pachinko/Flash/Pachinko.fla -------------------------------------------------------------------------------- /examples2D/Pachinko/Flash/Pachinko.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Pachinko/Flash/Pachinko.swf -------------------------------------------------------------------------------- /examples2D/Pachinko/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Pachinko/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/Pachinko/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Pachinko/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/Pachinko/PureAS3/Pachinko.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Pachinko/PureAS3/Pachinko.as -------------------------------------------------------------------------------- /examples2D/Pachinko/PureAS3/Pachinko.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Pachinko/PureAS3/Pachinko.swf -------------------------------------------------------------------------------- /examples2D/Rain/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/Rain/Flash/Rain.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/Flash/Rain.fla -------------------------------------------------------------------------------- /examples2D/Rain/Flash/Rain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/Flash/Rain.swf -------------------------------------------------------------------------------- /examples2D/Rain/Flex/Rain.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/Flex/Rain.mxml -------------------------------------------------------------------------------- /examples2D/Rain/Flex/Rain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/Flex/Rain.swf -------------------------------------------------------------------------------- /examples2D/Rain/Flex/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/Flex/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/Rain/Flex/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/Flex/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/Rain/Flex/assets/Photos.txt: -------------------------------------------------------------------------------- 1 | Photo by Piotr Ciuchta 2 | Obtained from shock.xchng 3 | http://www.sxc.hu/photo/935765 -------------------------------------------------------------------------------- /examples2D/Rain/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/Rain/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/Rain/PureAS3/Rain.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/PureAS3/Rain.as -------------------------------------------------------------------------------- /examples2D/Rain/PureAS3/Rain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/PureAS3/Rain.swf -------------------------------------------------------------------------------- /examples2D/Rain/PureAS3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/PureAS3/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/Rain/PureAS3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Rain/PureAS3/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/Rain/PureAS3/assets/Photos.txt: -------------------------------------------------------------------------------- 1 | Photo by Piotr Ciuchta 2 | Obtained from shock.xchng 3 | http://www.sxc.hu/photo/935765 -------------------------------------------------------------------------------- /examples2D/Snowfall/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/Snowfall/Flash/Snowfall.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/Flash/Snowfall.fla -------------------------------------------------------------------------------- /examples2D/Snowfall/Flash/Snowfall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/Flash/Snowfall.swf -------------------------------------------------------------------------------- /examples2D/Snowfall/Flex/Snowfall.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/Flex/Snowfall.mxml -------------------------------------------------------------------------------- /examples2D/Snowfall/Flex/Snowfall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/Flex/Snowfall.swf -------------------------------------------------------------------------------- /examples2D/Snowfall/Flex/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/Flex/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/Snowfall/Flex/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/Flex/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/Snowfall/Flex/assets/Photos.txt: -------------------------------------------------------------------------------- 1 | Photo by Kevin Taylor 2 | Obtained from shock.xchng 3 | http://www.sxc.hu/photo/972257 -------------------------------------------------------------------------------- /examples2D/Snowfall/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/Snowfall/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/Snowfall/PureAS3/Snowfall.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/PureAS3/Snowfall.as -------------------------------------------------------------------------------- /examples2D/Snowfall/PureAS3/Snowfall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/PureAS3/Snowfall.swf -------------------------------------------------------------------------------- /examples2D/Snowfall/PureAS3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/PureAS3/assets/Assets.fla -------------------------------------------------------------------------------- /examples2D/Snowfall/PureAS3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Snowfall/PureAS3/assets/Assets.swc -------------------------------------------------------------------------------- /examples2D/Snowfall/PureAS3/assets/Photos.txt: -------------------------------------------------------------------------------- 1 | Photo by Kevin Taylor 2 | Obtained from shock.xchng 3 | http://www.sxc.hu/photo/972257 -------------------------------------------------------------------------------- /examples2D/Sparkler/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Sparkler/Flash/Frame1.as -------------------------------------------------------------------------------- /examples2D/Sparkler/Flash/Sparkler.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Sparkler/Flash/Sparkler.fla -------------------------------------------------------------------------------- /examples2D/Sparkler/Flash/Sparkler.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Sparkler/Flash/Sparkler.swf -------------------------------------------------------------------------------- /examples2D/Sparkler/Flex/Sparkler.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Sparkler/Flex/Sparkler.mxml -------------------------------------------------------------------------------- /examples2D/Sparkler/Flex/Sparkler.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Sparkler/Flex/Sparkler.swf -------------------------------------------------------------------------------- /examples2D/Sparkler/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Sparkler/PureAS3/Main.as -------------------------------------------------------------------------------- /examples2D/Sparkler/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Sparkler/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples2D/Sparkler/PureAS3/Sparkler.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Sparkler/PureAS3/Sparkler.as -------------------------------------------------------------------------------- /examples2D/Sparkler/PureAS3/Sparkler.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples2D/Sparkler/PureAS3/Sparkler.swf -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Alternativa3d/BrownianMotion.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Alternativa3d/BrownianMotion.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Alternativa3d/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Alternativa3d/BrownianMotion.swf -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Alternativa3d/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Alternativa3d/Main.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Alternativa3d/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Alternativa3d/ShowAirAction.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Away3d3/BrownianMotion.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Away3d3/BrownianMotion.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Away3d3/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Away3d3/BrownianMotion.swf -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Away3d3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Away3d3/Main.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Away3d3/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Away3d3/ShowAirAction.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Away3d4/BrownianMotion.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Away3d4/BrownianMotion.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Away3d4/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Away3d4/BrownianMotion.swf -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Away3d4/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Away3d4/Main.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Away3d4/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Away3d4/ShowAirAction.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flare3d/BrownianMotion.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flare3d/BrownianMotion.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flare3d/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flare3d/BrownianMotion.swf -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flare3d/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flare3d/Main.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flare3d/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flare3d/ShowAirAction.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flash/BrownianMotion.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flash/BrownianMotion.fla -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flash/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flash/BrownianMotion.swf -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flash/Frame1.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flash/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flash/ShowAirAction.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flex/BrownianMotion.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flex/BrownianMotion.mxml -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flex/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flex/BrownianMotion.swf -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Flex/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Flex/ShowAirAction.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Papervision3d/BrownianMotion.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Papervision3d/BrownianMotion.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Papervision3d/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Papervision3d/BrownianMotion.swf -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Papervision3d/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Papervision3d/Main.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/Papervision3d/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/Papervision3d/ShowAirAction.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/PureAS3/BrownianMotion.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/PureAS3/BrownianMotion.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/PureAS3/BrownianMotion.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/PureAS3/BrownianMotion.swf -------------------------------------------------------------------------------- /examples3D/BrownianMotion/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/PureAS3/Main.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples3D/BrownianMotion/PureAS3/ShowAirAction.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/BrownianMotion/PureAS3/ShowAirAction.as -------------------------------------------------------------------------------- /examples3D/ExplodeImage/Flash/ExplodeImage.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/Flash/ExplodeImage.fla -------------------------------------------------------------------------------- /examples3D/ExplodeImage/Flash/ExplodeImage.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/Flash/ExplodeImage.swf -------------------------------------------------------------------------------- /examples3D/ExplodeImage/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/Flash/Frame1.as -------------------------------------------------------------------------------- /examples3D/ExplodeImage/Flex/ExplodeImage.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/Flex/ExplodeImage.mxml -------------------------------------------------------------------------------- /examples3D/ExplodeImage/Flex/ExplodeImage.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/Flex/ExplodeImage.swf -------------------------------------------------------------------------------- /examples3D/ExplodeImage/Flex/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/Flex/assets/Assets.fla -------------------------------------------------------------------------------- /examples3D/ExplodeImage/Flex/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/Flex/assets/Assets.swc -------------------------------------------------------------------------------- /examples3D/ExplodeImage/PureAs3/ExplodeImage.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/PureAs3/ExplodeImage.swf -------------------------------------------------------------------------------- /examples3D/ExplodeImage/PureAs3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/PureAs3/Main.as -------------------------------------------------------------------------------- /examples3D/ExplodeImage/PureAs3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/PureAs3/MainPlus.as -------------------------------------------------------------------------------- /examples3D/ExplodeImage/PureAs3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/PureAs3/assets/Assets.fla -------------------------------------------------------------------------------- /examples3D/ExplodeImage/PureAs3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/ExplodeImage/PureAs3/assets/Assets.swc -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Alternativa3d/Fire.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Alternativa3d/Fire.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Alternativa3d/FireAndSmoke.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Alternativa3d/FireAndSmoke.swf -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Alternativa3d/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Alternativa3d/Main.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Alternativa3d/Smoke.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Alternativa3d/Smoke.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Alternativa3d/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Alternativa3d/assets/Assets.fla -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Alternativa3d/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Alternativa3d/assets/Assets.swc -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d3/Fire.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d3/Fire.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d3/FireAndSmoke.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d3/FireAndSmoke.swf -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d3/Main.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d3/Smoke.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d3/Smoke.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d3/assets/Assets.fla -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d3/assets/Assets.swc -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d4/Fire.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d4/Fire.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d4/FireAndSmoke.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d4/FireAndSmoke.swf -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d4/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d4/Main.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d4/Smoke.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d4/Smoke.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d4/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d4/assets/Assets.fla -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Away3d4/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Away3d4/assets/Assets.swc -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Flash/FireAndSmoke.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Flash/FireAndSmoke.fla -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Flash/FireAndSmoke.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Flash/FireAndSmoke.swf -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Flash/Frame1.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Flex/FireAndSmoke.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Flex/FireAndSmoke.mxml -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Flex/FireAndSmoke.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Flex/FireAndSmoke.swf -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Flex/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Flex/assets/Assets.fla -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Flex/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Flex/assets/Assets.swc -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Papervision3d/Fire.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Papervision3d/Fire.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Papervision3d/FireAndSmoke.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Papervision3d/FireAndSmoke.swf -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Papervision3d/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Papervision3d/Main.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Papervision3d/Smoke.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Papervision3d/Smoke.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Papervision3d/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Papervision3d/assets/Assets.fla -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/Papervision3d/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/Papervision3d/assets/Assets.swc -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/PureAS3/Fire.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/PureAS3/Fire.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/PureAS3/FireAndSmoke.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/PureAS3/FireAndSmoke.swf -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/PureAS3/Main.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/PureAS3/Smoke.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/PureAS3/Smoke.as -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/PureAS3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/PureAS3/assets/Assets.fla -------------------------------------------------------------------------------- /examples3D/FireAndSmoke/PureAS3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireAndSmoke/PureAS3/assets/Assets.swc -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flash/Candle.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flash/Candle.as -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flash/CatherineWheel.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flash/CatherineWheel.as -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flash/FireworkDisplay.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flash/FireworkDisplay.fla -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flash/FireworkDisplay.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flash/FireworkDisplay.swf -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flash/Frame1.as -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flash/SphereBang.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flash/SphereBang.as -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flash/Whizzer.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flash/Whizzer.as -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flex/Candle.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flex/Candle.mxml -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flex/CatherineWheel.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flex/CatherineWheel.mxml -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flex/FireworkDisplay.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flex/FireworkDisplay.mxml -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flex/FireworkDisplay.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flex/FireworkDisplay.swf -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flex/SphereBang.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flex/SphereBang.mxml -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/Flex/Whizzer.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/Flex/Whizzer.mxml -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/PureAS3/Candle.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/PureAS3/Candle.as -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/PureAS3/CatherineWheel.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/PureAS3/CatherineWheel.as -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/PureAS3/FireworkDisplay.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/PureAS3/FireworkDisplay.swf -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/PureAS3/Main.as -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/PureAS3/SphereBang.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/PureAS3/SphereBang.as -------------------------------------------------------------------------------- /examples3D/FireworkDisplay/PureAS3/Whizzer.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/FireworkDisplay/PureAS3/Whizzer.as -------------------------------------------------------------------------------- /examples3D/Flocking/Flash/Flocking.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/Flash/Flocking.fla -------------------------------------------------------------------------------- /examples3D/Flocking/Flash/Flocking.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/Flash/Flocking.swf -------------------------------------------------------------------------------- /examples3D/Flocking/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/Flash/Frame1.as -------------------------------------------------------------------------------- /examples3D/Flocking/Flex/Flocking.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/Flex/Flocking.mxml -------------------------------------------------------------------------------- /examples3D/Flocking/Flex/Flocking.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/Flex/Flocking.swf -------------------------------------------------------------------------------- /examples3D/Flocking/Flex/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/Flex/assets/Assets.fla -------------------------------------------------------------------------------- /examples3D/Flocking/Flex/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/Flex/assets/Assets.swc -------------------------------------------------------------------------------- /examples3D/Flocking/PureAS3/Flock.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/PureAS3/Flock.as -------------------------------------------------------------------------------- /examples3D/Flocking/PureAS3/Flocking.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/PureAS3/Flocking.swf -------------------------------------------------------------------------------- /examples3D/Flocking/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/PureAS3/Main.as -------------------------------------------------------------------------------- /examples3D/Flocking/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples3D/Flocking/PureAS3/assets/Assets.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/PureAS3/assets/Assets.fla -------------------------------------------------------------------------------- /examples3D/Flocking/PureAS3/assets/Assets.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Flocking/PureAS3/assets/Assets.swc -------------------------------------------------------------------------------- /examples3D/Fountain/Flash/Fountain.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/Flash/Fountain.fla -------------------------------------------------------------------------------- /examples3D/Fountain/Flash/Fountain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/Flash/Fountain.swf -------------------------------------------------------------------------------- /examples3D/Fountain/Flash/Frame1.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/Flash/Frame1.as -------------------------------------------------------------------------------- /examples3D/Fountain/Flex/Fountain.mxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/Flex/Fountain.mxml -------------------------------------------------------------------------------- /examples3D/Fountain/Flex/Fountain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/Flex/Fountain.swf -------------------------------------------------------------------------------- /examples3D/Fountain/Papervision3d/Fountain.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/Papervision3d/Fountain.as -------------------------------------------------------------------------------- /examples3D/Fountain/Papervision3d/Fountain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/Papervision3d/Fountain.swf -------------------------------------------------------------------------------- /examples3D/Fountain/Papervision3d/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/Papervision3d/Main.as -------------------------------------------------------------------------------- /examples3D/Fountain/PureAS3/Fountain.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/PureAS3/Fountain.as -------------------------------------------------------------------------------- /examples3D/Fountain/PureAS3/Fountain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/PureAS3/Fountain.swf -------------------------------------------------------------------------------- /examples3D/Fountain/PureAS3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/PureAS3/Main.as -------------------------------------------------------------------------------- /examples3D/Fountain/PureAS3/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Fountain/PureAS3/MainPlus.as -------------------------------------------------------------------------------- /examples3D/Planets/Alternativa3d/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Planets/Alternativa3d/Main.as -------------------------------------------------------------------------------- /examples3D/Planets/Alternativa3d/Planets.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Planets/Alternativa3d/Planets.as -------------------------------------------------------------------------------- /examples3D/Planets/Alternativa3d/Planets.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Planets/Alternativa3d/Planets.swf -------------------------------------------------------------------------------- /examples3D/Planets/Away3d4/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Planets/Away3d4/Main.as -------------------------------------------------------------------------------- /examples3D/Planets/Away3d4/MainPlus.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Planets/Away3d4/MainPlus.as -------------------------------------------------------------------------------- /examples3D/Planets/Away3d4/Planets.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Planets/Away3d4/Planets.as -------------------------------------------------------------------------------- /examples3D/Planets/Away3d4/Planets.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Planets/Away3d4/Planets.swf -------------------------------------------------------------------------------- /examples3D/Planets/Flare3d/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Planets/Flare3d/Main.as -------------------------------------------------------------------------------- /examples3D/Planets/Flare3d/Planets.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Planets/Flare3d/Planets.as -------------------------------------------------------------------------------- /examples3D/Planets/Flare3d/Planets.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/examples3D/Planets/Flare3d/Planets.swf -------------------------------------------------------------------------------- /libs/Away3d_3.6.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/Away3d_3.6.swc -------------------------------------------------------------------------------- /libs/Away3d_4.0.110915.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/Away3d_4.0.110915.swc -------------------------------------------------------------------------------- /libs/Flare3D_2042.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/Flare3D_2042.swc -------------------------------------------------------------------------------- /libs/Flint2d_4.0.1.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/Flint2d_4.0.1.swc -------------------------------------------------------------------------------- /libs/Flint3d_4.0.1.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/Flint3d_4.0.1.swc -------------------------------------------------------------------------------- /libs/FlintAlternativa3d_4.0.1.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/FlintAlternativa3d_4.0.1.swc -------------------------------------------------------------------------------- /libs/FlintAway3d3_4.0.1.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/FlintAway3d3_4.0.1.swc -------------------------------------------------------------------------------- /libs/FlintAway3d4_4.0.1.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/FlintAway3d4_4.0.1.swc -------------------------------------------------------------------------------- /libs/FlintFlare3d_4.0.1.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/FlintFlare3d_4.0.1.swc -------------------------------------------------------------------------------- /libs/FlintPapervision3d_4.0.1.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/FlintPapervision3d_4.0.1.swc -------------------------------------------------------------------------------- /libs/Papervision3D_2.1.920.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/Papervision3D_2.1.920.swc -------------------------------------------------------------------------------- /libs/alternativa3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/alternativa3d.txt -------------------------------------------------------------------------------- /libs/away3d-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/away3d-license.txt -------------------------------------------------------------------------------- /libs/flare3d-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/flare3d-license.txt -------------------------------------------------------------------------------- /libs/flint_license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/flint_license -------------------------------------------------------------------------------- /libs/papervision3d-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richardlord/Flint-examples/HEAD/libs/papervision3d-license.txt --------------------------------------------------------------------------------