Search found 7 matches

by croftxd
Thu Mar 13, 2014 11:33 pm
Forum: Support and Development
Topic: Physics problems.
Replies: 11
Views: 6069

Re: Physics problems.

Can anyone else make any suggestions? Surely looking at the https://love2d.org/wiki/Tutorial:Physics there should be a simpler way to get the physics going?
by croftxd
Thu Mar 13, 2014 10:06 pm
Forum: Support and Development
Topic: Physics problems.
Replies: 11
Views: 6069

Re: Physics problems.

If the door should sustain the player above it, you can use an AABB approach (check rect positions, and compensate movement, you can see some tips here , or search about AABB physics. But don't mess with bounciness unless you're confident with the basic). Is that the easiest way to go about it do y...
by croftxd
Thu Mar 13, 2014 4:31 pm
Forum: Support and Development
Topic: Physics problems.
Replies: 11
Views: 6069

Re: Physics problems.

Here's the love file.
by croftxd
Thu Mar 13, 2014 4:00 pm
Forum: Support and Development
Topic: Physics problems.
Replies: 11
Views: 6069

Re: Physics problems.

Looks like you're moving the player manually and using love.physics for the door. The problem with that is that you'll have a lot of headache to sync both of them. The best approach here is either move your player also using love.physics, or make door physics by hand (IMO the best option). A .love ...
by croftxd
Thu Mar 13, 2014 1:56 pm
Forum: Support and Development
Topic: Physics problems.
Replies: 11
Views: 6069

Physics problems.

I've a small program which has an animated character Player { .... } which sets position, speed etc.. and objects.door (shamefully stolen from an example program). However, I'm having issues in allowing my player character to jump on to the door, bump in to the door etc... My initial thought was tha...
by croftxd
Thu Mar 13, 2014 1:02 pm
Forum: Support and Development
Topic: AnAL animation issue
Replies: 3
Views: 3883

Re: AnAL animation issue

Ah ofcourse! Thanks for the help!
by croftxd
Tue Mar 11, 2014 6:27 pm
Forum: Support and Development
Topic: AnAL animation issue
Replies: 3
Views: 3883

AnAL animation issue

I'm trying to use the AnAL library to create separate animations which get drawn dependent on what the active Image variable "state" is set to. I have managed to get the left and right walking animations working (random luck and not to sure why it does work). But now I'm trying to get my j...