Search found 6 matches

by metzyn
Sun Jan 19, 2014 7:19 am
Forum: Libraries and Tools
Topic: State-Based Menu
Replies: 0
Views: 1854

State-Based Menu

This is my first library, a very simple state-based menu. I'm looking for constructive feedback and to see if it might be useful beyond myself. You can customize the font, color scheme, spacing and sizing by editing the library directly, all easily found in the top of the file. Example code: GAME_ST...
by metzyn
Thu Oct 03, 2013 5:44 pm
Forum: Support and Development
Topic: [0.9.0] love.textinput
Replies: 1
Views: 1748

[0.9.0] love.textinput

I am having an issue with love.textinput. In fact, it doesn't seem to work at all and am unsure as to what I am doing incorrectly. I tried using the example code from the wiki but that doesn't even work. When I press keys nothing happens at all. I am using the most up-to-date nightly build of 0.9.0....
by metzyn
Fri May 17, 2013 3:53 am
Forum: Support and Development
Topic: Attempting to use a class within a class
Replies: 1
Views: 2048

Re: Attempting to use a class within a class

Nevermind... I see my issue.

This line...

Code: Select all

menu.newBox:create(100, 100, 100, 50)
should read as...

Code: Select all

menu.newBox = Box:create(100, 100, 100, 50)
by metzyn
Fri May 17, 2013 3:47 am
Forum: Support and Development
Topic: Attempting to use a class within a class
Replies: 1
Views: 2048

Attempting to use a class within a class

I am trying to use a class within a class, which I understand Lua does not directly support classes. If I use just one of my classes then everything works just fine, but when I start to nest classes I run into issues. I have 3 files containing my code and the error I receive all detailed below. I re...
by metzyn
Fri Mar 29, 2013 1:26 am
Forum: General
Topic: GLSL not explained well...
Replies: 11
Views: 20403

Re: GLSL not explained well...

That really helps! Thank you for taking the time to explain so much. I'm going to start messing with some of it now...
by metzyn
Thu Mar 28, 2013 1:39 am
Forum: General
Topic: GLSL not explained well...
Replies: 11
Views: 20403

GLSL not explained well...

I do not understand how to implement GLSL code into my LOVE scripts. The wiki doesn't show much info at all so I am not sure how it works. I researched this forum and Google, yet there are no good tutorials as how to get started. Please help!