I've spent hours trying to find a way of creating a sphere planet object with terrain on it, such as grass thats effected but local wind, I found thats it not really possible to use unity's terrain tools on anything other than a plane.
What I'm trying to do Is find some sort of Fur shader, like Cinema4Ds shader, and use it to create grass on a sphere, What would be the best way to go around doing this??
We used the techniques found in GPU Gems Chapter 7 for rendering and animating grass in The SOL Game.
The basic idea is to do the actual grass animation on the GPU. In SOL the grass is distributed into clusters consisting of five transparent planes each. These clusters was manually positioned by the level designer. The planes was rendered using a custom shader that translates top vertices according to two sinusoids. The Cg code below shows how we did the animation in the vertex program.