Anyland Thing Structure

When exporting a Thing you created in Anyland (via the backside Export button of the Thing context dialog), it will save an OBJ (Object), MAT (Material) and JSON file. The Json uses the following format (subject to change). Please note spaces are only added for readability, and omitted in the actual Json to ensure smallest possible file size.

{
    "n": "wooden table", // thing name
    "a": [1, 2, 5], // thing attributes
    "d": ..., // an optional description of up to 200 characters
    "inc": [ ["some name", "id123"], ["some name", "id123"], ... ], // inluded name-ids for emits and more
    "v": [7], // thing version 
    
    "tp_m": ..., // thing physics mass
    "tp_d": ..., // thing physics drag
    "tp_ad": ..., // thing physics angular drag
    "tp_lp": ..., // thing physics lock position
    "tp_lr": ..., // thing physics lock rotation


    "p": [ // parts
        {
            "b": 1, // base shape type
            "t": 2, // material type
            "a": [1, 2, 5], // thing part attributes
            "n": ..., // an optional part name of up to 100 characters,
                      // also useful for additional export/ import info

            "id": ..., // optional unique part identifier

            "e": "abc", // text
            "lh": ..., // text line height

            "i": [ // included sub-things
                {
                    "t": ..., // thing id of sub-thing
                    "p": ..., // relative position
                    "r": ..., // relative rotation
                    "n": ..., // optional name override
                    "a": [...], // optional attributes to invert, e.g. uncollidable
                },
                {
                    // next included sub-thing
                }
            ],
            
            "su": [ // placed sub-things, referring to area placements
                {
                    "i": ..., // placement id
                    "t": ..., // thing id
                    "p": ..., // position
                    "r": ... // rotation
                },
                {
                    // next placed sub-thing
                }
            ],
            
            "im": ..., // image URL (from Steam and other whitelisted sources)
            "imt": ..., // image type (if PNG instead of default JPG)

            "pr": ..., // particle system type
            
            "t1": ..., // texture type layer 1
            "t2": ..., // texture type layer 2
            
            "ac": { // auto-continuation/ auto-complete
                "id": ..., // thing part identifier reference
                "c": ..., // count
                "w": ..., // waves amount, if > 1
                "rp": ..., // position randomization factor
                "rr": ..., // rotation randomization factor
                "rs": ..., // scale randomization factor
            },
            
            "c": { // changed vertices
                ... //  see format description
            },

            "s": [ // states
                {
                    "p": [0.022, 0.012, 0.032], // position
                    "r": [0.021, 0.031, 0.031], // rotation
                    "s": [0.022, 0.021, 0.033], // scale
                    "c": [0.95, 0.21, 0.01], // color
                    "b": [ // behavior script lines
                        "when touched then play bing",
                        "when told foo then emit basketball, play munch"
                    ]
                },
                {
                    // next state...
                },
            ],
            
            "bod": [ // auto-attached body parts of head, optional auto-positioning of head
                "h": {p: [0.022, 0.012, 0.032], r: [0.021, 0.031, 0.031]}, // head position, rotation
                "ut": {i: "123", "p": [0.022, 0.012, 0.032], "r": [0.021, 0.031, 0.031]}, // upper torso id, position, rotation
                "lt": {...}, // lower torso
                "ll": {...}, // leg left (upper knee end of lower leg)
                "lr": {...}, // leg right (upper knee end of lower leg)
                "ht": {...}, // head top
                "al": {...}, // arm left
                "ar": {...}, // arm right
            ],
        },

        {
            // next part...
        },
    ],

}

Example

Here's a simple two-parts example. You can import it into Anyland by copying it to the clipboard, then pressing Ctrl+V on the main dialog (where it says "Create Thing"). Note when importing & saving, whitespace and returns will be removed.

{
    "n": "cyan purple x",
    "p":
    [
        {
            "b": 3,
            "s":
            [
                {
                    "p": [0.5, 0, 0],
                    "r": [45, 0, 0],
                    "s": [0.1, 0.8, 0.1],
                    "c": [0, 1, 1]
                }
            ]
        },
        
        {
            "b": 3,
            "s":
            [
                {
                    "p": [0.5, 0, 0],
                    "r": [-45, 0, 0],
                    "s": [0.1, 0.8, 0.1],
                    "c": [1, 0, 1]
                }
            ]
        }
    ]
}

