Search found 206 matches

by I~=Spam
Mon Jun 08, 2015 5:47 pm
Forum: Support and Development
Topic: Small Useful Functions
Replies: 127
Views: 52966

Re: Small Useful Functions

I don't think this is usable because of the license because it is strait out of garry's mod client...
by I~=Spam
Sun Jun 07, 2015 3:23 pm
Forum: Support and Development
Topic: "Questions that don't deserve their own thread" thread
Replies: 905
Views: 410803

Re: "Questions that don't deserve their own thread" thread

That is because in order for zerobrane to be able to debug any lua scripts it must turn on per line debugging. This tells lua to run code one line at a time (using per line debug hooks). Mobdebug (the library that zerobrane loads into the debugging lua program to make the debugging possible) just li...
by I~=Spam
Fri Jun 05, 2015 7:32 pm
Forum: Libraries and Tools
Topic: My Loveframes themes
Replies: 16
Views: 11116

Re: My Loveframes themes

Wow this is very nice! Thanks for bumping! :awesome:
by I~=Spam
Fri Jun 05, 2015 7:25 pm
Forum: Libraries and Tools
Topic: Loveframes Flat Blue Theme
Replies: 2
Views: 1821

Re: Loveframes Flat Blue Theme

Not bad I like the look! :D Could you make it so the solid color can be changed?
by I~=Spam
Fri Jun 05, 2015 7:23 pm
Forum: Support and Development
Topic: Can I mark table as userdata?
Replies: 7
Views: 4625

Re: Can I mark table as userdata?

Good! :) Sorry I couldn't be much (if any) help.
by I~=Spam
Fri Jun 05, 2015 2:20 am
Forum: Libraries and Tools
Topic: [library] bump.lua v3.1.4 - Collision Detection
Replies: 227
Views: 123942

Re: [library] bump.lua v3.1.4 - Collision Detection

Maybe it could be a user configurable option to have marios bounding box change to work on a ramp when in contact with a ramp (but it will use the normal bounding box for checking for collisions with normal objects.)
by I~=Spam
Fri Jun 05, 2015 2:18 am
Forum: Games and Creations
Topic: Sokoban
Replies: 8
Views: 2960

Re: Sokoban

I agree those are some really nice animations! Good job! ;)
by I~=Spam
Fri Jun 05, 2015 2:16 am
Forum: Support and Development
Topic: Can I mark table as userdata?
Replies: 7
Views: 4625

Re: Can I mark table as userdata?

I want to do this because as you said, userdata are pointers to C objects. I can convert Java to C objject, but in Java there is no way to define multiple return function because of all that converting to C. So I need to make table with multiple return function (what is possible with my implememtat...
by I~=Spam
Thu Jun 04, 2015 5:06 pm
Forum: General
Topic: What's everyone working on? (tigsource inspired)
Replies: 1791
Views: 1495077

Re: What's everyone working on? (tigsource inspired)

That is a nice debug system. :D
by I~=Spam
Thu Jun 04, 2015 4:37 pm
Forum: Support and Development
Topic: Can I mark table as userdata?
Replies: 7
Views: 4625

Re: Can I mark table as userdata?

As a side note you could create a C library that creates an empty userdata and attaches a metatable to it... (But it is probably not a good idea because it breaks some conventions.)