Search found 4 matches

by Conifer
Wed Nov 11, 2020 12:00 am
Forum: Libraries and Tools
Topic: OGMO Editor Importer
Replies: 4
Views: 15307

Re: OGMO Editor Importer

I love using OGMO and I can't wait to this to come out.
Would you also be able to spawn entities through the data?
by Conifer
Sat Oct 24, 2020 1:52 pm
Forum: Support and Development
Topic: simple particle question
Replies: 7
Views: 6017

Re: simple particle question

grump wrote: Sat Oct 24, 2020 1:14 pm love.graphics.newRectangle does not even exist. That "self-explanatory" error message explains to you that ParticleSystem can only emit Textures.

Draw the rectangle to a Canvas to use it as a texture.
Apologies, its love.graphics.rectangle.
I will try that solution.
by Conifer
Sat Oct 24, 2020 12:23 pm
Forum: Support and Development
Topic: simple particle question
Replies: 7
Views: 6017

Re: simple particle question

This can easily be achieved with LÖVE's built-in particle system functionality. local playerX = 300 local playerY = 300 local particleSystem function love.load() -- Create a simple image with a single white pixel to use for the particles. -- We could load an image from the hard drive but this is ju...
by Conifer
Thu Oct 22, 2020 10:35 pm
Forum: Support and Development
Topic: simple particle question
Replies: 7
Views: 6017

simple particle question

Hi guys, I'm learning Love2d and Lua overall and I've been creating pong which taught me a lot, but I was wondering how can I create a trail particle that is emitted behind my ball (square in fact..) As it moves. Is that something difficult to achieve for a beginner? Could anyone point me in the rig...