Search found 57 matches

by bizziboi
Thu Dec 12, 2013 6:39 am
Forum: Support and Development
Topic: Quad confusion
Replies: 11
Views: 5110

Quad confusion

Hi, I am trying to replace my sprite rendering code with quads for preparation of batching and I run into the following confusion. I create a quad for the sprite, which for now I want to be the full image. The way I read the wiki, self.quad = love.graphics.newQuad( 0, 0, 256, 256, 256, 256 ) should ...
by bizziboi
Sat Dec 07, 2013 8:33 am
Forum: Support and Development
Topic: Physics object goes asleep, but not waking up?
Replies: 3
Views: 1610

Re: Physics object goes asleep, but not waking up?

You're right, setting angular velocity instead of rotating manually does the trick. This is strange, because that's what kinematic bodies are usually for (at least in other engines) - when you set the position they internally calculate the needed velocities to reach that position. I guess Box2D trea...
by bizziboi
Sat Dec 07, 2013 7:27 am
Forum: Support and Development
Topic: Physics object goes asleep, but not waking up?
Replies: 3
Views: 1610

Physics object goes asleep, but not waking up?

I have something that puzzles me. Below is a bit of code that creates a circle, a static box and a rotating (kinematic box). When the circle falls down it falls on the static box and goes to sleep - however, collision with the kinematic body doesn't wake it up so the collision goes totally unnoticed...
by bizziboi
Fri Dec 06, 2013 3:55 am
Forum: Games and Creations
Topic: No Consolation - A game in progress (0.9.0)
Replies: 5
Views: 2637

Re: No Consolation - A game in progress (0.9.0)

Is the 2 version purely because of love.filesystem.enumerate?

Because in that case you can do

if not love.filesystem.enumerate then
love.filesystem.enumerate = love.filesystem.getDirectoryItems
end

and use love.filesystem.enumerate and be 0.8.0 and 0.9.0 compatible.
by bizziboi
Mon Dec 02, 2013 6:05 pm
Forum: Support and Development
Topic: love 0.9.0 + luajit - no console output?
Replies: 12
Views: 14697

Re: love 0.9.0 + luajit - no console output?

(solved, see end of post, no real explanation except stupidity but it works now) First off: >>Also, it's encouraged to use the edit button if you have more to say in a short amount of time. See the forum etiquette. Ah, okay, I'll be better next time. I ended up rebuil:ding everything in 2012 (luajit...
by bizziboi
Mon Dec 02, 2013 7:43 am
Forum: Support and Development
Topic: love 0.9.0 + luajit - no console output?
Replies: 12
Views: 14697

Re: love 0.9.0 + luajit - no console output?

Ah, got console output in the debugbuild now by compiling with /MDd (makes sense). Having no luck trying to compile megasource in 2010 in release mode (with an error message I have never seen before (Error 31 error : Element <EnableEnhancedInstructionSet> has an invalid value of "NoExtensions&q...
by bizziboi
Mon Dec 02, 2013 7:26 am
Forum: Support and Development
Topic: love 0.9.0 + luajit - no console output?
Replies: 12
Views: 14697

Re: love 0.9.0 + luajit - no console output?

Forgot to mention - luajit seems to already build with /MD. As said, the same DLL works with console output with your distro of 0.8.0, so it has to be built correctly, right?
by bizziboi
Mon Dec 02, 2013 7:16 am
Forum: Support and Development
Topic: love 0.9.0 + luajit - no console output?
Replies: 12
Views: 14697

Re: love 0.9.0 + luajit - no console output?

I just compiled luajit from source (indeed, easy as pie) with 2010 as well, but still no dice. Next I'll try everything with 2012 (but will be tomorrow). I am stumped - printf's from liblove work if I add them, so it's just luajit not reaching the console - and that would be the part I'm least joyfu...
by bizziboi
Mon Dec 02, 2013 7:01 am
Forum: Support and Development
Topic: love 0.9.0 + luajit - no console output?
Replies: 12
Views: 14697

Re: love 0.9.0 + luajit - no console output?

I'll give it a shot. I just compiled everything in VS2010 and copied in the luajit from your distribution and still have no output, and again, I do with the lua51.dll that the solution builds. Do you build with VS2010? Do you have console output when you build from megasource, but with luajit (if yo...
by bizziboi
Mon Dec 02, 2013 6:23 am
Forum: Support and Development
Topic: love 0.9.0 + luajit - no console output?
Replies: 12
Views: 14697

Re: love 0.9.0 + luajit - no console output?

Hmmm, could be runtime version mismatch I guess. I compiled megasource with VS2012 (seem to recall that's what the readme said), I could try 2010. I never tried building luajit from VS, guess I could see if that's doable (I so suck at makefiles, heck at projects setup in general). I really appreciat...