Swaying trees on iPhone?

Hello, I am wondering if it is possible to get trees I add as GameObjects in Unity Iphone to sway similarly to the way they do when added with the terrain editor in regular Unity. I'm assuming I would have to create some animation, but I haven't the slightest clue on how to begin doing something like that.

Any help is appreciated, Thank you!

In addition to what @Jaap Kreijkamp and @Paulius Liekis are saying -

Create a bone rig and skin your tree mesh to it. Use as few bones as possible, as the large trunk and thicker branches most likely will not bend unless it's hurricane-grade wind.

The most efficient way to animate things on the iPhone is via animation clips (as per performance tests by the creator of Zombieville USA).

Additionally, yo make it as efficient as possible you want to make sure that your tree's all have a shared material so that batching will come in and clean up some draw calls.

Unity iPhone does not support animation culling so you may want to take it into consideration that even trees outside of the camera's frustum will continue to update their animation even when not rendered.

Hope that helps.

==

The easiest way to have them just animated, but other solution is to just give them bones and have them updated through code (if you've got many trees this could impact performance). The animation could be kept simple by having only a few bones for the stem, but depending on the kind of leaves you have it would work better to have a few bones for the leaves as well to have them sway independently from the stem. Keep the movement subtle, so it's less obvious it's an repeating animation. To improve the realism of the effect you could start animation based on position (so for example, add an `transform.postion.x * windspeed` delay before starting the animation).

It's done using one bend-matrix per tree and shaders in regular Unity. You can't use such complicated shaders on iPhone, but you could skin your tree to two bones and then control them either using animation or manually. But in reality I doubt that you can do that - 10-15 trees it will eat all you processing time on iPhone ;) I wouldn't do that unless the trees are main characters in the game ;)