I am looking to make a sandbox game in unity, but I can’t find a system allowing players to create terrain, only scripts to make explosions blow holes in the terrain. I don’t know if this is even possible, but If someone could give me a script or point me in the right direction, I would appreciate it, and thanks in advance!
do you mean you want to make mountains, and you want to edit a terrain made from planes? if you get any script that makes holes in the terrain, and look where it does vertex += new height value; , just make it the inverse and the holes will be mountains and can go from there. if you want to make more complicated than a plane terrain you have to use marching cubes, which isn’t that easy to code with when you’re making it custom as a beginner project.