On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

HackerHenry

24
Posts
2
Topics
8
Followers
A member registered May 20, 2020 · View creator page →

Creator of

Recent community posts

Thanks.

Hi! I used the gamepads extension with Gamepads::AxisValue(1,"Left",...).The gamepad indexing starts from 1 not 0. That might be the problem. Also I think you need to install some package for linux for that. I couldnt make it work on linux.

Thanks.

Thanks.

Thanks.

Thanks.

Thanks.

Nice mechanic.Good levels.

A bit simple, but polished. The pixel art is great.

Great game. I like the art. The visual effects are great.

Great game. Nice art. Very good effects. Best game so far.

Unfortunatelly, yes. In the future I may add the multitouchscreen controls, but I ran out of time for the jam.

Added MacOS & Linux builds.

Game uploaded to liluo.io.

Link: https://liluo.io/kristofehl/guenter-longarm

I have updated the ui to show when the controller is connected.

Thank you!



You can play the game here:

https://hackerhenry.itch.io/guenter-longarms-yeti-hunter

Thanks.

Nice pixel art! Really fun game.

Nice art! Good job. To extract: www.7-zip.org

Nice art! Good job. To extract: www.7-zip.org

Nice pixel art. Good job.

Really nice game. Well polished. Good job!

Welcome everyone!

If you have suggestions or ideas on how to improve GasStation, please leave a comment in the comment section.

All suggestions are welcome.

Happy coding!

HackerHenry - the dev

ps:

Tip of the day:  How to add assembly to c++

Cpp/C File:

extern "C" return_type function_name();    // C++
extern return_type function_name();        // C

Command:

g++ -c file.cpp -o file.o                  # C++
gcc -c file.c   -o file.o                  # C
as     asm.S    -o asm.o                   # ASM
g++ asm.o file.o -o file.executable        # C++
gcc asm.o file.o -o file.executable        # C