diff options
author | Justin Clarke Casey | 2008-05-07 14:15:59 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-05-07 14:15:59 +0000 |
commit | 382b9c18ed9736c88effb869e617ca3e3792d1db (patch) | |
tree | fa263f5a5c4ee035e156990679fa56a1880fcc3c /OpenSim/Framework | |
parent | De-tabify source. (diff) | |
download | opensim-SC_OLD-382b9c18ed9736c88effb869e617ca3e3792d1db.zip opensim-SC_OLD-382b9c18ed9736c88effb869e617ca3e3792d1db.tar.gz opensim-SC_OLD-382b9c18ed9736c88effb869e617ca3e3792d1db.tar.bz2 opensim-SC_OLD-382b9c18ed9736c88effb869e617ca3e3792d1db.tar.xz |
From: Alan M Webb <awebb@vnet.ibm.com>
The attached patch moves the sun module incrementally nearer where it
needs to be. Default behavior, i.e. no overriding configuration is to
match Second Life's diurnal/nocturnal rhythm.
All designated values are now sent to the client.There remain a couple
of unanswered questions about how this SHOULD be implemented though.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 9d86036..d71a778 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -832,7 +832,7 @@ namespace OpenSim.Framework | |||
832 | void SendDialog(string objectname, LLUUID objectID, LLUUID ownerID, string msg, LLUUID textureID, int ch, string[] buttonlabels); | 832 | void SendDialog(string objectname, LLUUID objectID, LLUUID ownerID, string msg, LLUUID textureID, int ch, string[] buttonlabels); |
833 | bool AddMoney(int debit); | 833 | bool AddMoney(int debit); |
834 | 834 | ||
835 | void SendSunPos(LLVector3 sunPos, LLVector3 sunVel); | 835 | void SendSunPos(LLVector3 sunPos, LLVector3 sunVel, ulong CurrentTime, uint SecondsPerSunCycle, uint SecondsPerYear, float OrbitalPosition); |
836 | void SendViewerTime(int phase); | 836 | void SendViewerTime(int phase); |
837 | 837 | ||
838 | void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, | 838 | void SendAvatarProperties(LLUUID avatarID, string aboutText, string bornOn, string charterMember, string flAbout, |