Search found 6 matches

by benreed
Wed Nov 02, 2016 7:31 pm
Forum: Support and Development
Topic: Two X360 pads assigned same ID (not GUID) if re-plugged -- help?
Replies: 3
Views: 3280

Re: Two X360 pads assigned same ID (not GUID) if re-plugged -- help?

Yes, that's it. Sorry for being so long-winded; I just wanted to try and spell out everything I thought of/did previously to solve the problem. I'm trying to solve my problems myself and I actually value plain-English correction (or suggested further reading) more than code solutions. I just wanna m...
by benreed
Wed Nov 02, 2016 5:43 pm
Forum: Support and Development
Topic: Two X360 pads assigned same ID (not GUID) if re-plugged -- help?
Replies: 3
Views: 3280

Two X360 pads assigned same ID (not GUID) if re-plugged -- help?

Hey guys, I decided to spend today working on what I thought would be a simple problem. (Apparently I was wrong.) I wanted to see if I knew how to basically account for unplugging/replugging game controllers, succesfully identifying the exact same physical device, and logically assigning information...
by benreed
Mon Oct 24, 2016 4:05 pm
Forum: Support and Development
Topic: Custom screen transition -- am I modeling correctly?
Replies: 5
Views: 3685

Re: Custom screen transition -- am I modeling correctly?

Now that you mention it, taking a screenshot sounds like it would be at least part of the solution. It just occurred to me that I'd almost certainly want to (effectively) freeze the drawing state as the transition begins (so that moving objects stop moving on screen, etc), so I'd probably want to re...
by benreed
Mon Oct 24, 2016 3:27 pm
Forum: Support and Development
Topic: Custom screen transition -- am I modeling correctly?
Replies: 5
Views: 3685

Custom screen transition -- am I modeling correctly?

Hey guys, I have a little prototype right now where I have a main menu and two crude little gamestates (via HUMP.gamestate) which I can transition between (menu -> "game"). You can see what I have so far in the .love file attached to this post. Before I go much further on defining the othe...
by benreed
Fri Oct 21, 2016 7:08 pm
Forum: Libraries and Tools
Topic: HUMP - yet another set of helpers
Replies: 146
Views: 130019

Re: HUMP - yet another set of helpers

EDIT: Figured it out. Googled "love2d quit game from menu", blundered into the doc page for love.event.quit(), tested it, does exactly what I wanted. Sorry for taking up your time, Positive07, and thank you very much for your help. To answer more specifically about what I want, all I want...
by benreed
Fri Oct 21, 2016 4:03 pm
Forum: Libraries and Tools
Topic: HUMP - yet another set of helpers
Replies: 146
Views: 130019

Re: HUMP - yet another set of helpers

Quick question: I want one of my menu state callbacks to call love.quit(). Since I called registerEvents() with no arguments in love.load(), I know that I've remapped the default LOVE callback, and now I'll have to define a new way of getting that behavior. My first naiive thoughts were these: (1) D...