I am pretty sure that is possible just play with ambient colors, just turn the ambient all the way to black.nucular wrote:Is it possible to apply the light/shine map to the drawn objects, so that tiles hidden behind other tiles (casting a shadow on them) are actually hidden (but objects the light shines on aren't)? I am using the engine together with STI if that is relevant.
To clarify, I marked the areas that I don't want to be lit in this image:
I'd guess it would be possible if the light/shine map could be drawn on the shadow map additively.
Löve "Light vs. Shadow" Engine v2
- drunken_thor
- Citizen
- Posts: 75
- Joined: Wed Oct 01, 2014 12:14 am
- Location: Toronto, Canada
- Contact:
Re: Löve "Light vs. Shadow" Engine v2
- drunken_thor
- Citizen
- Posts: 75
- Joined: Wed Oct 01, 2014 12:14 am
- Location: Toronto, Canada
- Contact:
Re: Löve "Light vs. Shadow" Engine v2
Hey giann, I just pushed a change to do what you described in a more general way. Now objects that do not cast shadows have shadows applied over top of them. Give it a try and see how it works.giann wrote:I think I did it !I pass to the shadow shader an image with only the non-floor normals. I apply the shadow attenuation over normals only if not on a non-floor normal. I can do a pull request if you want
Re: Löve "Light vs. Shadow" Engine v2
What you want is to apply a field of vision from the point of view of your character/player. Light vs Shadow is from a top down point of view where everything is visible.nucular wrote:Is it possible to apply the light/shine map to the drawn objects, so that tiles hidden behind other tiles (casting a shadow on them) are actually hidden (but objects the light shines on aren't)? I am using the engine together with STI if that is relevant.
To clarify, I marked the areas that I don't want to be lit in this image:
I'd guess it would be possible if the light/shine map could be drawn on the shadow map additively.
I use https://github.com/paulofmandown/rotLove to apply my own FOV: Of course it's done cell by cell so if you want it to be done by pixel, you'll have to come up with another tweak.
Re: Löve "Light vs. Shadow" Engine v2
Sorry that I didn't say so explicitly, but my problem is that the wall behind the other one is still lit by the "flashlight" of my player:drunken_thor wrote:I am pretty sure that is possible just play with ambient colors, just turn the ambient all the way to black.
This picture was taken with the ambient light being black.
I was unsure if integrating yet another library would be a good idea (I'm already using Lightworld, HardonCollider and STI) but it seems like this is my only solution if I want the unlit tiles to be culled completly without taking up drawing time, so thanks for the helpgiann wrote:What you want is to apply a field of vision from the point of view of your character/player. Light vs Shadow is from a top down point of view where everything is visible.
I use https://github.com/paulofmandown/rotLove to apply my own FOV: Of course it's done cell by cell so if you want it to be done by pixel, you'll have to come up with another tweak.

Does it work with multiple light sources though?
Re: Löve "Light vs. Shadow" Engine v2
It's independant from the light system.
You only have to feed a callback to the fov utility telling if light passes through each cell: http://paulofmandown.github.io/rotLove/ ... rsive.html
You only have to feed a callback to the fov utility telling if light passes through each cell: http://paulofmandown.github.io/rotLove/ ... rsive.html
Re: Löve "Light vs. Shadow" Engine v2
Good evening everyone,
I'm using this library and seems everything is ok except for one thing...sometimes, the screen flickers, flashing in blue/violet. It works like this for the glows and ambient too. What am I doing wrong?
I'm using this library and seems everything is ok except for one thing...sometimes, the screen flickers, flashing in blue/violet. It works like this for the glows and ambient too. What am I doing wrong?
Re: Löve "Light vs. Shadow" Engine v2
Just out of curiosity but why do you draw normal maps/shadow objects like this:
And not this:
The only downside that I can see so far is that this will require the user to change their drawable offset ordinates to equal that of the shadow object. This allows for rotation and perhaps scaling if we assume that vectors are updated.
Note for rotation:
This doesn't quite work for rotation of the shadow(the one with self.ox and self.oy offsets) but it can be done by rotating the drawn polygon(by using love.graphics.rotate()). This is only a work-around as the vectors themselves need translating to update the tracking of the light source.
Code: Select all
love.graphics.draw(self.normalMesh, self.x - self.nx, self.y - self.ny)
Code: Select all
love.graphics.draw(self.normalMesh, self.x, self.y,self.rotation,1,1,self.nx,self.ny)
Note for rotation:
This doesn't quite work for rotation of the shadow(the one with self.ox and self.oy offsets) but it can be done by rotating the drawn polygon(by using love.graphics.rotate()). This is only a work-around as the vectors themselves need translating to update the tracking of the light source.
- drunken_thor
- Citizen
- Posts: 75
- Joined: Wed Oct 01, 2014 12:14 am
- Location: Toronto, Canada
- Contact:
Re: Löve "Light vs. Shadow" Engine v2
That is a good question, I think that is just something that I inherited from the old codebase that I never re-thought. I have thought about including rotations in body settings in the future as well and I guess I would have to address that when I do. I will take a look at the code tonight.Relazy wrote:Just out of curiosity but why do you draw normal maps/shadow objects like this:And not this:Code: Select all
love.graphics.draw(self.normalMesh, self.x - self.nx, self.y - self.ny)
The only downside that I can see so far is that this will require the user to change their drawable offset ordinates to equal that of the shadow object. This allows for rotation and perhaps scaling if we assume that vectors are updated.Code: Select all
love.graphics.draw(self.normalMesh, self.x, self.y,self.rotation,1,1,self.nx,self.ny)
Note for rotation:
This doesn't quite work for rotation of the shadow(the one with self.ox and self.oy offsets) but it can be done by rotating the drawn polygon(by using love.graphics.rotate()). This is only a work-around as the vectors themselves need translating to update the tracking of the light source.
- drunken_thor
- Citizen
- Posts: 75
- Joined: Wed Oct 01, 2014 12:14 am
- Location: Toronto, Canada
- Contact:
Re: Löve "Light vs. Shadow" Engine v2
Just an update, I pretty much implemented scaling and rotating of light bodies, there is just some inaccuracy in them so the object get slightly smaller if you rotate them and scaling does not match up with how love.graphics.draw scales so it will be a different size depending on the scale.
- soulaymenc
- Prole
- Posts: 36
- Joined: Thu Jul 11, 2013 2:03 pm
- Contact:
Who is online
Users browsing this forum: No registered users and 4 guests