Skip to content

@lands.io/mod-sdk / ModHudV1Panel

Interface: ModHudV1Panel

Table of contents

Properties

Properties

actions

Optional actions: ModHudV1Action[]


body

body: string


bullets

Optional bullets: string[]


checklistItems

Optional checklistItems: ModHudV1ChecklistItem[]


id

id: string


media

Optional media: ModHudV1MediaVideo


showForPlayerId

Optional showForPlayerId: string


style

Optional style: ModHudV1PanelStyle


title

Optional title: string


titleAction

Optional titleAction: ModHudV1Action


Source Code

View full implementation
export interface ModHudV1Panel {
  id: string;
  title?: string;
  titleAction?: ModHudV1Action;
  body: string;
  bullets?: string[];
  checklistItems?: ModHudV1ChecklistItem[];
  actions?: ModHudV1Action[];
  showForPlayerId?: PlayerID;
  media?: ModHudV1Media;
  style?: ModHudV1PanelStyle;
}