Reputation: 323
I know about Terrain
, but I can't rotate Terrain
for 90 degrees. So I need to paint on cube to different textures / materials with brush like on Terrain
. Is it possible? Unity 5.6.4p2.
Upvotes: 0
Views: 1150
Reputation: 334
Yes, you can paint on the textures using Texture2D.SetPixel()
(https://docs.unity3d.com/ScriptReference/Texture2D.SetPixel.html)
Upvotes: 1