Thursday, December 29, 2016

GameMaker Studio 2



For you that lucky enough to grab the GameMaker: Studio on Humble Bundle, you'll have a 40% discount to buy GameMaker Studio 2 here.

Its always fun to learn something new, right?








Unfortunately, every game needs a character, and since i am not an artist, i am struggling just to make a very basic character.
.....and after tons of tutorials and youtube, here's the sticky girl

Lets make her breathe by adding some frame















And i think that's good enough for me :).

Wednesday, December 21, 2016

Windows !

I've got a new NUC with Windows 10 Preinstalled :D.

So the first thing i do is repartition the hard-drive for the choosen linux distribution later.

But in the meanwhile, lets surf deeper into the Windows realm

Cheers!

Saturday, July 2, 2016

HaxeFlixel, SublimeText and Debian (Derivatives)


Image result for SublimeText iconSublime Text is a sophisticated text editor for code, markup and prose.
Sublime text is a very popular, cross-platform editor that has significant Haxe and OpenFL support provided through an open-source plugin. If you are a Mac, Linux or Windows user, it is one of the most popular choices for Haxe development.
To install Sublime Text in Debian, download the tarball at the official Sublime Text Website http://www.sublimetext.com/3


extract the tarball and move the directory into /opt/
$ tar vxjf sublime_text_3_build_3114_ x64.tar.bz2

and then create a symbolic link to use the command







$ sudo ln -s /opt/sublime_text_3/sublime_text /usr/bin/sublime
 
now we can type sublime to start sublime text
 
 
 
create another symbolic link "subl" so haxeflixel can recognise it
 

$ sudo ln -s /opt/sublime_text_3/sublime_text /usr/bin/subl
 
 
 
 
 
 
and thats it ;)