Search found 42 matches

by Centauri Soldier
Tue Aug 09, 2016 11:04 pm
Forum: Libraries and Tools
Topic: Content Redacted. Please Delete Thread.
Replies: 17
Views: 12727

Re: Dox - A Lua Documentation Generator Script

Well, that's a helluva wish list :D. But, if I understand you correctly, then Dox already allows for what you want since nothing documented is implicit. All documentation created by Dox is based on how you comment your code. Each function and module are explicitly declared by you. Any functions not ...
by Centauri Soldier
Tue Aug 09, 2016 4:19 pm
Forum: Libraries and Tools
Topic: Content Redacted. Please Delete Thread.
Replies: 17
Views: 12727

Re: Dox - A Lua Documentation Generator Script

LDoc is one I had considered as well and dismissed. While ease of installation and use lead the way in features, Dox's ability to support user-modified tags is up there too. For example, I have created it to allow both 'func' and 'function' to represent the same tag. Any alias can be added to any ta...
by Centauri Soldier
Tue Aug 09, 2016 5:23 am
Forum: Libraries and Tools
Topic: Content Redacted. Please Delete Thread.
Replies: 17
Views: 12727

Content Redacted. Please Delete Thread.

Content Redacted.
by Centauri Soldier
Tue Aug 09, 2016 5:11 am
Forum: Libraries and Tools
Topic: Löve Frames - A GUI Library
Replies: 406
Views: 354444

Re: Löve Frames - A GUI Library

Wow, super cool! Thanks for sharing those, Kenny :D.
by Centauri Soldier
Tue Jul 26, 2016 10:31 pm
Forum: Libraries and Tools
Topic: Löve Frames - A GUI Library
Replies: 406
Views: 354444

Re: Löve Frames - A GUI Library

Hey Kenny, Long-time (and current) user of Loveframes. I'm in the middle of a LOVE project using this amazing plugin and would really like to get my hands on the original documentation if possible. Also, I would like to point something out and please understand that I mean to be informative and not ...
by Centauri Soldier
Fri Sep 27, 2013 6:24 pm
Forum: Support and Development
Topic: save lua-table to lua-script
Replies: 18
Views: 7949

Re: save lua-table in lua-script

Yeah, it uses it's own version of lua.
by Centauri Soldier
Thu Sep 26, 2013 5:00 pm
Forum: Support and Development
Topic: save lua-table to lua-script
Replies: 18
Views: 7949

Re: save lua-table in lua-script

This is incorrect. Try it.
Weird, in my other IDE it returns 0 and 1.
by Centauri Soldier
Tue Sep 24, 2013 9:48 pm
Forum: Support and Development
Topic: save lua-table to lua-script
Replies: 18
Views: 7949

Re: save lua-table in lua-script

At a glance, your serialize function fails to save boolean values correctly. tostring() on a boolean value will return 0 or 1, not "true" or "false".
by Centauri Soldier
Mon Sep 23, 2013 7:32 pm
Forum: Support and Development
Topic: save lua-table to lua-script
Replies: 18
Views: 7949

Re: save lua-table in lua-script

I've been programming in lua for years and didn't know that, thanks guys. Also, Robin, your string search didn't work either so I just wrapped all string and number indices in quotes for simplicity. Well, try that then, see how it suits you now. Thanks for all the feedback :D, keep it coming. Tested...
by Centauri Soldier
Mon Sep 23, 2013 4:50 pm
Forum: Support and Development
Topic: save lua-table to lua-script
Replies: 18
Views: 7949

Re: save lua-table in lua-script

Thank you for you suggestions, Robin, I'll look into those problems.

BTW, aren't all keys in a lua table either numbers or strings?