├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── demos ├── BunnyMark │ ├── .gitignore │ ├── asconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.as │ │ ├── Bunny.as │ │ ├── Main.as │ │ └── wabbit_alpha.png │ └── template.html ├── HerokuShaders │ ├── .gitignore │ ├── asconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.as │ │ ├── Main.as │ │ └── assets │ │ │ ├── 4278.1.frag │ │ │ ├── 5359.8.frag │ │ │ ├── 5398.8.frag │ │ │ ├── 5454.21.frag │ │ │ ├── 5492.frag │ │ │ ├── 5733.frag │ │ │ ├── 5805.18.frag │ │ │ ├── 5812.frag │ │ │ ├── 5891.5.frag │ │ │ ├── 6022.frag │ │ │ ├── 6043.1.frag │ │ │ ├── 6049.frag │ │ │ ├── 6147.1.frag │ │ │ ├── 6162.frag │ │ │ ├── 6175.frag │ │ │ ├── 6223.2.frag │ │ │ ├── 6238.frag │ │ │ ├── 6284.1.frag │ │ │ ├── 6286.frag │ │ │ ├── 6288.1.frag │ │ │ ├── heroku.vert │ │ │ └── readme.txt │ └── template.html ├── NyanCat │ ├── .gitignore │ ├── asconfig.json │ ├── assets │ │ ├── library.fla │ │ └── library.swf │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.as │ │ └── Main.as │ └── template.html └── PiratePig │ ├── .gitignore │ ├── asconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── Main.as │ ├── favicon.png │ ├── fonts │ │ ├── FreebooterUpdated.eot │ │ ├── FreebooterUpdated.svg │ │ ├── FreebooterUpdated.ttf │ │ └── FreebooterUpdated.woff │ ├── images │ │ ├── background_tile.png │ │ ├── center_bottom.png │ │ ├── cursor.png │ │ ├── cursor_highlight.png │ │ ├── game_bear.png │ │ ├── game_bunny_02.png │ │ ├── game_carrot.png │ │ ├── game_lemon.png │ │ ├── game_panda.png │ │ ├── game_piratePig.png │ │ └── logo.png │ ├── piratepig │ │ ├── GamepadWrapper.as │ │ ├── PiratePig.as │ │ ├── PiratePigGame.as │ │ └── Tile.as │ └── sounds │ │ ├── 3.mp3 │ │ ├── 3.ogg │ │ ├── 3.wav │ │ ├── 4.mp3 │ │ ├── 4.ogg │ │ ├── 4.wav │ │ ├── 5.mp3 │ │ ├── 5.ogg │ │ ├── 5.wav │ │ ├── theme.mp3 │ │ ├── theme.ogg │ │ └── theme.wav │ └── template.html ├── features ├── display │ ├── AddingAnimation │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ ├── Main.as │ │ │ └── assets │ │ │ │ └── openfl.png │ │ └── template.html │ ├── CustomRendering │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ ├── Main.as │ │ │ └── assets │ │ │ │ └── openfl.png │ │ └── template.html │ ├── DisplayingABitmap │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ ├── Main.as │ │ │ └── openfl.png │ │ └── template.html │ ├── DrawingShapes │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ └── Main.as │ │ └── template.html │ ├── SimpleTilemap │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ ├── Main.as │ │ │ └── assets │ │ │ │ └── tileset.png │ │ └── template.html │ ├── UsingBitmapData │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ ├── Main.as │ │ │ └── assets │ │ │ │ └── openfl.png │ │ └── template.html │ └── UsingSWFAssets │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── assets │ │ ├── layout.fla │ │ └── layout.swf │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── App.as │ │ ├── Main.as │ │ ├── favicon.png │ │ └── openfl.png │ │ └── template.html ├── display3D │ ├── HelloTriangle │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ └── Main.as │ │ └── template.html │ ├── Stage3DCamera │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ ├── Main.as │ │ │ ├── PerspectiveMatrix3D.as │ │ │ └── openfl.png │ │ └── template.html │ └── Stage3DMipmap │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── App.as │ │ ├── Main.as │ │ ├── PerspectiveMatrix3D.as │ │ └── checkers.png │ │ └── template.html ├── events │ ├── CreatingAMainLoop │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ └── Main.as │ │ └── template.html │ ├── CreatingCustomEvents │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ ├── Main.as │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── CustomEvent.as │ │ └── template.html │ ├── HandlingKeyboardEvents │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ ├── Main.as │ │ │ └── assets │ │ │ │ └── openfl.png │ │ └── template.html │ └── HandlingMouseEvents │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── App.as │ │ ├── Main.as │ │ └── assets │ │ │ └── openfl.png │ │ └── template.html ├── media │ ├── PlayingSound │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.as │ │ │ ├── Main.as │ │ │ └── assets │ │ │ │ ├── stars.mp3 │ │ │ │ └── stars.ogg │ │ └── template.html │ └── PlayingVideo │ │ ├── .gitignore │ │ ├── asconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── App.as │ │ ├── Main.as │ │ └── assets │ │ │ ├── example.mp4 │ │ │ ├── example.ogv │ │ │ └── example.webm │ │ └── template.html └── text │ └── AddingText │ ├── .gitignore │ ├── asconfig.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.as │ ├── Main.as │ └── assets │ │ ├── KatamotzIkasi.eot │ │ ├── KatamotzIkasi.svg │ │ ├── KatamotzIkasi.ttf │ │ └── KatamotzIkasi.woff │ └── template.html └── script.hx /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | *.map 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/README.md -------------------------------------------------------------------------------- /demos/BunnyMark/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /demos/BunnyMark/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/BunnyMark/asconfig.json -------------------------------------------------------------------------------- /demos/BunnyMark/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/BunnyMark/package-lock.json -------------------------------------------------------------------------------- /demos/BunnyMark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/BunnyMark/package.json -------------------------------------------------------------------------------- /demos/BunnyMark/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/BunnyMark/src/App.as -------------------------------------------------------------------------------- /demos/BunnyMark/src/Bunny.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/BunnyMark/src/Bunny.as -------------------------------------------------------------------------------- /demos/BunnyMark/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/BunnyMark/src/Main.as -------------------------------------------------------------------------------- /demos/BunnyMark/src/wabbit_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/BunnyMark/src/wabbit_alpha.png -------------------------------------------------------------------------------- /demos/BunnyMark/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/BunnyMark/template.html -------------------------------------------------------------------------------- /demos/HerokuShaders/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /demos/HerokuShaders/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/asconfig.json -------------------------------------------------------------------------------- /demos/HerokuShaders/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/package-lock.json -------------------------------------------------------------------------------- /demos/HerokuShaders/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/package.json -------------------------------------------------------------------------------- /demos/HerokuShaders/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/App.as -------------------------------------------------------------------------------- /demos/HerokuShaders/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/Main.as -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/4278.1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/4278.1.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/5359.8.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/5359.8.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/5398.8.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/5398.8.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/5454.21.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/5454.21.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/5492.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/5492.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/5733.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/5733.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/5805.18.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/5805.18.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/5812.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/5812.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/5891.5.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/5891.5.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6022.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6022.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6043.1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6043.1.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6049.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6049.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6147.1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6147.1.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6162.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6162.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6175.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6175.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6223.2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6223.2.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6238.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6238.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6284.1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6284.1.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6286.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6286.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/6288.1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/6288.1.frag -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/heroku.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/src/assets/heroku.vert -------------------------------------------------------------------------------- /demos/HerokuShaders/src/assets/readme.txt: -------------------------------------------------------------------------------- 1 | These shaders are taken from http://glsl.heroku.com -------------------------------------------------------------------------------- /demos/HerokuShaders/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/HerokuShaders/template.html -------------------------------------------------------------------------------- /demos/NyanCat/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /demos/NyanCat/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/NyanCat/asconfig.json -------------------------------------------------------------------------------- /demos/NyanCat/assets/library.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/NyanCat/assets/library.fla -------------------------------------------------------------------------------- /demos/NyanCat/assets/library.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/NyanCat/assets/library.swf -------------------------------------------------------------------------------- /demos/NyanCat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/NyanCat/package-lock.json -------------------------------------------------------------------------------- /demos/NyanCat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/NyanCat/package.json -------------------------------------------------------------------------------- /demos/NyanCat/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/NyanCat/src/App.as -------------------------------------------------------------------------------- /demos/NyanCat/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/NyanCat/src/Main.as -------------------------------------------------------------------------------- /demos/NyanCat/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/NyanCat/template.html -------------------------------------------------------------------------------- /demos/PiratePig/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /demos/PiratePig/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/asconfig.json -------------------------------------------------------------------------------- /demos/PiratePig/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/package-lock.json -------------------------------------------------------------------------------- /demos/PiratePig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/package.json -------------------------------------------------------------------------------- /demos/PiratePig/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/Main.as -------------------------------------------------------------------------------- /demos/PiratePig/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/favicon.png -------------------------------------------------------------------------------- /demos/PiratePig/src/fonts/FreebooterUpdated.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/fonts/FreebooterUpdated.eot -------------------------------------------------------------------------------- /demos/PiratePig/src/fonts/FreebooterUpdated.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/PiratePig/src/fonts/FreebooterUpdated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/fonts/FreebooterUpdated.ttf -------------------------------------------------------------------------------- /demos/PiratePig/src/fonts/FreebooterUpdated.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/fonts/FreebooterUpdated.woff -------------------------------------------------------------------------------- /demos/PiratePig/src/images/background_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/background_tile.png -------------------------------------------------------------------------------- /demos/PiratePig/src/images/center_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/center_bottom.png -------------------------------------------------------------------------------- /demos/PiratePig/src/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/cursor.png -------------------------------------------------------------------------------- /demos/PiratePig/src/images/cursor_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/cursor_highlight.png -------------------------------------------------------------------------------- /demos/PiratePig/src/images/game_bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/game_bear.png -------------------------------------------------------------------------------- /demos/PiratePig/src/images/game_bunny_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/game_bunny_02.png -------------------------------------------------------------------------------- /demos/PiratePig/src/images/game_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/game_carrot.png -------------------------------------------------------------------------------- /demos/PiratePig/src/images/game_lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/game_lemon.png -------------------------------------------------------------------------------- /demos/PiratePig/src/images/game_panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/game_panda.png -------------------------------------------------------------------------------- /demos/PiratePig/src/images/game_piratePig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/game_piratePig.png -------------------------------------------------------------------------------- /demos/PiratePig/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/images/logo.png -------------------------------------------------------------------------------- /demos/PiratePig/src/piratepig/GamepadWrapper.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/piratepig/GamepadWrapper.as -------------------------------------------------------------------------------- /demos/PiratePig/src/piratepig/PiratePig.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/piratepig/PiratePig.as -------------------------------------------------------------------------------- /demos/PiratePig/src/piratepig/PiratePigGame.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/piratepig/PiratePigGame.as -------------------------------------------------------------------------------- /demos/PiratePig/src/piratepig/Tile.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/piratepig/Tile.as -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/3.mp3 -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/3.ogg -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/3.wav -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/4.mp3 -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/4.ogg -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/4.wav -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/5.mp3 -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/5.ogg -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/5.wav -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/theme.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/theme.mp3 -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/theme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/theme.ogg -------------------------------------------------------------------------------- /demos/PiratePig/src/sounds/theme.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/src/sounds/theme.wav -------------------------------------------------------------------------------- /demos/PiratePig/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/demos/PiratePig/template.html -------------------------------------------------------------------------------- /features/display/AddingAnimation/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/display/AddingAnimation/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/AddingAnimation/asconfig.json -------------------------------------------------------------------------------- /features/display/AddingAnimation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/AddingAnimation/package-lock.json -------------------------------------------------------------------------------- /features/display/AddingAnimation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/AddingAnimation/package.json -------------------------------------------------------------------------------- /features/display/AddingAnimation/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/AddingAnimation/src/App.as -------------------------------------------------------------------------------- /features/display/AddingAnimation/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/AddingAnimation/src/Main.as -------------------------------------------------------------------------------- /features/display/AddingAnimation/src/assets/openfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/AddingAnimation/src/assets/openfl.png -------------------------------------------------------------------------------- /features/display/AddingAnimation/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/AddingAnimation/template.html -------------------------------------------------------------------------------- /features/display/CustomRendering/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/display/CustomRendering/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/CustomRendering/asconfig.json -------------------------------------------------------------------------------- /features/display/CustomRendering/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/CustomRendering/package-lock.json -------------------------------------------------------------------------------- /features/display/CustomRendering/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/CustomRendering/package.json -------------------------------------------------------------------------------- /features/display/CustomRendering/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/CustomRendering/src/App.as -------------------------------------------------------------------------------- /features/display/CustomRendering/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/CustomRendering/src/Main.as -------------------------------------------------------------------------------- /features/display/CustomRendering/src/assets/openfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/CustomRendering/src/assets/openfl.png -------------------------------------------------------------------------------- /features/display/CustomRendering/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/CustomRendering/template.html -------------------------------------------------------------------------------- /features/display/DisplayingABitmap/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/display/DisplayingABitmap/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DisplayingABitmap/asconfig.json -------------------------------------------------------------------------------- /features/display/DisplayingABitmap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DisplayingABitmap/package-lock.json -------------------------------------------------------------------------------- /features/display/DisplayingABitmap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DisplayingABitmap/package.json -------------------------------------------------------------------------------- /features/display/DisplayingABitmap/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DisplayingABitmap/src/App.as -------------------------------------------------------------------------------- /features/display/DisplayingABitmap/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DisplayingABitmap/src/Main.as -------------------------------------------------------------------------------- /features/display/DisplayingABitmap/src/openfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DisplayingABitmap/src/openfl.png -------------------------------------------------------------------------------- /features/display/DisplayingABitmap/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DisplayingABitmap/template.html -------------------------------------------------------------------------------- /features/display/DrawingShapes/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/display/DrawingShapes/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DrawingShapes/asconfig.json -------------------------------------------------------------------------------- /features/display/DrawingShapes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DrawingShapes/package-lock.json -------------------------------------------------------------------------------- /features/display/DrawingShapes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DrawingShapes/package.json -------------------------------------------------------------------------------- /features/display/DrawingShapes/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DrawingShapes/src/App.as -------------------------------------------------------------------------------- /features/display/DrawingShapes/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DrawingShapes/src/Main.as -------------------------------------------------------------------------------- /features/display/DrawingShapes/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/DrawingShapes/template.html -------------------------------------------------------------------------------- /features/display/SimpleTilemap/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/display/SimpleTilemap/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/SimpleTilemap/asconfig.json -------------------------------------------------------------------------------- /features/display/SimpleTilemap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/SimpleTilemap/package-lock.json -------------------------------------------------------------------------------- /features/display/SimpleTilemap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/SimpleTilemap/package.json -------------------------------------------------------------------------------- /features/display/SimpleTilemap/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/SimpleTilemap/src/App.as -------------------------------------------------------------------------------- /features/display/SimpleTilemap/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/SimpleTilemap/src/Main.as -------------------------------------------------------------------------------- /features/display/SimpleTilemap/src/assets/tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/SimpleTilemap/src/assets/tileset.png -------------------------------------------------------------------------------- /features/display/SimpleTilemap/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/SimpleTilemap/template.html -------------------------------------------------------------------------------- /features/display/UsingBitmapData/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/display/UsingBitmapData/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingBitmapData/asconfig.json -------------------------------------------------------------------------------- /features/display/UsingBitmapData/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingBitmapData/package-lock.json -------------------------------------------------------------------------------- /features/display/UsingBitmapData/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingBitmapData/package.json -------------------------------------------------------------------------------- /features/display/UsingBitmapData/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingBitmapData/src/App.as -------------------------------------------------------------------------------- /features/display/UsingBitmapData/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingBitmapData/src/Main.as -------------------------------------------------------------------------------- /features/display/UsingBitmapData/src/assets/openfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingBitmapData/src/assets/openfl.png -------------------------------------------------------------------------------- /features/display/UsingBitmapData/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingBitmapData/template.html -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingSWFAssets/asconfig.json -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/assets/layout.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingSWFAssets/assets/layout.fla -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/assets/layout.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingSWFAssets/assets/layout.swf -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingSWFAssets/package-lock.json -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingSWFAssets/package.json -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingSWFAssets/src/App.as -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingSWFAssets/src/Main.as -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingSWFAssets/src/favicon.png -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/src/openfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingSWFAssets/src/openfl.png -------------------------------------------------------------------------------- /features/display/UsingSWFAssets/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display/UsingSWFAssets/template.html -------------------------------------------------------------------------------- /features/display3D/HelloTriangle/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/display3D/HelloTriangle/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/HelloTriangle/asconfig.json -------------------------------------------------------------------------------- /features/display3D/HelloTriangle/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/HelloTriangle/package-lock.json -------------------------------------------------------------------------------- /features/display3D/HelloTriangle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/HelloTriangle/package.json -------------------------------------------------------------------------------- /features/display3D/HelloTriangle/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/HelloTriangle/src/App.as -------------------------------------------------------------------------------- /features/display3D/HelloTriangle/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/HelloTriangle/src/Main.as -------------------------------------------------------------------------------- /features/display3D/HelloTriangle/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/HelloTriangle/template.html -------------------------------------------------------------------------------- /features/display3D/Stage3DCamera/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/display3D/Stage3DCamera/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DCamera/asconfig.json -------------------------------------------------------------------------------- /features/display3D/Stage3DCamera/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DCamera/package-lock.json -------------------------------------------------------------------------------- /features/display3D/Stage3DCamera/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DCamera/package.json -------------------------------------------------------------------------------- /features/display3D/Stage3DCamera/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DCamera/src/App.as -------------------------------------------------------------------------------- /features/display3D/Stage3DCamera/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DCamera/src/Main.as -------------------------------------------------------------------------------- /features/display3D/Stage3DCamera/src/PerspectiveMatrix3D.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DCamera/src/PerspectiveMatrix3D.as -------------------------------------------------------------------------------- /features/display3D/Stage3DCamera/src/openfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DCamera/src/openfl.png -------------------------------------------------------------------------------- /features/display3D/Stage3DCamera/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DCamera/template.html -------------------------------------------------------------------------------- /features/display3D/Stage3DMipmap/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/display3D/Stage3DMipmap/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DMipmap/asconfig.json -------------------------------------------------------------------------------- /features/display3D/Stage3DMipmap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DMipmap/package-lock.json -------------------------------------------------------------------------------- /features/display3D/Stage3DMipmap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DMipmap/package.json -------------------------------------------------------------------------------- /features/display3D/Stage3DMipmap/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DMipmap/src/App.as -------------------------------------------------------------------------------- /features/display3D/Stage3DMipmap/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DMipmap/src/Main.as -------------------------------------------------------------------------------- /features/display3D/Stage3DMipmap/src/PerspectiveMatrix3D.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DMipmap/src/PerspectiveMatrix3D.as -------------------------------------------------------------------------------- /features/display3D/Stage3DMipmap/src/checkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DMipmap/src/checkers.png -------------------------------------------------------------------------------- /features/display3D/Stage3DMipmap/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/display3D/Stage3DMipmap/template.html -------------------------------------------------------------------------------- /features/events/CreatingAMainLoop/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/events/CreatingAMainLoop/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingAMainLoop/asconfig.json -------------------------------------------------------------------------------- /features/events/CreatingAMainLoop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingAMainLoop/package-lock.json -------------------------------------------------------------------------------- /features/events/CreatingAMainLoop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingAMainLoop/package.json -------------------------------------------------------------------------------- /features/events/CreatingAMainLoop/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingAMainLoop/src/App.as -------------------------------------------------------------------------------- /features/events/CreatingAMainLoop/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingAMainLoop/src/Main.as -------------------------------------------------------------------------------- /features/events/CreatingAMainLoop/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingAMainLoop/template.html -------------------------------------------------------------------------------- /features/events/CreatingCustomEvents/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/events/CreatingCustomEvents/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingCustomEvents/asconfig.json -------------------------------------------------------------------------------- /features/events/CreatingCustomEvents/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingCustomEvents/package-lock.json -------------------------------------------------------------------------------- /features/events/CreatingCustomEvents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingCustomEvents/package.json -------------------------------------------------------------------------------- /features/events/CreatingCustomEvents/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingCustomEvents/src/App.as -------------------------------------------------------------------------------- /features/events/CreatingCustomEvents/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingCustomEvents/src/Main.as -------------------------------------------------------------------------------- /features/events/CreatingCustomEvents/src/com/example/CustomEvent.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingCustomEvents/src/com/example/CustomEvent.as -------------------------------------------------------------------------------- /features/events/CreatingCustomEvents/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/CreatingCustomEvents/template.html -------------------------------------------------------------------------------- /features/events/HandlingKeyboardEvents/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/events/HandlingKeyboardEvents/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingKeyboardEvents/asconfig.json -------------------------------------------------------------------------------- /features/events/HandlingKeyboardEvents/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingKeyboardEvents/package-lock.json -------------------------------------------------------------------------------- /features/events/HandlingKeyboardEvents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingKeyboardEvents/package.json -------------------------------------------------------------------------------- /features/events/HandlingKeyboardEvents/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingKeyboardEvents/src/App.as -------------------------------------------------------------------------------- /features/events/HandlingKeyboardEvents/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingKeyboardEvents/src/Main.as -------------------------------------------------------------------------------- /features/events/HandlingKeyboardEvents/src/assets/openfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingKeyboardEvents/src/assets/openfl.png -------------------------------------------------------------------------------- /features/events/HandlingKeyboardEvents/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingKeyboardEvents/template.html -------------------------------------------------------------------------------- /features/events/HandlingMouseEvents/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/events/HandlingMouseEvents/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingMouseEvents/asconfig.json -------------------------------------------------------------------------------- /features/events/HandlingMouseEvents/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingMouseEvents/package-lock.json -------------------------------------------------------------------------------- /features/events/HandlingMouseEvents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingMouseEvents/package.json -------------------------------------------------------------------------------- /features/events/HandlingMouseEvents/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingMouseEvents/src/App.as -------------------------------------------------------------------------------- /features/events/HandlingMouseEvents/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingMouseEvents/src/Main.as -------------------------------------------------------------------------------- /features/events/HandlingMouseEvents/src/assets/openfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingMouseEvents/src/assets/openfl.png -------------------------------------------------------------------------------- /features/events/HandlingMouseEvents/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/events/HandlingMouseEvents/template.html -------------------------------------------------------------------------------- /features/media/PlayingSound/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/media/PlayingSound/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingSound/asconfig.json -------------------------------------------------------------------------------- /features/media/PlayingSound/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingSound/package-lock.json -------------------------------------------------------------------------------- /features/media/PlayingSound/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingSound/package.json -------------------------------------------------------------------------------- /features/media/PlayingSound/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingSound/src/App.as -------------------------------------------------------------------------------- /features/media/PlayingSound/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingSound/src/Main.as -------------------------------------------------------------------------------- /features/media/PlayingSound/src/assets/stars.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingSound/src/assets/stars.mp3 -------------------------------------------------------------------------------- /features/media/PlayingSound/src/assets/stars.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingSound/src/assets/stars.ogg -------------------------------------------------------------------------------- /features/media/PlayingSound/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingSound/template.html -------------------------------------------------------------------------------- /features/media/PlayingVideo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/media/PlayingVideo/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingVideo/asconfig.json -------------------------------------------------------------------------------- /features/media/PlayingVideo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingVideo/package-lock.json -------------------------------------------------------------------------------- /features/media/PlayingVideo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingVideo/package.json -------------------------------------------------------------------------------- /features/media/PlayingVideo/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingVideo/src/App.as -------------------------------------------------------------------------------- /features/media/PlayingVideo/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingVideo/src/Main.as -------------------------------------------------------------------------------- /features/media/PlayingVideo/src/assets/example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingVideo/src/assets/example.mp4 -------------------------------------------------------------------------------- /features/media/PlayingVideo/src/assets/example.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingVideo/src/assets/example.ogv -------------------------------------------------------------------------------- /features/media/PlayingVideo/src/assets/example.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingVideo/src/assets/example.webm -------------------------------------------------------------------------------- /features/media/PlayingVideo/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/media/PlayingVideo/template.html -------------------------------------------------------------------------------- /features/text/AddingText/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bin/ 3 | *.map 4 | -------------------------------------------------------------------------------- /features/text/AddingText/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/text/AddingText/asconfig.json -------------------------------------------------------------------------------- /features/text/AddingText/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/text/AddingText/package-lock.json -------------------------------------------------------------------------------- /features/text/AddingText/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/text/AddingText/package.json -------------------------------------------------------------------------------- /features/text/AddingText/src/App.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/text/AddingText/src/App.as -------------------------------------------------------------------------------- /features/text/AddingText/src/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/text/AddingText/src/Main.as -------------------------------------------------------------------------------- /features/text/AddingText/src/assets/KatamotzIkasi.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/text/AddingText/src/assets/KatamotzIkasi.eot -------------------------------------------------------------------------------- /features/text/AddingText/src/assets/KatamotzIkasi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/text/AddingText/src/assets/KatamotzIkasi.svg -------------------------------------------------------------------------------- /features/text/AddingText/src/assets/KatamotzIkasi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/text/AddingText/src/assets/KatamotzIkasi.ttf -------------------------------------------------------------------------------- /features/text/AddingText/src/assets/KatamotzIkasi.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/text/AddingText/src/assets/KatamotzIkasi.woff -------------------------------------------------------------------------------- /features/text/AddingText/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/features/text/AddingText/template.html -------------------------------------------------------------------------------- /script.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfl/openfl-samples-as3/HEAD/script.hx --------------------------------------------------------------------------------