haxeui-flixel
is the Flixel
backend for HaxeUI
.
haxeui-flixel
relies on haxeui-core
as well as Flixel
. To install:
haxelib install flixel
haxelib install haxeui-core
haxelib install haxeui-flixel
After installing Lime
, OpenFL
, Flixel
, haxeui-core
, and haxeui-flixel
, the latter three should be included in project.xml
. In the future, including haxeui-flixel
will also handle the dependencies automatically.
<haxelib name="flixel" />
<haxelib name="haxeui-core" />
<haxelib name="haxeui-flixel" />
Before you start using HaxeUI
in your project, you must first initialize the Toolkit
.
Toolkit.init();
Once the toolkit is initialized, you can add components using the methods specified here.
var app = new HaxeUIApp();
app.ready(
function() {
var main = ComponentMacros.buildComponent("assets/xml/test.xml"); // whatever your XML layout path is
app.addComponent(main);
app.start();
}
);
Some examples are here.
- component-explorer - Browse HaxeUI components
- playground - Write and test HaxeUI layouts in your browser
- component-examples - Various componet examples
- haxeui-api - The HaxeUI api docs.
- haxeui-guides - Set of guides to working with HaxeUI and backends.