Search found 5 matches
- Sat Aug 02, 2014 5:46 pm
- Forum: Support and Development
- Topic: GIF to animation
- Replies: 5
- Views: 3204
Re: GIF to animation
ok, i know this is an old post but thank you so much for posting this, i was originally looking for a way to add gif animations but through the code shown here instead i was able to automate my map loading process :) thanks for k, v in pairs (love.filesystem.getDirectoryItems('/bin/maps')) do print(...
- Mon May 19, 2014 12:07 am
- Forum: Support and Development
- Topic: ...My collisions are making a pointless mistake...
- Replies: 2
- Views: 1435
...My collisions are making a pointless mistake...
hey guys im working on a super smash bros type game and im VERY early on in development but have came to an issue. i dont want to make the code completely public yet but can someone message me on skype (Agent_Endercake = skype name) to help out? itd be very appreciated
- Thu Mar 06, 2014 4:46 am
- Forum: Support and Development
- Topic: Enemy AI help needed
- Replies: 5
- Views: 2159
Re: Enemy AI help needed
I honestly had no idea that they were measured in radians that was what was throwing me off thank you so muchmicha wrote:Yes, keep in mind that angles are measured in radians. 180 degrees correspond to an angle of pi.
- Wed Mar 05, 2014 7:48 pm
- Forum: Support and Development
- Topic: Enemy AI help needed
- Replies: 5
- Views: 2159
Re: Enemy AI help needed
The reason they follow the same path might be because you are using math.random, and löve by default doesn't seed that. Try using love.math.random() instead? https://love2d.org/wiki/love.math.random Thank you so much Plu, i was use to JS and other languages and didnt realize love didnt seed it. If ...
- Wed Mar 05, 2014 7:42 am
- Forum: Support and Development
- Topic: Enemy AI help needed
- Replies: 5
- Views: 2159
Enemy AI help needed
ok, admittedly i am new to both lua and love2d but am used to other languages and am fluent in JavaScript which is somewhat similar to LUA in terminology and vocabulary. My newest project is mainly for an exercise to learn more and accomplish something i will enjoy. This is a top down game where the...