@etothepii/satisfactory-file-parser
    Preparing search index...

    Type Alias AbstractBaseProperty

    present in late 1.1 saves and later. more precisely describes the "type" of property than just the "type" field.

    property name

    denotes the GUID info of this property, i think there never was one observed. they always were not defined.

    index of a property, in case it is part of an array (NOT to confuse with ArrayProperty).

    if the property could not be parsed, it fills the rawBytes array instead.

    type AbstractBaseProperty = {
        flags?: number;
        index?: number;
        name: string;
        propertyGuid?: GUID;
        propertyTagType: FPropertyTagNode;
        rawBytes?: number[];
        structGuid?: GUID;
        type: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    flags?: number
    index?: number
    name: string
    propertyGuid?: GUID
    propertyTagType: FPropertyTagNode
    rawBytes?: number[]
    structGuid?: GUID
    type: string