| 33 |
public event RexAvatarProperties OnRexAvatarProperties; |
public event RexAvatarProperties OnRexAvatarProperties; |
| 34 |
|
|
| 35 |
public RexClientView(EndPoint remoteEP, IScene scene, AssetCache assetCache, |
public RexClientView(EndPoint remoteEP, IScene scene, AssetCache assetCache, |
| 36 |
LLPacketServer packServer, AgentCircuitManager authenSessions, UUID agentId, |
LLPacketServer packServer, AuthenticateResponse authenSessions, UUID agentId, |
| 37 |
UUID sessionId, uint circuitCode, EndPoint proxyEP, ClientStackUserSettings userSettings) |
UUID sessionId, uint circuitCode, EndPoint proxyEP, ClientStackUserSettings userSettings) |
| 38 |
: base(remoteEP, scene, assetCache, packServer, authenSessions, agentId, |
: base(remoteEP, scene, assetCache, packServer, authenSessions, agentId, |
| 39 |
sessionId, circuitCode, proxyEP, userSettings) |
sessionId, circuitCode, proxyEP, userSettings) |
| 42 |
} |
} |
| 43 |
|
|
| 44 |
public RexClientView(EndPoint remoteEP, IScene scene, AssetCache assetCache, |
public RexClientView(EndPoint remoteEP, IScene scene, AssetCache assetCache, |
| 45 |
LLPacketServer packServer, AgentCircuitManager authenSessions, UUID agentId, |
LLPacketServer packServer, AuthenticateResponse authenSessions, UUID agentId, |
| 46 |
UUID sessionId, uint circuitCode, EndPoint proxyEP, string rexAvatarURL, string rexAuthURL, ClientStackUserSettings userSettings) |
UUID sessionId, uint circuitCode, EndPoint proxyEP, string rexAvatarURL, string rexAuthURL, ClientStackUserSettings userSettings) |
| 47 |
: base(remoteEP, scene, assetCache, packServer, authenSessions, agentId, |
: base(remoteEP, scene, assetCache, packServer, authenSessions, agentId, |
| 48 |
sessionId, circuitCode, proxyEP, userSettings) |
sessionId, circuitCode, proxyEP, userSettings) |
| 141 |
SendRexScriptCommand("hud", "ShowInventoryMessage(\"" + message + "\")", ""); |
SendRexScriptCommand("hud", "ShowInventoryMessage(\"" + message + "\")", ""); |
| 142 |
} |
} |
| 143 |
|
|
| 144 |
|
public void SendRexScrollMessage(string message, double time) |
| 145 |
|
{ |
| 146 |
|
SendRexScriptCommand("hud", "ShowScrollMessage(\"" + message + "\", \"" + time + "\")", ""); |
| 147 |
|
} |
| 148 |
|
|
| 149 |
|
public void SendRexTutorialMessage(string message, double time) |
| 150 |
|
{ |
| 151 |
|
SendRexScriptCommand("hud", "ShowScrollMessage(\"" + message + "\", \"" + time + "\")", ""); |
| 152 |
|
} |
| 153 |
|
|
| 154 |
|
public void SendRexFadeInAndOut(string message, double between, double time) |
| 155 |
|
{ |
| 156 |
|
SendRexScriptCommand("hud", |
| 157 |
|
"ShowInventoryMessage(\"" + message + "\"," |
| 158 |
|
+ " \"" + between + "\", \"" + time + "\")", ""); |
| 159 |
|
} |
| 160 |
|
|
| 161 |
|
|
| 162 |
public void SendRexFaceExpression(List<string> expressionData) |
public void SendRexFaceExpression(List<string> expressionData) |
| 163 |
{ |
{ |
| 164 |
expressionData.Insert(0, AgentId.ToString()); |
expressionData.Insert(0, AgentId.ToString()); |