Rico Nguyen
Rico Nguyen

Reputation: 401

Unity 2D Game Kit image changed to warm color?

Why color of image in sprites map changed to warm color like this. How I can turn it off. Thanks

enter image description here

Upvotes: 0

Views: 109

Answers (2)

Rico Nguyen
Rico Nguyen

Reputation: 401

I found that Tilemap Renderer setting to custom material. I just change it to sprites-default.

Upvotes: 1

Ignacio Alorre
Ignacio Alorre

Reputation: 7605

Try to change the ambient light of the scene. you can read about this in the following tutorial.

https://unity3d.com/learn/tutorials/topics/graphics/ambient-lighting

You can add somewhere in your code:

public class ExampleClass : MonoBehaviour {
    void Example() {
        RenderSettings.ambientLight = //here the color you consider
    }
}

Upvotes: 0

Related Questions