aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 4b95726..ad43316 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -933,6 +933,15 @@ namespace OpenSim.Framework
933 933
934 bool AddMoney(int debit); 934 bool AddMoney(int debit);
935 935
936 /// <summary>
937 /// Update the client as to where the sun is currently located.
938 /// </summary>
939 /// <param name="sunPos"></param>
940 /// <param name="sunVel"></param>
941 /// <param name="CurrentTime">Seconds since Unix Epoch 01/01/1970 00:00:00</param>
942 /// <param name="SecondsPerSunCycle"></param>
943 /// <param name="SecondsPerYear"></param>
944 /// <param name="OrbitalPosition">The orbital position is given in radians, and must be "adjusted" for the linden client, see LLClientView</param>
936 void SendSunPos(Vector3 sunPos, Vector3 sunVel, ulong CurrentTime, uint SecondsPerSunCycle, uint SecondsPerYear, 945 void SendSunPos(Vector3 sunPos, Vector3 sunVel, ulong CurrentTime, uint SecondsPerSunCycle, uint SecondsPerYear,
937 float OrbitalPosition); 946 float OrbitalPosition);
938 947