Search found 203 matches

by Sulunia
Mon Mar 28, 2016 3:39 am
Forum: Games and Creations
Topic: [Project] Spiral Squad
Replies: 9
Views: 3883

Re: [Project] Spiral Squad

It looks awesome!
I myself will try to make a platformer someday..
by Sulunia
Mon Mar 28, 2016 3:35 am
Forum: Games and Creations
Topic: [Game] Lonely Pong
Replies: 2
Views: 2565

Re: [Game] Lonely Pong

Dont worry. Every gamedev has to start somewhere. It's indeed simple, but works.

Try adding some effects now, like particle effects when you get a ball.
by Sulunia
Mon Mar 28, 2016 3:32 am
Forum: Libraries and Tools
Topic: [library] Artal, work directly with .PSD files.
Replies: 11
Views: 8133

Re: [library] Artal, work directly with .PSD files.

Whoa dude. That looks awesome!
by Sulunia
Sun Mar 27, 2016 6:07 am
Forum: Support and Development
Topic: touch help
Replies: 5
Views: 1625

Re: touch help

Image
by Sulunia
Sat Mar 26, 2016 7:30 pm
Forum: Support and Development
Topic: Very huge delay to load streamed .mp3 files
Replies: 11
Views: 4464

Re: Very huge delay to load streamed .mp3 files

I see, i didn't know it worked like that.

I already modified the loading routine, now it can optionally load or not the soundData. Now it loads the music too fast.. Hahaha

I'll see if i can finish at least a bit of the ingame tonight, so i have something to show you guys!
by Sulunia
Sat Mar 26, 2016 6:57 pm
Forum: Support and Development
Topic: Images turn into white squares after time
Replies: 26
Views: 10875

Re: Images turn into white squares after time

Welp, in that case, it's the general stuff.. Update video drivers, remove internal dust, maybe even reinstall the OS you're currently using.
by Sulunia
Sat Mar 26, 2016 6:40 pm
Forum: Support and Development
Topic: Images turn into white squares after time
Replies: 26
Views: 10875

Re: Images turn into white squares after time

It's weird. You say you have a problem with white square, but the example you posted here works just fine.
by Sulunia
Sat Mar 26, 2016 6:26 pm
Forum: Support and Development
Topic: Images turn into white squares after time
Replies: 26
Views: 10875

Re: Images turn into white squares after time

From what i see, you create a new image.. playerImg = love.graphics.newImage("assets/player.png") everytime you instantiate a "Player". So, if you create 300 players, you will also load the same file 300 times. Try adding to your main love.load() function love.load() player = Pla...
by Sulunia
Sat Mar 26, 2016 6:00 pm
Forum: Support and Development
Topic: Tiled Map Editor compression help please
Replies: 8
Views: 3744

Re: Tiled Map Editor compression help please

It's definitely not simple, but i'll try to break it down for you: To parse a given file, you must first know how it stores things. In the given TMX, it looks like everything is separated by a section indicator, such as <map> or <tileset> . Then you have to create functions that read all lines of th...