Search found 78 matches

by skyHights
Thu Nov 17, 2016 7:04 am
Forum: Support and Development
Topic: Total beginner lost in its first "separated" program [Solved]
Replies: 5
Views: 3569

Re: Total beginner lost in its first "separated" program

zorg wrote:(like linux, and probably even Mac OS X)
I don't know about linux, but forwards slashes work on mac.
by skyHights
Wed Nov 09, 2016 2:50 am
Forum: General
Topic: On the topic of tutorials
Replies: 2
Views: 1990

On the topic of tutorials

With the brand new (very well made) tutorial posted, I had a look at the tutorial page. It has three boxes, Title, Love version, and Description. All the posts have a title, none have a version nor description, and some have been around for what seems years. Would a clean up/adding of version & ...
by skyHights
Sat Sep 17, 2016 8:51 am
Forum: Games and Creations
Topic: Obey
Replies: 4
Views: 4542

Re: Obey

I just got the name...
Well done *claps*
by skyHights
Tue Sep 13, 2016 11:45 am
Forum: Games and Creations
Topic: On The Roadside (Turnbased Strategy inspired by XCOM)
Replies: 69
Views: 73451

Re: On The Roadside (Turnbased Strategy inspired by XCOM)

awww, it's like a cute dwarf fortress.
by skyHights
Sat Sep 10, 2016 10:13 am
Forum: General
Topic: Connection to USB Camera
Replies: 1
Views: 1845

Connection to USB Camera

Does anyone know of any libraries or other ways with which lua or löve can connect and get information from a USB camera?
And would it be possible with love.video.newVideoStream?
by skyHights
Fri Aug 19, 2016 12:01 am
Forum: General
Topic: Love looking in weird places for files
Replies: 2
Views: 1622

Re: Love looking in weird places for files

Positive07 wrote:This looks like an error in the compilation of Lua and the package.path and probably package.cpath library.
It appears to have been reported, here:
https://bitbucket.org/rude/love/issues/ ... path-again
by skyHights
Thu Aug 18, 2016 10:28 pm
Forum: General
Topic: Love looking in weird places for files
Replies: 2
Views: 1622

Love looking in weird places for files

When a love file can't find a required file it looks in all sorts of weird places. Example code: function love.load() require "noSuchFile" end Output: Screen Shot 2016-08-19 at 6.25.12 AM.png I do not have a user account called Alex on my computer. (I'm on a mac, I don't know if that helps)
by skyHights
Wed Aug 03, 2016 8:19 am
Forum: Games and Creations
Topic: my first "real" game(Bomb_Factory)
Replies: 3
Views: 3413

Re: my first "real" game(Bomb_Factory)

It's a fun little game. Encountered a few weird glitches (infinite screenshake at one point), and the help screen is unreadable (white text on white bg). I can second the infinite screen shaking, the game paused for a second (once) and then the shaking started. I didn't have any problems with the he...
by skyHights
Sat Jul 09, 2016 9:41 am
Forum: Support and Development
Topic: calling multiple things in functions
Replies: 3
Views: 1455

calling multiple things in functions

Adding to my long list of questions (you can probably guess what I'm doing by looking at them :P) Anyway, to draw a polygon you just keep adding more and more points: love.graphics.polygon( mode, ... ) How would you do that with a function, and is it possible to do that with two different variables,...
by skyHights
Thu Jul 07, 2016 2:41 pm
Forum: Support and Development
Topic: calling fuctions
Replies: 2
Views: 1505

Re: calling fuctions

ivan wrote:Not very elegant though, there may be simpler ways to implement what you are trying to do.
Thank you <3