Class RMTProperty

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

@NativeType("struct rmtProperty") public class RMTProperty extends Struct<RMTProperty> implements NativeResource
struct rmtProperty {
    rmtBool initialised;
    rmtPropertyType type;
    rmtPropertyFlags flags;
    rmtPropertyValue value;
    rmtPropertyValue lastFrameValue;
    rmtPropertyValue prevValue;
    rmtU32 prevValueFrame;
    char const * name;
    char const * description;
    rmtPropertyValue defaultValue;
    rmtProperty * parent;
    rmtProperty * firstChild;
    rmtProperty * lastChild;
    rmtProperty * nextSibling;
    rmtU32 nameHash;
    rmtU32 uniqueID;
}
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • INITIALISED

      public static final int INITIALISED
      The struct member offsets.
    • TYPE

      public static final int TYPE
      The struct member offsets.
    • FLAGS

      public static final int FLAGS
      The struct member offsets.
    • VALUE

      public static final int VALUE
      The struct member offsets.
    • LASTFRAMEVALUE

      public static final int LASTFRAMEVALUE
      The struct member offsets.
    • PREVVALUE

      public static final int PREVVALUE
      The struct member offsets.
    • PREVVALUEFRAME

      public static final int PREVVALUEFRAME
      The struct member offsets.
    • NAME

      public static final int NAME
      The struct member offsets.
    • DESCRIPTION

      public static final int DESCRIPTION
      The struct member offsets.
    • DEFAULTVALUE

      public static final int DEFAULTVALUE
      The struct member offsets.
    • PARENT

      public static final int PARENT
      The struct member offsets.
    • FIRSTCHILD

      public static final int FIRSTCHILD
      The struct member offsets.
    • LASTCHILD

      public static final int LASTCHILD
      The struct member offsets.
    • NEXTSIBLING

      public static final int NEXTSIBLING
      The struct member offsets.
    • NAMEHASH

      public static final int NAMEHASH
      The struct member offsets.
    • UNIQUEID

      public static final int UNIQUEID
      The struct member offsets.
  • Constructor Details

    • RMTProperty

      public RMTProperty(ByteBuffer container)
      Creates a RMTProperty instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details