Here's the same Json, but with comments:

{
    "n": "cyan purple x", // The optional name
    "p": // The parts array, we have 2 parts
    [
        {
            "b": 3, // The base shape 3, sphere
            "s": // The states array, we only have 1 state, no animations
            [
                {
                    "p": [0.5, 0, 0], // Position x y z
                    "r": [45, 0, 0], // Rotation x y z. Tilted 45 degrees
                    "s": [0.1, 0.8, 0.1], // Scale x y z. We stretch the up-down axis
                    "c": [0, 1, 1] // Colors red green blue, this is cyan
                }
            ]
        },
        
        // ... snip the other, purple part ...

    ]
}

When the web page is opened on an Anyland in-world browser, you can also use JavaScript commands to get and set the Thing Json.

Thing Part Base Types

public enum ThingPartBase {
    Cube = 1,
    Pyramid = 2,
    Sphere = 3,
    Cone = 4,
    Cylinder = 5,
    Triangle = 6,
    Trapeze = 7,
    Hedra = 8,
    Icosphere = 9,
    LowPolySphere = 10,
    Ramp = 11,
    JitterCube = 12,
    ChamferCube = 13,
    Spike = 14,
    LowPolyCylinder = 15,
    HalfSphere = 16,
    JitterSphere = 17,
    TextArialBold = 18,
    TextTimesBold = 19,
    TextArCena = 20,
    TextGeometr = 21,
    TextRockwell = 22,
    TextGillSans = 23,
    BigDialog = 25,
    QuarterPipe1 = 26,
    QuarterPipe2 = 27,
    QuarterPipe3 = 28,
    QuarterPipe4 = 29,
    QuarterPipe5 = 30,
    QuarterPipe6 = 31,
    QuarterTorus1 = 32,
    QuarterTorus2 = 33,
    QuarterTorus3 = 34,
    QuarterTorus4 = 35,
    QuarterTorus5 = 36,
    QuarterTorus6 = 37,
    CurvedRamp = 38,
    CubeRotated = 39,
    QuarterPipeRotated1 = 40,
    QuarterPipeRotated2 = 41,
    QuarterPipeRotated3 = 42,
    QuarterPipeRotated4 = 43,
    QuarterPipeRotated5 = 44,
    QuarterPipeRotated6 = 45,
    QuarterTorusRotated1 = 46,
    QuarterTorusRotated2 = 47,
    QuarterTorusRotated3 = 48,
    QuarterTorusRotated4 = 49,
    QuarterTorusRotated5 = 50,
    QuarterTorusRotated6 = 51,
    Hexagon = 52,
    HexagonBevel = 53,
    Ring1 = 54,
    Ring2 = 55,
    Ring3 = 56,
    Ring4 = 57,
    Ring5 = 58,
    Ring6 = 59,
    CubeBevel1 = 60,
    CubeBevel2 = 61,
    CubeBevel3 = 62,
    Triangle2 = 63,
    HalfCylinder = 64,
    QuarterCylinder = 65,
    QuarterSphere = 66,
    SphereEdge = 67,
    RoundCube = 68,
    Capsule = 69,
    Heptagon = 70,
    Pentagon = 71,
    Octagon = 72,
    HighPolySphere = 73,
    Bowl1 = 74,
    Bowl2 = 75,
    Bowl3 = 76,
    Bowl4 = 77,
    Bowl5 = 78,
    Bowl6 = 79,
    BowlCube = 80,
    QuarterBowlCube = 81,
    CubeHole = 82,
    HalfCubeHole = 83,
    BowlCubeSoft = 84,
    QuarterBowlCubeSoft = 85,
    Bowl1Soft = 86,
    QuarterSphereRotated = 87,
    HalfBowlSoft = 88,
    QuarterBowlSoft = 89,
    TextOrbitron = 90,
    TextAlfaSlab = 91,
    TextAudioWide = 92,
    TextBangers = 93,
    TextBowlby = 94,
    TextCantata = 95,
    TextChewy = 96,
    TextComingSoon = 97,
    TextExo = 98,
    TextFredoka = 99,
    TextKaushan = 100,
    TextMonoton = 101,
    TextPatrick = 102,
    TextPirata = 103,
    TextShrikhand = 104,
    TextSpinnaker = 105,
    TextDiplomata = 106,
    TextHanalei = 107,
    TextJoti = 108,
    TextMedieval = 109,
    TextSancreek = 110,
    TextStalinist = 111,
    TextTradewinds = 112,
    TextBaloo = 113,
    TextBubbler = 114,
    TextCaesarDressing = 115,
    TextDhurjati = 116,
    TextFascinateInline = 117,
    TextFelipa = 118,
    TextInknutAntiqua = 119,
    TextKeania = 120,
    TextLakkiReddy = 121,
    TextLondrinaSketch = 122,
    TextLondrinaSolid = 123,
    TextMetalMania = 124,
    TextMolle = 125,
    TextRisque = 126,
    TextSarpanch = 127,
    TextUncialAntiqua = 128,
    Text256Bytes = 129,
    TextAeroviasBrasil = 130,
    TextAnitaSemiSquare = 131,
    TextBeefd = 132,
    TextCrackdown = 133,
    TextCreampuff = 134,
    TextDataControl = 135,
    TextEndor = 136,
    TextFreshMarker = 137,
    TextHeavyData = 138,
    TextPropaganda = 139,
    TextRobotoMono = 140,
    TextTitania = 141,
    TextTobagoPoster = 142,
    TextViafont = 143,
    Wheel = 144,
    Wheel2 = 145,
    Wheel3 = 146,
    Wheel4 = 147,
    WheelVariant = 148,
    Wheel2Variant = 149,
    JitterCubeSoft = 150,
    JitterSphereSoft = 151,
    LowJitterCube = 152,
    LowJitterCubeSoft = 153,
    JitterCone = 154,
    JitterConeSoft = 155,
    JitterHalfCone = 156,
    JitterHalfConeSoft = 157,
    JitterChamferCylinder = 158,
    JitterChamferCylinderSoft = 159,
    Gear = 160,
    GearVariant = 161,
    GearVariant2 = 162,
    GearSoft = 163,
    GearVariantSoft = 164,
    GearVariant2Soft = 165,
    Branch = 166,
    Bubbles = 167,
    HoleWall = 168,
    JaggyWall = 169,
    Rocky = 170,
    RockySoft = 171,
    RockyVerySoft = 172,
    Spikes = 173,
    SpikesSoft = 174,
    SpikesVerySoft = 175,
    WavyWall = 176,
    WavyWallVariant = 177,
    WavyWallVariantSoft = 178,
    Quad = 179,
    FineSphere = 180,
    Drop = 181,
    Drop2 = 182,
    Drop3 = 183,
    DropSharp = 184,
    DropSharp2 = 185,
    DropSharp3 = 186,
    Drop3Flat = 187,
    DropSharp3Flat = 188,
    DropCut = 189,
    DropSharpCut = 190,
    DropRing = 191,
    DropRingFlat = 192,
    DropPear = 193,
    DropPear2 = 194,
    Drop3Jitter = 195,
    DropBent = 196,
    DropBent2 = 197,
    SharpBent = 198,
    Tetrahedron = 199,
    Pipe = 200,
    Pipe2 = 201,
    Pipe3 = 202,
    ShrinkDisk = 203,
    ShrinkDisk2 = 204,
    DirectionIndicator = 205,
    Cube3x2 = 207,
    Cube4x2 = 208,
    Cube5x2 = 209,
    Cube6x2 = 210,
    Cube2x3 = 211,
    Cube3x3 = 212,
    Cube4x3 = 213,
    Cube5x3 = 214,
    Cube6x3 = 215,
    Cube2x4 = 216,
    Cube3x4 = 217,
    Cube4x4 = 218,
    Cube5x4 = 219,
    Cube6x4 = 220,
    Cube2x5 = 221,
    Cube3x5 = 222,
    Cube4x5 = 223,
    Cube5x5 = 224,
    Cube6x5 = 225,
    Cube6x6 = 226,
    Quad3x2 = 227,
    Quad4x2 = 228,
    Quad5x2 = 229,
    Quad6x2 = 230,
    Quad2x3 = 231,
    Quad3x3 = 232,
    Quad4x3 = 233,
    Quad5x3 = 234,
    Quad6x3 = 235,
    Quad2x4 = 236,
    Quad3x4 = 237,
    Quad4x4 = 238,
    Quad5x4 = 239,
    Quad6x4 = 240,
    Quad2x5 = 241,
    Quad3x5 = 242,
    Quad4x5 = 243,
    Quad5x5 = 244,
    Quad6x5 = 245,
    Quad6x6 = 246,
    Icosahedron = 247,
    Cubeoctahedron = 248,
    Dodecahedron = 249,
    Icosidodecahedron = 250,
    Octahedron = 251
};

