Change how a 2D light interacts with GameObjectsThe fundamental object in Unity scenes, which can represent characters, props, scenery, cameras, waypoints, and more. A GameObject’s functionality is defined by the Components attached to it. More info
See in Glossary and other 2D lights.
To configure how Unity blends 2D light with the colors of 2D GameObjects, set the Blend Style property of the 2D light.
Note: Each different blend style you use creates a new light render textureA special type of Texture that is created and updated at runtime. To use them, first create a new Render Texture and designate one of your Cameras to render into it. Then you can use the Render Texture in a Material just like a regular Texture. More info
See in Glossary, which can reduce performance. The best practice is to use only one or two different blend styles in a sceneA Scene contains the environments and menus of your game. Think of each unique Scene file as a unique level. In each Scene, you place your environments, obstacles, and decorations, essentially designing and building your game in pieces. More info
See in Glossary.
By default, when lights overlap, Unity blends them together by adding the colors together.
To change the amount of blending, set Overlap Operation to Alpha Blend and use the alpha value of the Color property to set the blend amount.
If you set the alpha value to 0, Unity doesn’t blend the lights, so one completely overlaps the other. To control which light appears in front, use the Light Order property.