- Support specifying URL in loginParameters for connecting to OpenSim
- Patch some miscellaneous OpenSim related glitches - Add waitForRegionHandshake function - Add a concurrent promise queue - Fix xml writing of Vector3s - Fix asset downloading on grids without HTTP assets - Fix buildObject to properly orientate prims - Wrangled with CreateSelected all day and it turned out to be an OpenSim bug - LinkFrom function for faster linking - Updated LLSD library to fix LLMesh decoding
This commit is contained in:
@@ -107,6 +107,9 @@ export class Region
|
||||
terrainHeightRange10: number;
|
||||
terrainHeightRange11: number;
|
||||
|
||||
handshakeComplete = false;
|
||||
handshakeCompleteEvent: Subject<void> = new Subject<void>();
|
||||
|
||||
circuit: Circuit;
|
||||
objects: IObjectStore;
|
||||
caps: Caps;
|
||||
@@ -1170,6 +1173,8 @@ export class Region
|
||||
};
|
||||
}
|
||||
}
|
||||
this.handshakeComplete = true;
|
||||
this.handshakeCompleteEvent.next();
|
||||
}
|
||||
shutdown()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user