Search found 7 matches

by Eldy
Fri Jun 07, 2019 9:51 am
Forum: Libraries and Tools
Topic: GitHub LÖVE template
Replies: 0
Views: 4635

GitHub LÖVE template

Following GitHub announcement of repository templates, I created a LÖVE repository template.

https://github.com/olivier-grech/love-template

It's just an "Hello World!" project with the conf.lua file next to it. But it was annoying to copy/paste it every time, so here you go.
by Eldy
Sun Apr 07, 2019 10:33 am
Forum: Libraries and Tools
Topic: HEXAGÖN - A library for drawing hexagonal grids
Replies: 7
Views: 10509

Re: HEXAGÖN - A library for drawing hexagonal grids

Hello everyone! I did some refactoring on my library. I belive it makes more sense now. You can check out the demo, but here's a really basic case as an example. You can put this in the love.load() method for example: -- Create a 5*5 grid demoGrid = hexagon.grid(5, 5, 50, true, false) -- Create a ca...
by Eldy
Wed Mar 20, 2019 8:08 pm
Forum: Libraries and Tools
Topic: HEXAGÖN - A library for drawing hexagonal grids
Replies: 7
Views: 10509

Re: HEXAGÖN - A library for drawing hexagonal grids

Thanks a lot for your help. This should be done now, hopefully.
by Eldy
Tue Mar 19, 2019 3:43 pm
Forum: Libraries and Tools
Topic: HEXAGÖN - A library for drawing hexagonal grids
Replies: 7
Views: 10509

Re: HEXAGÖN - A library for drawing hexagonal grids

I have taken your remarks into account.
by Eldy
Mon Mar 18, 2019 10:44 am
Forum: Libraries and Tools
Topic: HEXAGÖN - A library for drawing hexagonal grids
Replies: 7
Views: 10509

Re: HEXAGÖN - A library for drawing hexagonal grids

Thanks for your answer.

Is sticking

Code: Select all

local
in front of the variable/function enough, or is there something else I should be aware of?
by Eldy
Fri Mar 15, 2019 2:19 pm
Forum: Libraries and Tools
Topic: HEXAGÖN - A library for drawing hexagonal grids
Replies: 7
Views: 10509

HEXAGÖN - A library for drawing hexagonal grids

This is a small library that I wrote as a proof of concept for a project. Basically everything is in the README.md file. It is not very developped, but I like to believe it has a solid foundation. Maybe it will be useful for someone else? Check out the demo included in the repository! https://github...
by Eldy
Mon Oct 26, 2015 10:07 pm
Forum: Support and Development
Topic: Printing only a part of an image
Replies: 2
Views: 1527

Printing only a part of an image

How do I do that? If I only want to print a tile in a tileset for example.

I didn't find this option anywhere.