Search found 264 matches

by Sheepolution
Tue Jul 09, 2013 7:22 pm
Forum: Support and Development
Topic: I'd like your opinion on my take on slopes.
Replies: 10
Views: 4830

I'd like your opinion on my take on slopes.

So I'm making a new game, and it has slopes. So I made a level like this: wA1Jigu.png With these tiles: 213HTbI.png So the obvious problem was: How do I make slopes? My idea was as follow: I am a character and I'm falling on the ground. How to detect if I hit the slope? I check if I hit a tile > is ...
by Sheepolution
Tue Jun 25, 2013 4:46 pm
Forum: Support and Development
Topic: I can't build with Sublime Text 2 [SOLVED]
Replies: 9
Views: 8848

Re: I can't build with Sublime Text 2 [SOLVED]

Ah yes, that solved the build result error, but it's still giving the console error and not working. It has to be my exec.py that is fucking it up. I'm looking online for solutions and they say to replace certain lines with os.path.expandvars(path).encode(sys.getfilesystemencoding()) Which doesn't w...
by Sheepolution
Tue Jun 25, 2013 2:43 pm
Forum: Support and Development
Topic: I can't build with Sublime Text 2 [SOLVED]
Replies: 9
Views: 8848

Re: I can't build with Sublime Text 2

After that, try running LOVE from the command prompt by simply typing in "love" I did, it works. If it does, try building LOVE with the build system I provided again. Nope, getting the next build result with your build settings: Love2D settings not found! Please add settings to Preference...
by Sheepolution
Mon Jun 24, 2013 3:15 pm
Forum: Support and Development
Topic: I can't build with Sublime Text 2 [SOLVED]
Replies: 9
Views: 8848

Re: I can't build with Sublime Text 2

I tried it with PHP, and I think this is more of a general Sublime problem than löve. Since that also returns Traceback (most recent call last): File ".\sublime_plugin.py", line 337, in run_ return self.run(**args) File ".\exec.py", line 154, in run File ".\exec.py", li...
by Sheepolution
Mon Jun 24, 2013 7:07 am
Forum: Support and Development
Topic: I can't build with Sublime Text 2 [SOLVED]
Replies: 9
Views: 8848

Re: I can't build with Sublime Text 2

So I changed some stuff on exec.py, and used your system build, now I get this:

Build result:

Code: Select all

depth not expected on this moment
[Finished in 0.1s with exit code 1]
Console:

Code: Select all

Running for depth in {0..5}; do if [ -f main.lua ]; then love .; fi; cd ..; done; ls

I have no idea..
by Sheepolution
Sun Jun 23, 2013 10:39 pm
Forum: Support and Development
Topic: I can't build with Sublime Text 2 [SOLVED]
Replies: 9
Views: 8848

I can't build with Sublime Text 2 [SOLVED]

My buildsystem looks like this: { "selector": "source.lua", "cmd": ["C:\\Program Files (x86)\\LOVE\\love.exe", "$file_path"] } And when I build it says Building for a few seconds, and then it's done. But nothing happened and no window opened. It give...
by Sheepolution
Sun Jun 02, 2013 7:51 pm
Forum: Support and Development
Topic: Move an object based on an angle?
Replies: 5
Views: 3485

Re: Move an object based on an angle?

Isn't this basically the same question as before?

http://www.love2d.org/forums/viewtopic. ... 33#p104896
by Sheepolution
Sat Jun 01, 2013 8:10 am
Forum: Support and Development
Topic: New to love
Replies: 3
Views: 3848

Re: New to love

atan2, sin and cos are advanced math functions. You probably don't understand how they work so let me try to explain. math.atan2 calculates the angle between 2 distances. So the first distance is newY -imgY and the other is newX - imgX. sin and cos return -1 to 1, depending on the angle. 5fpYND4.gif...
by Sheepolution
Thu May 30, 2013 11:47 am
Forum: Support and Development
Topic: Adding AI?
Replies: 8
Views: 2185

Re: Adding AI?

Nintendo is not going to sue you when you're remaking the original Zelda and put it on the forums, unless you're actually selling it. As long as you're not using Nintendo's image and sound assets, original reverse engineered code or things like that. You can still get sued, even though you're not s...
by Sheepolution
Wed May 29, 2013 10:18 pm
Forum: Support and Development
Topic: Adding AI?
Replies: 8
Views: 2185

Re: Adding AI?

In case AI means something else in LÖVE Nope, it's called the same everywhere. Also, would it be illegal to make a snake clone and put it on the LÖVE forums? I was thinking of making one but I'm not too sure... obviously not using a copyrighted soundtrack and just the concept itself! As long as you...