| 41 |
private string m_rexAuthURL; |
private string m_rexAuthURL; |
| 42 |
private string m_rexSkypeURL; |
private string m_rexSkypeURL; |
| 43 |
public string AvatarStorageOverride; |
public string AvatarStorageOverride; |
| 44 |
public float RexMovementSpeedMod; |
|
| 45 |
public bool RexWalkDisabled; |
public float RexCharacterSpeedMod = 1.0f; |
| 46 |
public bool RexFlyDisabled; |
public float RexMovementSpeedMod = 1.0f; |
| 47 |
|
public float RexVertMovementSpeedMod = 1.0f; |
| 48 |
|
public bool RexWalkDisabled = false; |
| 49 |
|
public bool RexFlyDisabled = false; |
| 50 |
|
public bool RexSitDisabled = false; |
| 51 |
|
|
| 52 |
public event RexAppearanceDelegate OnRexAppearance; |
public event RexAppearanceDelegate OnRexAppearance; |
| 53 |
public event RexFaceExpressionDelegate OnRexFaceExpression; |
public event RexFaceExpressionDelegate OnRexFaceExpression; |
| 334 |
} |
} |
| 335 |
} |
} |
| 336 |
|
|
| 337 |
internal void SendRexFog(float vStart, float vEnd, float vR, float vG, float vB) |
/// <summary> |
| 338 |
|
/// Sends Fog parameters to client. Only works underwater. |
| 339 |
|
/// </summary> |
| 340 |
|
/// <param name="start">meters from camera where the fog starts</param> |
| 341 |
|
/// <param name="end">meters from camera where the fog ends</param> |
| 342 |
|
/// <param name="red">redness in fog</param> |
| 343 |
|
/// <param name="green">greeness in fog</param> |
| 344 |
|
/// <param name="blue">blueness in fog</param> |
| 345 |
|
public void SendRexFog(float start, float end, float red, float green, float blue) |
| 346 |
{ |
{ |
| 347 |
throw new System.NotImplementedException(); |
List<string> pack = new List<string>(); |
| 348 |
|
|
| 349 |
|
pack.Add(start.ToString()); |
| 350 |
|
pack.Add(end.ToString()); |
| 351 |
|
pack.Add(red.ToString()); |
| 352 |
|
pack.Add(green.ToString()); |
| 353 |
|
pack.Add(blue.ToString()); |
| 354 |
|
|
| 355 |
|
SendGenericMessage("RexFog", pack); |
| 356 |
} |
} |
| 357 |
|
|
| 358 |
internal void SendRexWaterHeight(float vHeight) |
/// <summary> |
| 359 |
|
/// Sends water height to client. Usually used when changing water height on the fly with scripting. |
| 360 |
|
/// </summary> |
| 361 |
|
/// <param name="height">Water height in meters</param> |
| 362 |
|
public void SendRexWaterHeight(float height) |
| 363 |
{ |
{ |
| 364 |
throw new System.NotImplementedException(); |
List<string> pack = new List<string>(); |
| 365 |
|
|
| 366 |
|
pack.Add(height.ToString()); |
| 367 |
|
|
| 368 |
|
SendGenericMessage("RexWaterHeight", pack); |
| 369 |
} |
} |
| 370 |
|
|
| 371 |
internal void SendRexPostProcess(int vEffectId, bool vbToggle) |
internal void SendRexPostProcess(int vEffectId, bool vbToggle) |