Examples of OSDArray


Examples of com.ngt.jopenmetaverse.shared.structureddata.OSDArray

    /// Deserialize the message
    /// </summary>
    /// <param name="map">An <see cref="OSDMap"/> containing the data</param>
    public void Deserialize(OSDMap map)
    {
      OSDArray scriptArray = (OSDArray)map.get("Script");

      OSDMap scriptMap = (OSDMap)scriptArray.get(0);

      ItemID = scriptMap.get("ItemID").asUUID();
      Mono = scriptMap.get("Mono").asBoolean();
      ObjectID = scriptMap.get("ObjectID").asUUID();
      Running = scriptMap.get("Running").asBoolean();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.