>> Here's a download of the exported OBJ files at their default size.

Thing Attributes

public enum ThingAttribute {
    isClonable = 1,
    isHoldable = 2,
    remainsHeld = 3,
    isClimbable = 4,
    isPassable = 6,
    isUnwalkable = 5,
    doSnapAngles = 7,
    isBouncy = 9,
    currentlyUnused1 = 10,
    doShowDirection = 12,
    keepPreciseCollider = 13,
    doesFloat = 14,
    doesShatter = 15,
    isSticky = 16,
    isSlidy = 17,
    doSnapPosition = 18,
    amplifySpeech = 19,
    benefitsFromShowingAtDistance = 20,
    scaleAllParts = 21,
    doSoftSnapAngles = 22,
    doAlwaysMergeParts = 23,
    addBodyWhenAttached = 24,
    hasSurroundSound = 25,
    canGetEventsWhenStateChanging = 26,
    replacesHandsWhenAttached = 27,
    mergeParticleSystems = 28,
    isSittable = 29,
    smallEditMovements = 30,
    scaleEachPartUniformly = 31,
    snapAllPartsToGrid = 32,
    invisibleToUsWhenAttached = 33,
    replaceInstancesInArea = 34,
    addBodyWhenAttachedNonClearing = 35,
    avoidCastShadow = 36,
    avoidReceiveShadow = 37,
    omitAutoSounds = 38,
    omitAutoHapticFeedback = 39,
    keepSizeInInventory = 40,
    autoAddReflectionPartsSideways = 41,
    autoAddReflectionPartsVertical = 42,
    autoAddReflectionPartsDepth = 43,
    activeEvenInInventory = 44,
    stricterPhysicsSyncing = 45,
    removeOriginalWhenGrabbed = 46,
    persistWhenThrownOrEmitted = 47,
    invisible = 48,
    uncollidable = 49,
    movableByEveryone = 50,
    isNeverClonable = 51,
    floatsOnLiquid = 52,
    
    hideEffectShapes_deprecated = 8
};

Thing Part Attributes

public enum ThingPartAttribute {
    offersScreen = 1,
    scalesUniformly = 3,
    videoScreenHasSurroundSound = 4,
    isLiquid = 5,
    offersSlideshowScreen = 6,
    isCamera = 8,
    isFishEyeCamera = 10,
    useUnsoftenedAnimations = 11,
    invisible = 12,
    isUnremovableCenter = 13,
    omitAutoSounds = 14,
    doSnapTextureAngles = 15,
    textureScalesUniformly = 16,
    avoidCastShadow = 17,
    looselyCoupledParticles = 18,
    textAlignCenter = 19,
    textAlignRight = 20,
    isAngleLocker = 21,
    isPositionLocker = 22,
    isLocked = 23,
    avoidReceiveShadow = 24,
    isImagePasteScreen = 25,
    allowBlackImageBackgrounds = 26,
    videoScreenLoops = 27,
    videoScreenIsDirectlyOnMesh = 28,
    useTextureAsSky = 29,
    stretchSkydomeSeam = 30,
    subThingsFollowDelayed = 31,
    hasReflectionPartSideways = 32,
    hasReflectionPartVertical = 33,
    hasReflectionPartDepth = 34,
    videoScreenFlipsX = 35,
    persistStates = 36,
    uncollidable = 37,
    isDedicatedCollider = 38,
    
    // Deprecated as now possible via scripting,
    // will load but not save after clone-editing:
    isVideoButton = 2,
    isSlideshowButton = 7,
    isCameraButton = 9
};

Material Types

public enum MaterialTypes {
    None = 0,
    Metallic = 1,
    Glow = 2,
    PointLight = 3,
    SpotLight = 4,
    Particles = 5,
    ParticlesBig = 6,
    Transparent = 7,
    Plastic = 9,
    Unshiny = 10,
    VeryMetallic = 11,
    DarkMetallic = 12,
    BrightMetallic = 13,
    TransparentGlossy = 14,
    TransparentGlossyMetallic = 15,
    VeryTransparent = 16,
    VeryTransparentGlossy = 17,
    SlightlyTransparent = 18,
    Unshaded = 19,
    Inversion = 20,
    Brightness = 21,
    TransparentTexture = 22,
    
    InvisibleWhenDone_Deprecated = 8
};

Texture Types

public enum TextureType {
    None             = 0,
    Gradient         = 2,
    Geometry_Gradient = 161,
    WoodGrain         = 3,
    VoronoiPolys     = 4,
    WavyLines         = 5,
    VoronoiDots     = 6,
    PerlinNoise1     = 7,
    QuasiCrystal     = 8,
    PlasmaNoise     = 12,
    Pool            = 13,
    Bio             = 14,
    FractalNoise    = 15,
    LightSquares    = 16,
    Machine         = 17,
    SweptNoise      = 18,
    Abstract        = 19,
    Dashes          = 20,
    LayeredNoise    = 21,
    SquareRegress   = 22,
    Swirly          = 23,

    SideGlow         = 10,

    Ground_Spotty           = 24,
    Ground_SpottyBumpMap    = 25,
    Ground_LineBumpMap      = 26,
    Ground_SplitBumpMap     = 27,
    Ground_Wet              = 28,
    Ground_Rocky            = 29,
    Ground_RockyBumpmap     = 30,
    Ground_Broken           = 31,
    Ground_BrokenBumpMap    = 32,
    Ground_Pebbles          = 33,
    Ground_PebblesBumpMap   = 34,
    Ground_1BumpMap         = 35,

    Misc_IceSoft            = 11,
    Misc_CrackedIce         = 36,
    Misc_CrackedGround      = 37,
    Misc_LinesPattern       = 38,
    Misc_StoneGround        = 39,
    Misc_Lava               = 40,
    Misc_LavaBumpMap        = 41,
    Misc_StraightIce        = 42,
    Misc_CrackedIce2        = 43,
    Misc_Shades             = 44,
    Misc_Cork               = 45,
    Misc_Wool               = 46,
    Misc_Salad              = 47,
    Misc_CrossLines         = 48,
    Misc_Holes              = 49,
    Misc_Waves              = 50,
    Misc_WavesBumpMap       = 51,
    Misc_1                  = 155,
    Misc_1BumpMap           = 52,
    Misc_2                  = 53,
    Misc_2BumpMap           = 54,
    Misc_3                  = 55,
    Misc_3BumpMap           = 56,
    Misc_SoftNoise          = 57,
    Misc_SoftNoiseBumpMap   = 58,
    Misc_SoftNoiseBumpMapVariant    = 157,
    Misc_Stars              = 59,
    Misc_StarsBumpMap       = 60,
    Misc_CottonBalls        = 61,
    Misc_4                  = 62,
    Misc_4BumpMap           = 63,
    Misc_5                  = 64,
    Misc_5BumpMap           = 65,
    Misc_Glass              = 66,
    
