NotePatch

open_in_new

GraphQL Schema definition

  • input NotePatch {
  • # The ID of the floor the note is on.
  • floorId: ID
  • # The ID of the room the note is in.
  • roomId: ID
  • # If this is set to false this note should not be shown
  • # by players.
  • enabled: Boolean
  • label: String
  • # A RGB hex string representing the highlight color for the note.
  • color: String
  • # The position of the note anchor.
  • anchorPosition: IPoint3D
  • # Whether or not to show a line from the anchor
  • # to the note icon.
  • # Default: true if stemNormal is specified, false otherwise.
  • stemEnabled: Boolean
  • # The normalized unit vector of the line from the note anchor
  • # to the note icon.
  • stemNormal: IPoint3D
  • # The length of the line from the note anchor
  • # to the note icon.
  • stemLength: Float
  • }