Removing terrain textures

Hello!

I have made some terrain as seen in the picture below,

Image

But my map I am creating is Low Poly, and I don’t really like that specific grass texture, is there anyway to remove that texture from the terrain? I made this terrain using the Terrain Editor.

(I used a little bit of the grass because I can’t give much away)

1 Like

Textures cannot be removed from terrain.

Is there any way to make terrain to part? I have seen plugins that can make parts to terrain, is there a plugin for terrain to part?
Incase you haven’t heard of the Part to Terrain plugin, Part to Terrain Plugin

Converting parts to terrain is a lot easier because the Terrain object has built-in methods to paint terrain over a given region. Just feeding those functions positions and materials can effectively “convert” parts into terrain voxels. Doing that backwards requires a bit more legwork.

I’ve never seen any plugin that does the reverse operation nor am I knowledgeable enough about Terrain API to give a clear answer there. The least I know is that it would require you to read all existing voxels of terrain and then create parts to fit. Refer to ReadVoxels for the function that you’d need to use in such an operation.