    Geometry_Circle_1               = 67,
    Geometry_Circle_2               = 68,
    Geometry_Circle_3               = 69,
    Geometry_Half                   = 70,
    Geometry_TiltedHalf             = 71,
    Geometry_Pyramid                = 72,
    Geometry_Dots                   = 73,
    Geometry_MultiGradient          = 74,
    Geometry_Wave                   = 75,
    Geometry_Checkerboard           = 76,
    Geometry_CheckerboardBumpMap    = 77,
    Geometry_Lines                  = 78,
    Geometry_LinesBumpMap           = 79,
    Geometry_DoubleGradient         = 80,
    Geometry_Rectangles             = 81,
    Geometry_RectanglesBumpMap      = 82,
    Geometry_Border_1               = 156,
    Geometry_Border_2               = 83,
    Geometry_Border_3               = 84,
    Geometry_Border_4               = 85,
    Geometry_Border_2BumpMap        = 86,
    Geometry_Circle_2BumpMap        = 87,
    Geometry_Lines2                 = 88,
    Geometry_Lines2Blurred          = 89,
    Geometry_RoundBorder            = 90,
    Geometry_RoundBorder2           = 91,
    Geometry_RoundBorderBumpMap     = 92,
    Geometry_Line_1                 = 93,
    Geometry_Line_2                 = 94,
    Geometry_Line_3                 = 95,
    Geometry_Line_2BumpMap          = 96,
    Geometry_Octagon_1              = 97,
    Geometry_Octagon_2              = 98,
    Geometry_Octagon_3              = 99,
    Geometry_Hexagon                = 100,
    Geometry_Hexagon2               = 101,
    Geometry_Hexagon2BumpMap        = 102,
    
    Metal_1     = 103,
    Metal_2     = 104,
    Metal_Wet   = 105,
    
    Marble_1    = 106,
    Marble_2    = 107,
    Marble_3    = 108,

    Tree_1BumpMap   = 109,
    Tree_2          = 110,
    Tree_3          = 111,
    Tree_4          = 112,

    Grass_4         = 113,
    Grass_4BumpMap  = 114,
    Grass_3         = 115,
    Grass_3BumpMap  = 116,
    Grass_2         = 117,
    Grass_1         = 119,
    Grass_1BumpMap  = 120,
    Grass_2BumpMap  = 118,
    Grass_5         = 121,
    Grass_5BumpMap  = 122,
    Grass_6BumpMap  = 123,
    
    Wall_1                      = 124,
    Wall_1BumpMap               = 125,
    Wall_2                      = 126,
    Wall_2BumpMap               = 127,
    Wall_3BumpMap               = 128,
    Wall_Rocky                  = 129,
    Wall_RockyBumpMap           = 130,
    Wall_Freckles               = 131,
    Wall_FrecklesBumpMap        = 132,
    Wall_Freckles2              = 133,
    Wall_Freckles2BumpMap       = 134,
    Wall_Scratches              = 135,
    Wall_ScratchesBumpMap       = 136,
    Wall_Mossy                  = 137,
    Wall_MossyBumpMap           = 138,
    Wall_Wavy                   = 139,
    Wall_WavyBumpMap            = 140,
    Wall_Lines                  = 141,
    Wall_LinesBumpMap           = 142,
    Wall_Lines2                 = 143,
    Wall_Lines2BumpMap          = 144,
    Wall_Lines3                 = 145,
    Wall_Lines3BumpMap          = 146,
    Wall_ScratchyLines          = 147,
    Wall_ScratchyLinesBumpMap   = 148,

    Cloth_1         = 149,
    Cloth_2         = 150,
    Cloth_2BumpMap  = 151,
    Cloth_3         = 152,
    Cloth_4         = 153,
    Cloth_4BumpMap  = 154,
    
    Geometry_RadialGradient = 158,
    Geometry_MoreLines      = 159,
    Geometry_MoreRectangles = 160,
    
    Filled = 162,
    
    Vertex_Scatter = 163,
    Vertex_Expand  = 165,
    Vertex_Slice   = 166,
    
    Wireframe = 167,
    Outline = 168
};

Thing Versions

Some older objects have different functionality which is still supported for backwards compatibility. As soon as an object is edited & re-saved, it will jump to the current latest thing version. A missing version field means version 1.

