Advertisement
Enjl

Arrow Lift Settings

Jan 8th, 2020
656
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.24 KB | None | 0 0
  1. {
  2.     "style" : "groupbox",
  3.     "title" : "Arrow Lift Settings",
  4.     "layout": [
  5.         {
  6.             "control": "comboBox",
  7.             "name": "type",
  8.             "title": "Type",
  9.             "type": "int",
  10.             "tooltip": "What direction should the Ghost Platform travel?",
  11.             "value-default": 0,
  12.             "elements": ["Direction Cycle", "Up", "Left", "Right"]
  13.         },
  14.         {
  15.         "control" : "group",
  16.         "title" : "",
  17.         "name" : "..",
  18.         "children": [
  19.             {
  20.                 "control": "checkbox",
  21.                 "name": "override",
  22.                 "title": "Use Per-NPC Settings",
  23.                 "tooltip": "When checked, per-NPC settings will be used for these settings in place of NPC config values.",
  24.                 "text-visible": false,
  25.                 "value-default": false
  26.             },     
  27.             {
  28.                 "control": "spinBox",
  29.                 "type": "int",
  30.                 "name": "life",
  31.                 "title": "Life Time",
  32.                 "tooltip": "How many frames should the Ghost Platform live for? Set to 0 for infinite life time.",
  33.                 "value-default": 500,
  34.                 "value-min": 0,
  35.                 "value-max": 9999,
  36.                 "single-step": 1
  37.             },
  38.             {
  39.                 "control": "spinBox",
  40.                 "name": "speed",
  41.                 "title": "Speed",
  42.                 "type": "double",
  43.                 "tooltip": "How fast the Ghost Platform travels in pixels/frame.",
  44.                 "value-default": 1,
  45.                 "value-min": 1,
  46.                 "value-max": 999,
  47.                 "single-step": 0.01
  48.             }]
  49.         }
  50.     ]
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement