I tried the solution from RAB, but to no avail. I posted my response to that forums thread as well. I can only eliminate pink billboards for the Trees that I add to the WebPlayer startup scene terrain (1 of each tree type)... this is not workable, since each tree seems to add 0.5MB or so of size to my webplayer.
I need to know the answer to a low-level question then, I think -- I am supposing that the billboards render using a generated texture (but has no asset file associated with it). How do I access this generated texture? I would love to save it out and include it somehow as a bundle.
Use Case is this:
1. Artists make a beautiful Terrain and Environment -- all stored beneath a single top game object.
2. Artists make this object into a Prefab.
3. Artists build this Prefab into an Asset Bundle.
4. Run-time we load and instantiate this Asset Bundle.
5. It works perfectly -- except for the PINK TREE billboards! Critical defect!
Your problem is caused by using AssetBundles (as you mentioned in the comments).
Here’s a workaround for that bug:
Create a dummy object which uses a material with the missing Nature (billboard tree) shader. That way the shader for the billboard trees is not being ‘neglected’ by Unity when building an AssetBundle.
I am seeing the exact same defect, except for my pink trees are showing up for PC Deployment EXE only (while they look fine in Unity Editor).
It concerns me to see that it's been a month with no answer to this problem. This is a very critical bug for us, since our whole outdoor scene now looks very bad (pink trees everywhere!)
So I tried this new version, but it did not fix this problem.
Our temporary solution is to ruin our scene view by largely reducing Tree visibility and turning off the bill boarding feature. I sure hope Unity will fix this bug soon, so that we can restore our scene to looking like it's supposed to.
after you go through that, and get re-acquainted with how to put the trees in game. Your problem has to do with the material that you're using.
Click on the object in your project, in the inspector look for Shader
it should say diffuse, but you need to change that to Nature/Tree Soft Occlusion Bark or Nature Soft Occlusion Leaves otherwise the billboard affect happens.
There's another thing that they say that you need to do is put the tree into a folder containing the words "Ambient-Occlusion" so that Unity applies occlusion to your trees.