├── .gitattributes ├── .gitignore ├── 01_heaps_color_tile ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx └── game.hxml ├── 02_heaps_mouse ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx └── game.hxml ├── 03_heaps_texture_tile ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml └── res │ ├── haxeLogo.png │ └── particlesJson.json ├── 04_heaps_anim ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml └── res │ └── haxeLogo.png ├── 05_heaps_tile_group ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml └── res │ └── haxeLogo.png ├── 06_heaps_graphics ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml └── res │ └── haxeLogo.png ├── 07_heaps_wait_event ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml └── res │ └── haxeLogo.png ├── 08_heaps_shader ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml └── res │ ├── haxeLogo.png │ └── particlesJson.json ├── 09_heaps_text ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml └── res │ ├── haxeLogo.png │ └── particlesJson.json ├── 10_heaps_load_model ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml └── res │ ├── .tmp │ ├── Model.hmd │ ├── hashes.json │ └── times.dat │ ├── Model.FBX │ ├── Skeleton01.png │ └── Sword01.png ├── 11_heaps_shader3d ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml └── res │ ├── .tmp │ ├── Model.hmd │ ├── hashes.json │ └── times.dat │ └── hxlogo.png ├── 12_heaps_bitmap_font ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game_hl.hxml ├── game_js.hxml ├── index.html └── res │ ├── font.fnt │ ├── font.png │ └── project.ltr ├── 13_heaps_camera_scroll ├── .vscode │ ├── launch.json │ └── tasks.json ├── Camera.hx ├── Game.hx ├── game.hxml ├── game_hl.hxml ├── game_js.hxml ├── index.html └── res │ ├── haxeLogo.png │ └── particlesJson.json ├── 14_heaps_texture_atlas ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml ├── game_hl.hxml ├── game_js.hxml ├── index.html └── res │ ├── haxeLogo.png │ ├── spineboy-pro.atlas │ └── spineboy-pro.png ├── 15_heaps_box2d ├── .vscode │ ├── launch.json │ └── tasks.json ├── Actor.hx ├── Constants.hx ├── Game.hx ├── game.hxml ├── game_hl.hxml ├── game_js.hxml ├── index.html └── res │ ├── ball.png │ └── crate.jpg ├── 16_heaps_console ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml ├── game_hl.hxml ├── game_js.hxml ├── index.html └── res │ └── haxeLogo.png ├── 17_heaps_3d_scene ├── .vscode │ ├── launch.json │ └── tasks.json ├── PlayerMovement.hx ├── index.html ├── interactive.js ├── interactive.js.map ├── interactive_hl.hxml ├── interactive_js.hxml ├── interactive_swf.hxml └── res │ ├── .tmp │ ├── Model.hmd │ ├── hashes.json │ └── times.dat │ ├── Model.FBX │ ├── Skeleton01.png │ ├── Sword01.png │ └── hxlogo.png ├── 18_heaps_scaleGrid ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml ├── game_hl.hxml ├── game_js.hxml ├── index.html └── res │ └── space.png ├── 19_heaps_layers ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml ├── game_hl.hxml ├── game_js.hxml ├── index.html └── res │ ├── sewer_tileset.png │ └── sewers.tmx ├── 20_heaps_flow ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml ├── game_hl.hxml ├── game_js.hxml ├── index.html └── res │ └── space.png ├── 21_heaps_sound_effects ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml ├── game.js ├── game.js.map ├── game_hl.hxml ├── game_js.hxml ├── index.html └── res │ └── sound_fx.wav ├── 22_heaps_flambe_behaviors ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── flambe │ ├── animation │ │ ├── AnimatedFloat.hx │ │ ├── Behavior.hx │ │ ├── Binding.hx │ │ ├── Ease.hx │ │ ├── Jitter.hx │ │ └── Tween.hx │ ├── math │ │ └── FMath.hx │ ├── script │ │ ├── Action.hx │ │ ├── AnimateBy.hx │ │ ├── AnimateFrom.hx │ │ ├── AnimateTo.hx │ │ ├── CallFunction.hx │ │ ├── Delay.hx │ │ ├── FirstOf.hx │ │ ├── Parallel.hx │ │ ├── Repeat.hx │ │ ├── Script.hx │ │ └── Sequence.hx │ └── util │ │ ├── Disposable.hx │ │ └── Value.hx ├── game.hxml └── res │ ├── haxeLogo.png │ └── particlesJson.json ├── 23_heaps_read_write_file ├── .vscode │ ├── launch.json │ └── tasks.json ├── Game.hx ├── game.hxml └── res │ ├── haxeLogo.png │ └── particlesJson.json └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /01_heaps_color_tile/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/01_heaps_color_tile/.vscode/launch.json -------------------------------------------------------------------------------- /01_heaps_color_tile/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/01_heaps_color_tile/.vscode/tasks.json -------------------------------------------------------------------------------- /01_heaps_color_tile/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/01_heaps_color_tile/Game.hx -------------------------------------------------------------------------------- /01_heaps_color_tile/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/01_heaps_color_tile/game.hxml -------------------------------------------------------------------------------- /02_heaps_mouse/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/02_heaps_mouse/.vscode/launch.json -------------------------------------------------------------------------------- /02_heaps_mouse/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/02_heaps_mouse/.vscode/tasks.json -------------------------------------------------------------------------------- /02_heaps_mouse/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/02_heaps_mouse/Game.hx -------------------------------------------------------------------------------- /02_heaps_mouse/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/02_heaps_mouse/game.hxml -------------------------------------------------------------------------------- /03_heaps_texture_tile/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/03_heaps_texture_tile/.vscode/launch.json -------------------------------------------------------------------------------- /03_heaps_texture_tile/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/03_heaps_texture_tile/.vscode/tasks.json -------------------------------------------------------------------------------- /03_heaps_texture_tile/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/03_heaps_texture_tile/Game.hx -------------------------------------------------------------------------------- /03_heaps_texture_tile/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/03_heaps_texture_tile/game.hxml -------------------------------------------------------------------------------- /03_heaps_texture_tile/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/03_heaps_texture_tile/res/haxeLogo.png -------------------------------------------------------------------------------- /03_heaps_texture_tile/res/particlesJson.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04_heaps_anim/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/04_heaps_anim/.vscode/launch.json -------------------------------------------------------------------------------- /04_heaps_anim/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/04_heaps_anim/.vscode/tasks.json -------------------------------------------------------------------------------- /04_heaps_anim/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/04_heaps_anim/Game.hx -------------------------------------------------------------------------------- /04_heaps_anim/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/04_heaps_anim/game.hxml -------------------------------------------------------------------------------- /04_heaps_anim/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/04_heaps_anim/res/haxeLogo.png -------------------------------------------------------------------------------- /05_heaps_tile_group/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/05_heaps_tile_group/.vscode/launch.json -------------------------------------------------------------------------------- /05_heaps_tile_group/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/05_heaps_tile_group/.vscode/tasks.json -------------------------------------------------------------------------------- /05_heaps_tile_group/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/05_heaps_tile_group/Game.hx -------------------------------------------------------------------------------- /05_heaps_tile_group/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/05_heaps_tile_group/game.hxml -------------------------------------------------------------------------------- /05_heaps_tile_group/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/05_heaps_tile_group/res/haxeLogo.png -------------------------------------------------------------------------------- /06_heaps_graphics/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/06_heaps_graphics/.vscode/launch.json -------------------------------------------------------------------------------- /06_heaps_graphics/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/06_heaps_graphics/.vscode/tasks.json -------------------------------------------------------------------------------- /06_heaps_graphics/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/06_heaps_graphics/Game.hx -------------------------------------------------------------------------------- /06_heaps_graphics/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/06_heaps_graphics/game.hxml -------------------------------------------------------------------------------- /06_heaps_graphics/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/06_heaps_graphics/res/haxeLogo.png -------------------------------------------------------------------------------- /07_heaps_wait_event/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/07_heaps_wait_event/.vscode/launch.json -------------------------------------------------------------------------------- /07_heaps_wait_event/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/07_heaps_wait_event/.vscode/tasks.json -------------------------------------------------------------------------------- /07_heaps_wait_event/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/07_heaps_wait_event/Game.hx -------------------------------------------------------------------------------- /07_heaps_wait_event/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/07_heaps_wait_event/game.hxml -------------------------------------------------------------------------------- /07_heaps_wait_event/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/07_heaps_wait_event/res/haxeLogo.png -------------------------------------------------------------------------------- /08_heaps_shader/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/08_heaps_shader/.vscode/launch.json -------------------------------------------------------------------------------- /08_heaps_shader/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/08_heaps_shader/.vscode/tasks.json -------------------------------------------------------------------------------- /08_heaps_shader/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/08_heaps_shader/Game.hx -------------------------------------------------------------------------------- /08_heaps_shader/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/08_heaps_shader/game.hxml -------------------------------------------------------------------------------- /08_heaps_shader/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/08_heaps_shader/res/haxeLogo.png -------------------------------------------------------------------------------- /08_heaps_shader/res/particlesJson.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /09_heaps_text/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/09_heaps_text/.vscode/launch.json -------------------------------------------------------------------------------- /09_heaps_text/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/09_heaps_text/.vscode/tasks.json -------------------------------------------------------------------------------- /09_heaps_text/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/09_heaps_text/Game.hx -------------------------------------------------------------------------------- /09_heaps_text/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/09_heaps_text/game.hxml -------------------------------------------------------------------------------- /09_heaps_text/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/09_heaps_text/res/haxeLogo.png -------------------------------------------------------------------------------- /09_heaps_text/res/particlesJson.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /10_heaps_load_model/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/10_heaps_load_model/.vscode/launch.json -------------------------------------------------------------------------------- /10_heaps_load_model/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/10_heaps_load_model/.vscode/tasks.json -------------------------------------------------------------------------------- /10_heaps_load_model/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/10_heaps_load_model/Game.hx -------------------------------------------------------------------------------- /10_heaps_load_model/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/10_heaps_load_model/game.hxml -------------------------------------------------------------------------------- /10_heaps_load_model/res/.tmp/Model.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/10_heaps_load_model/res/.tmp/Model.hmd -------------------------------------------------------------------------------- /10_heaps_load_model/res/.tmp/hashes.json: -------------------------------------------------------------------------------- 1 | { 2 | "Model.FBX": "b709d3e52d1ef2f375e76a42d85b6927dd71f053" 3 | } -------------------------------------------------------------------------------- /10_heaps_load_model/res/.tmp/times.dat: -------------------------------------------------------------------------------- 1 | by9:Model.FBXi1534003375h -------------------------------------------------------------------------------- /10_heaps_load_model/res/Model.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/10_heaps_load_model/res/Model.FBX -------------------------------------------------------------------------------- /10_heaps_load_model/res/Skeleton01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/10_heaps_load_model/res/Skeleton01.png -------------------------------------------------------------------------------- /10_heaps_load_model/res/Sword01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/10_heaps_load_model/res/Sword01.png -------------------------------------------------------------------------------- /11_heaps_shader3d/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/11_heaps_shader3d/.vscode/launch.json -------------------------------------------------------------------------------- /11_heaps_shader3d/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/11_heaps_shader3d/.vscode/tasks.json -------------------------------------------------------------------------------- /11_heaps_shader3d/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/11_heaps_shader3d/Game.hx -------------------------------------------------------------------------------- /11_heaps_shader3d/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/11_heaps_shader3d/game.hxml -------------------------------------------------------------------------------- /11_heaps_shader3d/res/.tmp/Model.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/11_heaps_shader3d/res/.tmp/Model.hmd -------------------------------------------------------------------------------- /11_heaps_shader3d/res/.tmp/hashes.json: -------------------------------------------------------------------------------- 1 | { 2 | "Model.FBX": "b709d3e52d1ef2f375e76a42d85b6927dd71f053" 3 | } -------------------------------------------------------------------------------- /11_heaps_shader3d/res/.tmp/times.dat: -------------------------------------------------------------------------------- 1 | by9:Model.FBXi1534003375h -------------------------------------------------------------------------------- /11_heaps_shader3d/res/hxlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/11_heaps_shader3d/res/hxlogo.png -------------------------------------------------------------------------------- /12_heaps_bitmap_font/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/12_heaps_bitmap_font/.vscode/launch.json -------------------------------------------------------------------------------- /12_heaps_bitmap_font/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/12_heaps_bitmap_font/.vscode/tasks.json -------------------------------------------------------------------------------- /12_heaps_bitmap_font/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/12_heaps_bitmap_font/Game.hx -------------------------------------------------------------------------------- /12_heaps_bitmap_font/game_hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/12_heaps_bitmap_font/game_hl.hxml -------------------------------------------------------------------------------- /12_heaps_bitmap_font/game_js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/12_heaps_bitmap_font/game_js.hxml -------------------------------------------------------------------------------- /12_heaps_bitmap_font/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/12_heaps_bitmap_font/index.html -------------------------------------------------------------------------------- /12_heaps_bitmap_font/res/font.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/12_heaps_bitmap_font/res/font.fnt -------------------------------------------------------------------------------- /12_heaps_bitmap_font/res/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/12_heaps_bitmap_font/res/font.png -------------------------------------------------------------------------------- /12_heaps_bitmap_font/res/project.ltr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/12_heaps_bitmap_font/res/project.ltr -------------------------------------------------------------------------------- /13_heaps_camera_scroll/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/13_heaps_camera_scroll/.vscode/launch.json -------------------------------------------------------------------------------- /13_heaps_camera_scroll/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/13_heaps_camera_scroll/.vscode/tasks.json -------------------------------------------------------------------------------- /13_heaps_camera_scroll/Camera.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/13_heaps_camera_scroll/Camera.hx -------------------------------------------------------------------------------- /13_heaps_camera_scroll/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/13_heaps_camera_scroll/Game.hx -------------------------------------------------------------------------------- /13_heaps_camera_scroll/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/13_heaps_camera_scroll/game.hxml -------------------------------------------------------------------------------- /13_heaps_camera_scroll/game_hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/13_heaps_camera_scroll/game_hl.hxml -------------------------------------------------------------------------------- /13_heaps_camera_scroll/game_js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/13_heaps_camera_scroll/game_js.hxml -------------------------------------------------------------------------------- /13_heaps_camera_scroll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/13_heaps_camera_scroll/index.html -------------------------------------------------------------------------------- /13_heaps_camera_scroll/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/13_heaps_camera_scroll/res/haxeLogo.png -------------------------------------------------------------------------------- /13_heaps_camera_scroll/res/particlesJson.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /14_heaps_texture_atlas/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/14_heaps_texture_atlas/.vscode/launch.json -------------------------------------------------------------------------------- /14_heaps_texture_atlas/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/14_heaps_texture_atlas/.vscode/tasks.json -------------------------------------------------------------------------------- /14_heaps_texture_atlas/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/14_heaps_texture_atlas/Game.hx -------------------------------------------------------------------------------- /14_heaps_texture_atlas/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/14_heaps_texture_atlas/game.hxml -------------------------------------------------------------------------------- /14_heaps_texture_atlas/game_hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/14_heaps_texture_atlas/game_hl.hxml -------------------------------------------------------------------------------- /14_heaps_texture_atlas/game_js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/14_heaps_texture_atlas/game_js.hxml -------------------------------------------------------------------------------- /14_heaps_texture_atlas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/14_heaps_texture_atlas/index.html -------------------------------------------------------------------------------- /14_heaps_texture_atlas/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/14_heaps_texture_atlas/res/haxeLogo.png -------------------------------------------------------------------------------- /14_heaps_texture_atlas/res/spineboy-pro.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/14_heaps_texture_atlas/res/spineboy-pro.atlas -------------------------------------------------------------------------------- /14_heaps_texture_atlas/res/spineboy-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/14_heaps_texture_atlas/res/spineboy-pro.png -------------------------------------------------------------------------------- /15_heaps_box2d/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/.vscode/launch.json -------------------------------------------------------------------------------- /15_heaps_box2d/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/.vscode/tasks.json -------------------------------------------------------------------------------- /15_heaps_box2d/Actor.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/Actor.hx -------------------------------------------------------------------------------- /15_heaps_box2d/Constants.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/Constants.hx -------------------------------------------------------------------------------- /15_heaps_box2d/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/Game.hx -------------------------------------------------------------------------------- /15_heaps_box2d/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/game.hxml -------------------------------------------------------------------------------- /15_heaps_box2d/game_hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/game_hl.hxml -------------------------------------------------------------------------------- /15_heaps_box2d/game_js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/game_js.hxml -------------------------------------------------------------------------------- /15_heaps_box2d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/index.html -------------------------------------------------------------------------------- /15_heaps_box2d/res/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/res/ball.png -------------------------------------------------------------------------------- /15_heaps_box2d/res/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/15_heaps_box2d/res/crate.jpg -------------------------------------------------------------------------------- /16_heaps_console/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/16_heaps_console/.vscode/launch.json -------------------------------------------------------------------------------- /16_heaps_console/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/16_heaps_console/.vscode/tasks.json -------------------------------------------------------------------------------- /16_heaps_console/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/16_heaps_console/Game.hx -------------------------------------------------------------------------------- /16_heaps_console/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/16_heaps_console/game.hxml -------------------------------------------------------------------------------- /16_heaps_console/game_hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/16_heaps_console/game_hl.hxml -------------------------------------------------------------------------------- /16_heaps_console/game_js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/16_heaps_console/game_js.hxml -------------------------------------------------------------------------------- /16_heaps_console/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/16_heaps_console/index.html -------------------------------------------------------------------------------- /16_heaps_console/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/16_heaps_console/res/haxeLogo.png -------------------------------------------------------------------------------- /17_heaps_3d_scene/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/.vscode/launch.json -------------------------------------------------------------------------------- /17_heaps_3d_scene/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/.vscode/tasks.json -------------------------------------------------------------------------------- /17_heaps_3d_scene/PlayerMovement.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/PlayerMovement.hx -------------------------------------------------------------------------------- /17_heaps_3d_scene/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/index.html -------------------------------------------------------------------------------- /17_heaps_3d_scene/interactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/interactive.js -------------------------------------------------------------------------------- /17_heaps_3d_scene/interactive.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/interactive.js.map -------------------------------------------------------------------------------- /17_heaps_3d_scene/interactive_hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/interactive_hl.hxml -------------------------------------------------------------------------------- /17_heaps_3d_scene/interactive_js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/interactive_js.hxml -------------------------------------------------------------------------------- /17_heaps_3d_scene/interactive_swf.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/interactive_swf.hxml -------------------------------------------------------------------------------- /17_heaps_3d_scene/res/.tmp/Model.hmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/res/.tmp/Model.hmd -------------------------------------------------------------------------------- /17_heaps_3d_scene/res/.tmp/hashes.json: -------------------------------------------------------------------------------- 1 | { 2 | "Model.FBX": "b709d3e52d1ef2f375e76a42d85b6927dd71f053" 3 | } -------------------------------------------------------------------------------- /17_heaps_3d_scene/res/.tmp/times.dat: -------------------------------------------------------------------------------- 1 | by9:Model.FBXi1538393086h -------------------------------------------------------------------------------- /17_heaps_3d_scene/res/Model.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/res/Model.FBX -------------------------------------------------------------------------------- /17_heaps_3d_scene/res/Skeleton01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/res/Skeleton01.png -------------------------------------------------------------------------------- /17_heaps_3d_scene/res/Sword01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/res/Sword01.png -------------------------------------------------------------------------------- /17_heaps_3d_scene/res/hxlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/17_heaps_3d_scene/res/hxlogo.png -------------------------------------------------------------------------------- /18_heaps_scaleGrid/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/18_heaps_scaleGrid/.vscode/launch.json -------------------------------------------------------------------------------- /18_heaps_scaleGrid/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/18_heaps_scaleGrid/.vscode/tasks.json -------------------------------------------------------------------------------- /18_heaps_scaleGrid/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/18_heaps_scaleGrid/Game.hx -------------------------------------------------------------------------------- /18_heaps_scaleGrid/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/18_heaps_scaleGrid/game.hxml -------------------------------------------------------------------------------- /18_heaps_scaleGrid/game_hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/18_heaps_scaleGrid/game_hl.hxml -------------------------------------------------------------------------------- /18_heaps_scaleGrid/game_js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/18_heaps_scaleGrid/game_js.hxml -------------------------------------------------------------------------------- /18_heaps_scaleGrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/18_heaps_scaleGrid/index.html -------------------------------------------------------------------------------- /18_heaps_scaleGrid/res/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/18_heaps_scaleGrid/res/space.png -------------------------------------------------------------------------------- /19_heaps_layers/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/19_heaps_layers/.vscode/launch.json -------------------------------------------------------------------------------- /19_heaps_layers/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/19_heaps_layers/.vscode/tasks.json -------------------------------------------------------------------------------- /19_heaps_layers/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/19_heaps_layers/Game.hx -------------------------------------------------------------------------------- /19_heaps_layers/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/19_heaps_layers/game.hxml -------------------------------------------------------------------------------- /19_heaps_layers/game_hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/19_heaps_layers/game_hl.hxml -------------------------------------------------------------------------------- /19_heaps_layers/game_js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/19_heaps_layers/game_js.hxml -------------------------------------------------------------------------------- /19_heaps_layers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/19_heaps_layers/index.html -------------------------------------------------------------------------------- /19_heaps_layers/res/sewer_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/19_heaps_layers/res/sewer_tileset.png -------------------------------------------------------------------------------- /19_heaps_layers/res/sewers.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/19_heaps_layers/res/sewers.tmx -------------------------------------------------------------------------------- /20_heaps_flow/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/20_heaps_flow/.vscode/launch.json -------------------------------------------------------------------------------- /20_heaps_flow/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/20_heaps_flow/.vscode/tasks.json -------------------------------------------------------------------------------- /20_heaps_flow/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/20_heaps_flow/Game.hx -------------------------------------------------------------------------------- /20_heaps_flow/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/20_heaps_flow/game.hxml -------------------------------------------------------------------------------- /20_heaps_flow/game_hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/20_heaps_flow/game_hl.hxml -------------------------------------------------------------------------------- /20_heaps_flow/game_js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/20_heaps_flow/game_js.hxml -------------------------------------------------------------------------------- /20_heaps_flow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/20_heaps_flow/index.html -------------------------------------------------------------------------------- /20_heaps_flow/res/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/20_heaps_flow/res/space.png -------------------------------------------------------------------------------- /21_heaps_sound_effects/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/21_heaps_sound_effects/.vscode/launch.json -------------------------------------------------------------------------------- /21_heaps_sound_effects/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/21_heaps_sound_effects/.vscode/tasks.json -------------------------------------------------------------------------------- /21_heaps_sound_effects/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/21_heaps_sound_effects/Game.hx -------------------------------------------------------------------------------- /21_heaps_sound_effects/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/21_heaps_sound_effects/game.hxml -------------------------------------------------------------------------------- /21_heaps_sound_effects/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/21_heaps_sound_effects/game.js -------------------------------------------------------------------------------- /21_heaps_sound_effects/game.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/21_heaps_sound_effects/game.js.map -------------------------------------------------------------------------------- /21_heaps_sound_effects/game_hl.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/21_heaps_sound_effects/game_hl.hxml -------------------------------------------------------------------------------- /21_heaps_sound_effects/game_js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/21_heaps_sound_effects/game_js.hxml -------------------------------------------------------------------------------- /21_heaps_sound_effects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/21_heaps_sound_effects/index.html -------------------------------------------------------------------------------- /21_heaps_sound_effects/res/sound_fx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/21_heaps_sound_effects/res/sound_fx.wav -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/.vscode/launch.json -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/.vscode/tasks.json -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/Game.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/animation/AnimatedFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/animation/AnimatedFloat.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/animation/Behavior.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/animation/Behavior.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/animation/Binding.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/animation/Binding.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/animation/Ease.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/animation/Ease.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/animation/Jitter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/animation/Jitter.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/animation/Tween.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/animation/Tween.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/math/FMath.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/math/FMath.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/Action.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/Action.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/AnimateBy.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/AnimateBy.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/AnimateFrom.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/AnimateFrom.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/AnimateTo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/AnimateTo.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/CallFunction.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/CallFunction.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/Delay.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/Delay.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/FirstOf.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/FirstOf.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/Parallel.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/Parallel.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/Repeat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/Repeat.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/Script.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/Script.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/script/Sequence.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/script/Sequence.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/util/Disposable.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/util/Disposable.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/flambe/util/Value.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/flambe/util/Value.hx -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/game.hxml -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/22_heaps_flambe_behaviors/res/haxeLogo.png -------------------------------------------------------------------------------- /22_heaps_flambe_behaviors/res/particlesJson.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /23_heaps_read_write_file/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/23_heaps_read_write_file/.vscode/launch.json -------------------------------------------------------------------------------- /23_heaps_read_write_file/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/23_heaps_read_write_file/.vscode/tasks.json -------------------------------------------------------------------------------- /23_heaps_read_write_file/Game.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/23_heaps_read_write_file/Game.hx -------------------------------------------------------------------------------- /23_heaps_read_write_file/game.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/23_heaps_read_write_file/game.hxml -------------------------------------------------------------------------------- /23_heaps_read_write_file/res/haxeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/23_heaps_read_write_file/res/haxeLogo.png -------------------------------------------------------------------------------- /23_heaps_read_write_file/res/particlesJson.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beeblerox/Simplest-Heaps-Examples/HEAD/README.md --------------------------------------------------------------------------------