Search found 277 matches

by kraftman
Mon Jul 18, 2011 7:25 am
Forum: Libraries and Tools
Topic: LuaEdit
Replies: 14
Views: 7768

Re: LuaEdit

Ensayia wrote:
Will the user be able to pan around the screen if the project is composed of too many nodes to fit on screen at once?
Yeh, you can pan and zoom.
by kraftman
Sun Jul 17, 2011 11:24 pm
Forum: Libraries and Tools
Topic: LuaEdit
Replies: 14
Views: 7768

LuaEdit

So I've been coding for a while with Lua, and the one thing that bugs me about text editors is their 1 dimensional nature: its just one huge list of all the stuff thats going into the program. You can separate it a bit by putting it into different files, but its still kind of annoying when you're wo...
by kraftman
Sat Jul 16, 2011 11:04 pm
Forum: General
Topic: Tips for moving from 2d to 3d?
Replies: 4
Views: 2046

Re: Tips for moving from 2d to 3d?

I'll check them all out, cheers!
by kraftman
Sat Jul 16, 2011 7:11 pm
Forum: General
Topic: Tips for moving from 2d to 3d?
Replies: 4
Views: 2046

Tips for moving from 2d to 3d?

Could anyone recommend a good place to get started with moving from designing simple 2d games to simple 3d games?
I understand its a lot more complicated but I'd like to start learning a bit about it, and I have no idea where to start.
by kraftman
Fri Jul 15, 2011 8:36 am
Forum: Games and Creations
Topic: Tilt reboot (alpha 4) - need as many testers as possible!
Replies: 32
Views: 12117

Re: Tilt reboot (alpha 3) - need as many testers as possible

same error. once i got it working, it wouldnt accept mouse input:?
by kraftman
Tue Jul 12, 2011 11:37 pm
Forum: Support and Development
Topic: I'm new to Lua, and do not understand what I'm doing wrong.
Replies: 16
Views: 7987

Re: I'm new to Lua, and do not understand what I'm doing wro

It looks like you only want to perform the operation once, so keep it outside of love.draw, since this is called every frame. I havnt tested this, but you could try something like: npcdata = {} for key, value in string.gmatch(file, "(%a);(%d)") do npcdata[key] = value end where file is the...
by kraftman
Thu May 19, 2011 7:35 pm
Forum: General
Topic: LÖVE Studio [Ongoing Development]
Replies: 10
Views: 5214

Re: LÖVE Studio [Ongoing Development]

Sounds similar to something i've just started working on :)

http://dl.dropbox.com/u/1695464/LuaEdit/LuaEdit2.1.love

I still need to finish of loading projects/media and saving files, and then add a sandbox so you can run the game directly from the code.