Reputation: 401
Why color of image in sprites map changed to warm color like this. How I can turn it off. Thanks
Upvotes: 0
Views: 109
Reputation: 401
I found that Tilemap Renderer setting to custom material. I just change it to sprites-default.
Upvotes: 1
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