Tagged as: haXe

Luxe and Universal Windows Apps

stisa, Nov 21, 2015

I’m still playing with luxe, and I heard that there is the possibility to turn html5 apps into Windows Universal Apps(also known as UWA) and I had to try it, even if it’s just (from my understanding, anyway) a wrapper around a webview.
The following steps assume that:

Continue reading...

Luxe/Flow Hooks Example

stisa, Oct 2, 2015

I’m playing around with luxe, building a simple depth first search-based maze generator, which I plan on turning into a full game ( btw you can try it here ).
While iterating, I had to copy-paste the content of bin/web/ to the folder linked with the project git repo, but it got old fast, and I had to find a faster way.
At first, I tried using the --output-path <path> flag in flow, that overrides the flow tree project.app.output path. The problem with this method is that flow generates two folders, web and web.build, inside your selected path, and I didn’t like it very much.
That’s when I found out about hooks, digging trough flow source code.

Continue reading...

Starting with mint

stisa, Sep 20, 2015

Today I started experimenting with mint, a library written in the Haxe programming language.
It is a fairly new library, with relatively little documentation, but it’s also quite straightforward.
I pieced together a barebone example from the mint repo , with a window showing a label.
Here it is: github

Continue reading...