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?
Search found 4 matches
- Wed Nov 11, 2020 12:00 am
- Forum: Libraries and Tools
- Topic: OGMO Editor Importer
- Replies: 4
- Views: 16325
- Sat Oct 24, 2020 1:52 pm
- Forum: Support and Development
- Topic: simple particle question
- Replies: 7
- Views: 6282
Re: simple particle question
Apologies, its love.graphics.rectangle.
I will try that solution.
- Sat Oct 24, 2020 12:23 pm
- Forum: Support and Development
- Topic: simple particle question
- Replies: 7
- Views: 6282
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...
- Thu Oct 22, 2020 10:35 pm
- Forum: Support and Development
- Topic: simple particle question
- Replies: 7
- Views: 6282
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...