1:
To emulate an old bug-used-as-feature-by-people behavior, for downwards-compatibility reasons, "send nearby" commands of things saved at this version are treated to mean "send one nearby" when part of emitted or thrown items stuck to someone.

2:
If the thingPart includes an image, the material will be forced to become default and white (and black during loading). In version 3+ it will be left as is, and e.g. glowing becomes a glowing image, and thingPart colors are being respected.

3:
The default font material in version 4+ is non-glowing. Version 3- fonts will take on the glow material.

4:
In version 4-, bouncy & slidy for thrown/ emitted things were both selectable, but mutually exclusive in effect (defaulting on bouncy). Since v5+ they mix.

5:
In version 5-, "tell web" and "tell any web" didn't exist as special tell scope commands, so they will be understood as being tell/ tell any with "web" as data.

6:
In version 6-, one unit of the "set constant rotation" command equals 10 rotation degrees (instead of 1 in later version).

7:
In version 8, the "tell in front" and "tell first in front" commands were added. In version 7-, "in front"/ "first in front" are considered normal tell data text.

8:
As of version 9, sounds played via the Loop command adhere to the Thing's Surround Sound attribute. In version 8-, that setting was ignored.

9:
The current thing version.

Image Type

public enum ImageType {
    Jpeg = 0,
    Png = 1
}

Particle System Type

public enum ParticleSystemType {
    None = 0,
    Flares = 1,
    Twinkle = 2,
    Clouds = 3,
    GlowSpheres = 4,
    Fumes = 5,
    FumesDirected = 6,
    Rain = 7,
    GroundSmoke = 8,
    Ripples = 9,
    RipplesVertical = 10,
    TwisterPoints = 11,
    TwisterLines = 12,
    NoisyWater = 13,
    Bubbles = 14,
    Fire = 15,
    TwistedSmoke = 16,
    FireRain = 17,
    SmokeRain = 18,
    FireRainWild = 19,
    FireMore = 20,
    OrganicSplatter = 21,
    Rings = 22,
    FireCrackerBurst = 23,
    FireCrackerSmoke = 24,
    FireCrackerFlares = 25,
    Embers = 26,
    Beams = 27,
    BeamsCustom = 28,
    Dust = 29,
    Fog = 30,
    AreaEmbers = 31,
    Rays = 32,
    ScatterRays = 33,
    CenteredElectric = 34,
    Smoke = 35,
    CircularSmoke = 36,
    CircularSmokeCustom = 37,
    Shards = 38,
    RoughShards = 39,
    FireThrow = 40,
    SoftFire = 41,
    SpiralSmoke = 42,
    TwisterSmoke = 43,
    ShrinkSmoke = 44,
    ThickSmoke = 45,
    PopSmoke = 46,
    PlopSmoke = 47,
    LightStreaks = 48,
    Fractals = 49,
    WaterFlow = 50,
    WaterFlowSoft = 51,
    StoppingEmbers = 52,
    Sparks = 53,
    Puffs = 54,
    Flame = 55,
    FlameCustom = 56,
    SoftSmoke = 57,
    Starry = 58,
    BubblingBlobs = 59,
    Spheres = 60
};

Changed Vertices

Changed vertices are saved in a structure like this:

"c": [ [x, y, z, relative index 1, relative index 2, ...], ... ]

e.g.

"c": [ [1.052, -0.003, 0.025, 1001, 4, ...], ... ]

X, y and z are the vertices' new position. For any object <= 10m at its biggest axis, these coordinates are rounded to 3 digits for Json file size optimization. As usual, the spaces in above are added for readability here, and omitted in the actual file.

Following the coordinates are the indexes, but for file size optimization, they are only referring to their relative offset to the last index. So if 1001 is the first but 1005 is the second index, we shorten to "1001, 4" (i.e. 1005 - 1001 = 4).

We also have these properties:

"sa": ..., // smoothing angle
"cx": ..., // convex (true: 1, false: 0)

If the same changed-vertices (including the same smoothing angle and convex setting) are used across several parts in the thing, for size optimization we don't re-include the full data, but simply refer to the other part using its zero-based index within the thing parts array order, e.g.:

"v": 3

Also see: Area Format