* Tweak llMoveToTarget per mantis 3265

* Add some comments to the Wind Module
* Add the BinBVH decoder/encoder as a scene object (to encode/decode animations programmatically).
* Add m_sitState for upcoming code to improve sit results.
This commit is contained in:
Teravus Ovares
2009-03-09 04:33:53 +00:00
parent 6f4051c932
commit f9ebdee1d2
4 changed files with 734 additions and 5 deletions

View File

@@ -182,8 +182,8 @@ namespace OpenSim.Region.CoreModules
{
for (int x = 0; x < 16; x++)
{
windSpeeds[y * 16 + x].X = (float)(rndnums.NextDouble() * 2d - 1d);
windSpeeds[y * 16 + x].Y = (float)(rndnums.NextDouble() * 2d - 1d);
windSpeeds[y * 16 + x].X = (float)(rndnums.NextDouble() * 2d - 1d); // -1 to 1
windSpeeds[y * 16 + x].Y = (float)(rndnums.NextDouble() * 2d - 1d); // -1 to 1
}
}
}