├── .gitignore ├── .travis.yml ├── HaxeLive.hxproj ├── LICENSE ├── README.md ├── assets ├── font │ └── OpenSans-Regular.ttf └── img │ └── light.png ├── haxe └── FileSystemExtender.hx ├── haxelib.json ├── hxlive ├── DateCompare.hx ├── FileTimeInfo.hx ├── Live.hx ├── SceneGen.hx ├── openfl │ ├── Exporter.hx │ ├── Label.hx │ ├── Live.hx │ ├── Notification.hx │ └── SceneGen.hx ├── utils │ ├── Alignment.hx │ ├── Color.hx │ ├── Flow.hx │ ├── Location.hx │ ├── openfl │ │ ├── Alignment.hx │ │ ├── Flow.hx │ │ ├── Location.hx │ │ └── SpriteMap.hx │ └── widgets │ │ ├── Alignment.hx │ │ ├── Flow.hx │ │ └── Location.hx └── widgets │ ├── Live.hx │ └── SceneGen.hx ├── include.xml ├── openfl-readme.txt ├── setup ├── Build-Linux.sh ├── Build-Mac.sh ├── Build-Windows.bat ├── prereq.bat └── prereq.sh ├── templates └── openfl │ ├── Bitmap.txt │ ├── Class.txt │ ├── SimpleButton.txt │ └── TextField.txt └── tests ├── simple ├── Main.hx ├── assets │ ├── info │ │ ├── MyBase.json │ │ ├── config.json │ │ ├── test.json │ │ └── theme.json │ └── openfl.svg └── project.xml └── widgets ├── Main.hx ├── build.bat ├── build.hxml └── info ├── config.json └── test.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/.travis.yml -------------------------------------------------------------------------------- /HaxeLive.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/HaxeLive.hxproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/README.md -------------------------------------------------------------------------------- /assets/font/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/assets/font/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /assets/img/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/assets/img/light.png -------------------------------------------------------------------------------- /haxe/FileSystemExtender.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/haxe/FileSystemExtender.hx -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/haxelib.json -------------------------------------------------------------------------------- /hxlive/DateCompare.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/DateCompare.hx -------------------------------------------------------------------------------- /hxlive/FileTimeInfo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/FileTimeInfo.hx -------------------------------------------------------------------------------- /hxlive/Live.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/Live.hx -------------------------------------------------------------------------------- /hxlive/SceneGen.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/SceneGen.hx -------------------------------------------------------------------------------- /hxlive/openfl/Exporter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/openfl/Exporter.hx -------------------------------------------------------------------------------- /hxlive/openfl/Label.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/openfl/Label.hx -------------------------------------------------------------------------------- /hxlive/openfl/Live.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/openfl/Live.hx -------------------------------------------------------------------------------- /hxlive/openfl/Notification.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/openfl/Notification.hx -------------------------------------------------------------------------------- /hxlive/openfl/SceneGen.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/openfl/SceneGen.hx -------------------------------------------------------------------------------- /hxlive/utils/Alignment.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/Alignment.hx -------------------------------------------------------------------------------- /hxlive/utils/Color.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/Color.hx -------------------------------------------------------------------------------- /hxlive/utils/Flow.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/Flow.hx -------------------------------------------------------------------------------- /hxlive/utils/Location.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/Location.hx -------------------------------------------------------------------------------- /hxlive/utils/openfl/Alignment.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/openfl/Alignment.hx -------------------------------------------------------------------------------- /hxlive/utils/openfl/Flow.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/openfl/Flow.hx -------------------------------------------------------------------------------- /hxlive/utils/openfl/Location.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/openfl/Location.hx -------------------------------------------------------------------------------- /hxlive/utils/openfl/SpriteMap.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/openfl/SpriteMap.hx -------------------------------------------------------------------------------- /hxlive/utils/widgets/Alignment.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/widgets/Alignment.hx -------------------------------------------------------------------------------- /hxlive/utils/widgets/Flow.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/widgets/Flow.hx -------------------------------------------------------------------------------- /hxlive/utils/widgets/Location.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/utils/widgets/Location.hx -------------------------------------------------------------------------------- /hxlive/widgets/Live.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/widgets/Live.hx -------------------------------------------------------------------------------- /hxlive/widgets/SceneGen.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/hxlive/widgets/SceneGen.hx -------------------------------------------------------------------------------- /include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/include.xml -------------------------------------------------------------------------------- /openfl-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/openfl-readme.txt -------------------------------------------------------------------------------- /setup/Build-Linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/setup/Build-Linux.sh -------------------------------------------------------------------------------- /setup/Build-Mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/setup/Build-Mac.sh -------------------------------------------------------------------------------- /setup/Build-Windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/setup/Build-Windows.bat -------------------------------------------------------------------------------- /setup/prereq.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/setup/prereq.bat -------------------------------------------------------------------------------- /setup/prereq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/setup/prereq.sh -------------------------------------------------------------------------------- /templates/openfl/Bitmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/templates/openfl/Bitmap.txt -------------------------------------------------------------------------------- /templates/openfl/Class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/templates/openfl/Class.txt -------------------------------------------------------------------------------- /templates/openfl/SimpleButton.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/templates/openfl/SimpleButton.txt -------------------------------------------------------------------------------- /templates/openfl/TextField.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/templates/openfl/TextField.txt -------------------------------------------------------------------------------- /tests/simple/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/simple/Main.hx -------------------------------------------------------------------------------- /tests/simple/assets/info/MyBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/simple/assets/info/MyBase.json -------------------------------------------------------------------------------- /tests/simple/assets/info/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/simple/assets/info/config.json -------------------------------------------------------------------------------- /tests/simple/assets/info/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/simple/assets/info/test.json -------------------------------------------------------------------------------- /tests/simple/assets/info/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/simple/assets/info/theme.json -------------------------------------------------------------------------------- /tests/simple/assets/openfl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/simple/assets/openfl.svg -------------------------------------------------------------------------------- /tests/simple/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/simple/project.xml -------------------------------------------------------------------------------- /tests/widgets/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/widgets/Main.hx -------------------------------------------------------------------------------- /tests/widgets/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/widgets/build.bat -------------------------------------------------------------------------------- /tests/widgets/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/widgets/build.hxml -------------------------------------------------------------------------------- /tests/widgets/info/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "file": "info/test.json" 3 | } -------------------------------------------------------------------------------- /tests/widgets/info/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColourID/HaxeLive/HEAD/tests/widgets/info/test.json --------------------------------------------------------------------------------