_schema.json 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "$id": "https://ryujinx.org/_schema/config.json",
  4. "type": "object",
  5. "title": "Ryujinx Configuration Schema",
  6. "required": [
  7. "graphics_shaders_dump_path",
  8. "logging_enable_debug",
  9. "logging_enable_stub",
  10. "logging_enable_info",
  11. "logging_enable_warn",
  12. "logging_enable_error",
  13. "logging_enable_guest",
  14. "logging_enable_fs_access_log",
  15. "logging_filtered_classes",
  16. "enable_file_log",
  17. "system_language",
  18. "system_region",
  19. "docked_mode",
  20. "enable_vsync",
  21. "enable_ptc",
  22. "enable_fs_integrity_checks",
  23. "fs_global_access_log_mode",
  24. "enable_keyboard",
  25. "keyboard_config",
  26. "controller_config"
  27. ],
  28. "definitions": {
  29. "key": {
  30. "type": "string",
  31. "enum": [
  32. "ShiftLeft",
  33. "LShift",
  34. "ShiftRight",
  35. "RShift",
  36. "ControlLeft",
  37. "LControl",
  38. "ControlRight",
  39. "RControl",
  40. "AltLeft",
  41. "LAlt",
  42. "AltRight",
  43. "RAlt",
  44. "WinLeft",
  45. "LWin",
  46. "WinRight",
  47. "RWin",
  48. "Menu",
  49. "F1",
  50. "F2",
  51. "F3",
  52. "F4",
  53. "F5",
  54. "F6",
  55. "F7",
  56. "F8",
  57. "F9",
  58. "F10",
  59. "F11",
  60. "F12",
  61. "F13",
  62. "F14",
  63. "F15",
  64. "F16",
  65. "F17",
  66. "F18",
  67. "F19",
  68. "F20",
  69. "F21",
  70. "F22",
  71. "F23",
  72. "F24",
  73. "F25",
  74. "F26",
  75. "F27",
  76. "F28",
  77. "F29",
  78. "F30",
  79. "F31",
  80. "F32",
  81. "F33",
  82. "F34",
  83. "F35",
  84. "Up",
  85. "Down",
  86. "Left",
  87. "Right",
  88. "Enter",
  89. "Escape",
  90. "Space",
  91. "Tab",
  92. "BackSpace",
  93. "Back",
  94. "Insert",
  95. "Delete",
  96. "PageUp",
  97. "PageDown",
  98. "Home",
  99. "End",
  100. "CapsLock",
  101. "ScrollLock",
  102. "PrintScreen",
  103. "Pause",
  104. "NumLock",
  105. "Clear",
  106. "Sleep",
  107. "Keypad0",
  108. "Keypad1",
  109. "Keypad2",
  110. "Keypad3",
  111. "Keypad4",
  112. "Keypad5",
  113. "Keypad6",
  114. "Keypad7",
  115. "Keypad8",
  116. "Keypad9",
  117. "KeypadDivide",
  118. "KeypadMultiply",
  119. "KeypadSubtract",
  120. "KeypadMinus",
  121. "KeypadAdd",
  122. "KeypadPlus",
  123. "KeypadDecimal",
  124. "KeypadPeriod",
  125. "KeypadEnter",
  126. "A",
  127. "B",
  128. "C",
  129. "D",
  130. "E",
  131. "F",
  132. "G",
  133. "H",
  134. "I",
  135. "J",
  136. "K",
  137. "L",
  138. "M",
  139. "N",
  140. "O",
  141. "P",
  142. "Q",
  143. "R",
  144. "S",
  145. "T",
  146. "U",
  147. "V",
  148. "W",
  149. "X",
  150. "Y",
  151. "Z",
  152. "Number0",
  153. "Number1",
  154. "Number2",
  155. "Number3",
  156. "Number4",
  157. "Number5",
  158. "Number6",
  159. "Number7",
  160. "Number8",
  161. "Number9",
  162. "Tilde",
  163. "Grave",
  164. "Minus",
  165. "Plus",
  166. "BracketLeft",
  167. "LBracket",
  168. "BracketRight",
  169. "RBracket",
  170. "Semicolon",
  171. "Quote",
  172. "Comma",
  173. "Period",
  174. "Slash",
  175. "BackSlash",
  176. "NonUSBackSlash",
  177. "LastKey"
  178. ]
  179. },
  180. "input": {
  181. "type": "string",
  182. "enum": [
  183. "Button0",
  184. "Button1",
  185. "Button2",
  186. "Button3",
  187. "Button4",
  188. "Button5",
  189. "Button6",
  190. "Button7",
  191. "Button8",
  192. "Button9",
  193. "Button10",
  194. "Button11",
  195. "Button12",
  196. "Button13",
  197. "Button14",
  198. "Button15",
  199. "Button16",
  200. "Button17",
  201. "Button18",
  202. "Button19",
  203. "Button20",
  204. "Axis0",
  205. "Axis1",
  206. "Axis2",
  207. "Axis3",
  208. "Axis4",
  209. "Axis5",
  210. "Hat0Up",
  211. "Hat0Down",
  212. "Hat0Left",
  213. "Hat0Right",
  214. "Hat1Up",
  215. "Hat1Down",
  216. "Hat1Left",
  217. "Hat1Right",
  218. "Hat2Up",
  219. "Hat2Down",
  220. "Hat2Left",
  221. "Hat2Right"
  222. ]
  223. },
  224. "keyboard_config": {
  225. "type": "object",
  226. "properties": {
  227. "index": {
  228. "$id": "#/definitions/keyboard_config/properties/index",
  229. "type": "integer",
  230. "title": "Keyboard Index",
  231. "description": "Keyboard Device Index",
  232. "default": 0,
  233. "minimum": 0,
  234. "examples": [
  235. 0,
  236. 1,
  237. 2
  238. ]
  239. },
  240. "controller_type": {
  241. "$id": "#/properties/keyboard_config/properties/controller_type",
  242. "type": "string",
  243. "title": "Controller Type",
  244. "default": "Handheld",
  245. "enum": [
  246. "Handheld",
  247. "ProController",
  248. "JoyconPair",
  249. "JoyconLeft",
  250. "JoyconRight"
  251. ],
  252. "examples": [
  253. "Handheld",
  254. "ProController",
  255. "JoyconPair",
  256. "JoyconLeft",
  257. "JoyconRight"
  258. ]
  259. },
  260. "player_index": {
  261. "$id": "#/properties/keyboard_config/properties/player_index",
  262. "type": "string",
  263. "title": "Player Index",
  264. "default": "Player1",
  265. "enum": [
  266. "Player1",
  267. "Player2",
  268. "Player3",
  269. "Player4",
  270. "Player5",
  271. "Player6",
  272. "Player7",
  273. "Player8",
  274. "Handheld"
  275. ]
  276. },
  277. "left_joycon": {
  278. "$id": "#/definitions/keyboard_config/properties/left_joycon",
  279. "type": "object",
  280. "title": "Left JoyCon Controls",
  281. "required": [
  282. "stick_up",
  283. "stick_down",
  284. "stick_left",
  285. "stick_right",
  286. "stick_button",
  287. "dpad_up",
  288. "dpad_down",
  289. "dpad_left",
  290. "dpad_right",
  291. "button_minus",
  292. "button_l",
  293. "button_zl"
  294. ],
  295. "properties": {
  296. "stick_up": {
  297. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/stick_up",
  298. "$ref": "#/definitions/key",
  299. "title": "Stick Up",
  300. "default": "w"
  301. },
  302. "stick_down": {
  303. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/stick_down",
  304. "$ref": "#/definitions/key",
  305. "title": "Stick Down",
  306. "default": "S"
  307. },
  308. "stick_left": {
  309. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/stick_left",
  310. "$ref": "#/definitions/key",
  311. "title": "Stick Left",
  312. "default": "A"
  313. },
  314. "stick_right": {
  315. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/stick_right",
  316. "$ref": "#/definitions/key",
  317. "title": "Stick Right",
  318. "default": "D"
  319. },
  320. "stick_button": {
  321. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/stick_button",
  322. "$ref": "#/definitions/key",
  323. "title": "Stick Button",
  324. "default": "F"
  325. },
  326. "dpad_up": {
  327. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/dpad_up",
  328. "$ref": "#/definitions/key",
  329. "title": "Dpad Up",
  330. "default": "Up"
  331. },
  332. "dpad_down": {
  333. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/dpad_down",
  334. "$ref": "#/definitions/key",
  335. "title": "Dpad Down",
  336. "default": "Down"
  337. },
  338. "dpad_left": {
  339. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/dpad_left",
  340. "$ref": "#/definitions/key",
  341. "title": "Dpad Left",
  342. "default": "Left"
  343. },
  344. "dpad_right": {
  345. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/dpad_right",
  346. "$ref": "#/definitions/key",
  347. "title": "Dpad Right",
  348. "default": "Right"
  349. },
  350. "button_minus": {
  351. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/button_minus",
  352. "$ref": "#/definitions/key",
  353. "title": "Button Minus",
  354. "default": "Minus"
  355. },
  356. "button_l": {
  357. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/button_l",
  358. "$ref": "#/definitions/key",
  359. "title": "Button L",
  360. "default": "E"
  361. },
  362. "button_zl": {
  363. "$id": "#/definitions/keyboard_config/properties/left_joycon/properties/button_zl",
  364. "$ref": "#/definitions/key",
  365. "title": "Button ZL",
  366. "default": "Q"
  367. }
  368. }
  369. },
  370. "right_joycon": {
  371. "$id": "#/definitions/keyboard_config/properties/right_joycon",
  372. "type": "object",
  373. "title": "Right JoyCon Controls",
  374. "required": [
  375. "stick_up",
  376. "stick_down",
  377. "stick_left",
  378. "stick_right",
  379. "stick_button",
  380. "button_a",
  381. "button_b",
  382. "button_x",
  383. "button_y",
  384. "button_plus",
  385. "button_r",
  386. "button_zr"
  387. ],
  388. "properties": {
  389. "stick_up": {
  390. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/stick_up",
  391. "$ref": "#/definitions/key",
  392. "title": "Stick Up",
  393. "default": "I"
  394. },
  395. "stick_down": {
  396. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/stick_down",
  397. "$ref": "#/definitions/key",
  398. "title": "Stick Down",
  399. "default": "K"
  400. },
  401. "stick_left": {
  402. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/stick_left",
  403. "$ref": "#/definitions/key",
  404. "title": "Stick Left",
  405. "default": "J"
  406. },
  407. "stick_right": {
  408. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/stick_right",
  409. "$ref": "#/definitions/key",
  410. "title": "Stick Right",
  411. "default": "L"
  412. },
  413. "stick_button": {
  414. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/stick_button",
  415. "$ref": "#/definitions/key",
  416. "title": "Stick Button",
  417. "default": "H"
  418. },
  419. "button_a": {
  420. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/button_a",
  421. "$ref": "#/definitions/key",
  422. "title": "Button A",
  423. "default": "Z"
  424. },
  425. "button_b": {
  426. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/button_b",
  427. "$ref": "#/definitions/key",
  428. "title": "Button B",
  429. "default": "X"
  430. },
  431. "button_x": {
  432. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/button_x",
  433. "$ref": "#/definitions/key",
  434. "title": "Button X",
  435. "default": "C"
  436. },
  437. "button_y": {
  438. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/button_y",
  439. "$ref": "#/definitions/key",
  440. "title": "Button Y",
  441. "default": "V"
  442. },
  443. "button_plus": {
  444. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/button_plus",
  445. "$ref": "#/definitions/key",
  446. "title": "Button Plus",
  447. "default": "Plus"
  448. },
  449. "button_r": {
  450. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/button_r",
  451. "$ref": "#/definitions/key",
  452. "title": "Button R",
  453. "default": "U"
  454. },
  455. "button_zr": {
  456. "$id": "#/definitions/keyboard_config/properties/right_joycon/properties/button_zr",
  457. "$ref": "#/definitions/key",
  458. "title": "Button Zr",
  459. "default": "O"
  460. }
  461. }
  462. },
  463. "enable_motion": {
  464. "$id": "#/definitions/keyboard_config/properties/enable_motion",
  465. "type": "boolean",
  466. "title": "Enable Motion Controls",
  467. "description": "Enables Motion Controls",
  468. "default": false,
  469. "examples": [
  470. true,
  471. false
  472. ]
  473. },
  474. "sensitivity": {
  475. "$id": "#/definitions/keyboard_config/properties/sensitivity",
  476. "type": "integer",
  477. "title": "Sensitivity",
  478. "description": "Gyro sensitivity",
  479. "default": 100,
  480. "minimum": 0,
  481. "maximum": 1000,
  482. "examples": [
  483. 90,
  484. 100,
  485. 150
  486. ]
  487. },
  488. "gyro_deadzone": {
  489. "$id": "#/definitions/keyboard_config/properties/gyro_deadzone",
  490. "type": "number",
  491. "title": "Gyro Deadzone",
  492. "description": "Controller Left Analog Stick Deadzone",
  493. "default": 1,
  494. "minimum": 0.00,
  495. "maximum": 100.00,
  496. "examples": [
  497. 0.01
  498. ]
  499. },
  500. "slot": {
  501. "$id": "#/definitions/keyboard_config/properties/slot",
  502. "type": "integer",
  503. "title": "Slot",
  504. "description": "DSU motion client slot for main controller",
  505. "default": 0,
  506. "minimum": 0,
  507. "maximum": 4,
  508. "examples": [
  509. 0,
  510. 1,
  511. 2,
  512. 3
  513. ]
  514. },
  515. "alt_slot": {
  516. "$id": "#/definitions/keyboard_config/properties/alt_slot",
  517. "type": "integer",
  518. "title": "Alternate Slot",
  519. "description": "DSU motion client slot for secondary controller, eg Right Joycon in Paired mode",
  520. "default": 0,
  521. "minimum": 0,
  522. "maximum": 4,
  523. "examples": [
  524. 0,
  525. 1,
  526. 2,
  527. 3
  528. ]
  529. },
  530. "mirror_input": {
  531. "$id": "#/definitions/keyboard_config/properties/mirror_input",
  532. "type": "boolean",
  533. "title": "Mirror Motion Input",
  534. "description": "Mirrors main motion input in Paired mode",
  535. "default": true,
  536. "examples": [
  537. true,
  538. false
  539. ]
  540. },
  541. "dsu_server_port": {
  542. "$id": "#/definitions/keyboard_config/properties/dsu_server_port",
  543. "type": "integer",
  544. "title": "DSU Server Port",
  545. "description": "DSU motion server port",
  546. "default": 26760,
  547. "minimum": 0,
  548. "maximum": 36654,
  549. "examples": [
  550. 0,
  551. 1,
  552. 2,
  553. 3
  554. ]
  555. },
  556. "dsu_server_host": {
  557. "$id": "#/definitions/keyboard_config/properties/dsu_server_host",
  558. "type": "string",
  559. "title": "DSU Server Host Address",
  560. "description": "DSU motion server host address",
  561. "default": "127.0.0.1",
  562. "examples": [
  563. "127.0.0.1",
  564. "example.host.com"
  565. ]
  566. }
  567. }
  568. },
  569. "controller_config": {
  570. "type": "object",
  571. "properties": {
  572. "index": {
  573. "$id": "#/definitions/controller_config/properties/index",
  574. "type": "integer",
  575. "title": "Controller Index",
  576. "description": "Controller Device Index",
  577. "default": 0,
  578. "minimum": 0,
  579. "examples": [
  580. 0,
  581. 1,
  582. 2
  583. ]
  584. },
  585. "controller_type": {
  586. "$id": "#/properties/controller_config/properties/controller_type",
  587. "type": "string",
  588. "title": "Controller Type",
  589. "default": "Handheld",
  590. "enum": [
  591. "Handheld",
  592. "ProController",
  593. "JoyconPair",
  594. "JoyconLeft",
  595. "JoyconRight"
  596. ],
  597. "examples": [
  598. "Handheld",
  599. "ProController",
  600. "JoyconPair",
  601. "JoyconLeft",
  602. "JoyconRight"
  603. ]
  604. },
  605. "player_index": {
  606. "$id": "#/properties/controller_config/properties/player_index",
  607. "type": "string",
  608. "title": "Player Index",
  609. "default": "Player1",
  610. "enum": [
  611. "Player1",
  612. "Player2",
  613. "Player3",
  614. "Player4",
  615. "Player5",
  616. "Player6",
  617. "Player7",
  618. "Player8",
  619. "Handheld"
  620. ]
  621. },
  622. "deadzone_left": {
  623. "$id": "#/definitions/controller_config/properties/deadzone_left",
  624. "type": "number",
  625. "title": "Left Joystick Deadzone",
  626. "description": "Controller Left Analog Stick Deadzone",
  627. "default": 0.05,
  628. "minimum": 0.00,
  629. "maximum": 1.00,
  630. "examples": [
  631. 0.05
  632. ]
  633. },
  634. "deadzone_right": {
  635. "$id": "#/definitions/controller_config/properties/deadzone_right",
  636. "type": "number",
  637. "title": "Right Joystick Deadzone",
  638. "description": "Controller Right Analog Stick Deadzone",
  639. "default": 0.05,
  640. "minimum": 0.00,
  641. "maximum": 1.00,
  642. "examples": [
  643. 0.05
  644. ]
  645. },
  646. "trigger_threshold": {
  647. "$id": "#/definitions/controller_config/properties/trigger_threshold",
  648. "type": "number",
  649. "title": "Controller Trigger Threshold",
  650. "description": "The value of how pressed down each trigger has to be in order to register a button press",
  651. "default": 0.5,
  652. "minimum": 0.0,
  653. "maximum": 1.0,
  654. "examples": [
  655. 0.5
  656. ]
  657. },
  658. "left_joycon": {
  659. "$id": "#/definitions/controller_config/properties/left_joycon",
  660. "type": "object",
  661. "title": "Left JoyCon Controls",
  662. "required": [
  663. "stick",
  664. "stick_button",
  665. "dpad_up",
  666. "dpad_down",
  667. "dpad_left",
  668. "dpad_right",
  669. "button_minus",
  670. "button_l",
  671. "button_zl"
  672. ],
  673. "properties": {
  674. "stick": {
  675. "$id": "#/definitions/controller_config/properties/left_joycon/properties/stick",
  676. "$ref": "#/definitions/input",
  677. "title": "Stick",
  678. "default": "Axis0"
  679. },
  680. "stick_button": {
  681. "$id": "#/definitions/controller_config/properties/left_joycon/properties/stick_button",
  682. "$ref": "#/definitions/input",
  683. "title": "Stick Button",
  684. "default": "Button13"
  685. },
  686. "dpad_up": {
  687. "$id": "#/definitions/controller_config/properties/left_joycon/properties/dpad_up",
  688. "$ref": "#/definitions/input",
  689. "title": "Dpad Up",
  690. "default": "Hat0Up"
  691. },
  692. "dpad_down": {
  693. "$id": "#/definitions/controller_config/properties/left_joycon/properties/dpad_down",
  694. "$ref": "#/definitions/input",
  695. "title": "Dpad Down",
  696. "default": "Hat0Down"
  697. },
  698. "dpad_left": {
  699. "$id": "#/definitions/controller_config/properties/left_joycon/properties/dpad_left",
  700. "$ref": "#/definitions/input",
  701. "title": "Dpad Left",
  702. "default": "Hat0Left"
  703. },
  704. "dpad_right": {
  705. "$id": "#/definitions/controller_config/properties/left_joycon/properties/dpad_right",
  706. "$ref": "#/definitions/input",
  707. "title": "Dpad Right",
  708. "default": "Hat0Right"
  709. },
  710. "button_minus": {
  711. "$id": "#/definitions/controller_config/properties/left_joycon/properties/button_minus",
  712. "$ref": "#/definitions/input",
  713. "title": "Button Minus",
  714. "default": "Button10"
  715. },
  716. "button_l": {
  717. "$id": "#/definitions/controller_config/properties/left_joycon/properties/button_l",
  718. "$ref": "#/definitions/input",
  719. "title": "Button L",
  720. "default": "Button6"
  721. },
  722. "button_zl": {
  723. "$id": "#/definitions/controller_config/properties/left_joycon/properties/button_zl",
  724. "$ref": "#/definitions/input",
  725. "title": "Button ZL",
  726. "default": "Button8"
  727. }
  728. }
  729. },
  730. "right_joycon": {
  731. "$id": "#/definitions/controller_config/properties/right_joycon",
  732. "type": "object",
  733. "title": "Right JoyCon Controls",
  734. "required": [
  735. "stick",
  736. "stick_button",
  737. "button_a",
  738. "button_b",
  739. "button_x",
  740. "button_y",
  741. "button_plus",
  742. "button_r",
  743. "button_zr"
  744. ],
  745. "properties": {
  746. "stick": {
  747. "$id": "#/definitions/controller_config/properties/right_joycon/properties/stick",
  748. "$ref": "#/definitions/input",
  749. "title": "Stick",
  750. "default": "Axis2"
  751. },
  752. "stick_button": {
  753. "$id": "#/definitions/controller_config/properties/right_joycon/properties/stick_button",
  754. "$ref": "#/definitions/input",
  755. "title": "Stick Button",
  756. "default": "Button14"
  757. },
  758. "button_a": {
  759. "$id": "#/definitions/controller_config/properties/right_joycon/properties/button_a",
  760. "$ref": "#/definitions/input",
  761. "title": "Button A",
  762. "default": "Button0"
  763. },
  764. "button_b": {
  765. "$id": "#/definitions/controller_config/properties/right_joycon/properties/button_b",
  766. "$ref": "#/definitions/input",
  767. "title": "Button B",
  768. "default": "Button1"
  769. },
  770. "button_x": {
  771. "$id": "#/definitions/controller_config/properties/right_joycon/properties/button_x",
  772. "$ref": "#/definitions/input",
  773. "title": "Button X",
  774. "default": "Button3"
  775. },
  776. "button_y": {
  777. "$id": "#/definitions/controller_config/properties/right_joycon/properties/button_y",
  778. "$ref": "#/definitions/input",
  779. "title": "Button Y",
  780. "default": "Button4"
  781. },
  782. "button_plus": {
  783. "$id": "#/definitions/controller_config/properties/right_joycon/properties/button_plus",
  784. "$ref": "#/definitions/input",
  785. "title": "Button Plus",
  786. "default": "Button11"
  787. },
  788. "button_r": {
  789. "$id": "#/definitions/controller_config/properties/right_joycon/properties/button_r",
  790. "$ref": "#/definitions/input",
  791. "title": "Button R",
  792. "default": "Button7"
  793. },
  794. "button_zr": {
  795. "$id": "#/definitions/controller_config/properties/right_joycon/properties/button_zr",
  796. "$ref": "#/definitions/input",
  797. "title": "Button ZR",
  798. "default": "Button9"
  799. }
  800. }
  801. },
  802. "enable_motion": {
  803. "$id": "#/definitions/controller_config/properties/enable_motion",
  804. "type": "boolean",
  805. "title": "Enable Motion Controls",
  806. "description": "Enables Motion Controls",
  807. "default": false,
  808. "examples": [
  809. true,
  810. false
  811. ]
  812. },
  813. "sensitivity": {
  814. "$id": "#/definitions/controller_config/properties/sensitivity",
  815. "type": "integer",
  816. "title": "Sensitivity",
  817. "description": "Gyro sensitivity",
  818. "default": 100,
  819. "minimum": 0,
  820. "maximum": 1000,
  821. "examples": [
  822. 90,
  823. 100,
  824. 150
  825. ]
  826. },
  827. "gyro_deadzone": {
  828. "$id": "#/definitions/controller_config/properties/gyro_deadzone",
  829. "type": "number",
  830. "title": "Gyro Deadzone",
  831. "description": "Controller Left Analog Stick Deadzone",
  832. "default": 1,
  833. "minimum": 0.00,
  834. "maximum": 100.00,
  835. "examples": [
  836. 0.01
  837. ]
  838. },
  839. "slot": {
  840. "$id": "#/definitions/controller_config/properties/slot",
  841. "type": "integer",
  842. "title": "Slot",
  843. "description": "DSU motion client slot for main controller",
  844. "default": 0,
  845. "minimum": 0,
  846. "maximum": 4,
  847. "examples": [
  848. 0,
  849. 1,
  850. 2,
  851. 3
  852. ]
  853. },
  854. "alt_slot": {
  855. "$id": "#/definitions/controller_config/properties/alt_slot",
  856. "type": "integer",
  857. "title": "Alternate Slot",
  858. "description": "DSU motion client slot for secondary controller, eg Right Joycon in Paired mode",
  859. "default": 0,
  860. "minimum": 0,
  861. "maximum": 4,
  862. "examples": [
  863. 0,
  864. 1,
  865. 2,
  866. 3
  867. ]
  868. },
  869. "mirror_input": {
  870. "$id": "#/definitions/controller_config/properties/mirror_input",
  871. "type": "boolean",
  872. "title": "Mirror Motion Input",
  873. "description": "Mirrors main motion input in Paired mode",
  874. "default": true,
  875. "examples": [
  876. true,
  877. false
  878. ]
  879. },
  880. "dsu_server_port": {
  881. "$id": "#/definitions/controller_config/properties/dsu_server_port",
  882. "type": "integer",
  883. "title": "DSU Server Port",
  884. "description": "DSU motion server port",
  885. "default": 26760,
  886. "minimum": 0,
  887. "maximum": 36654,
  888. "examples": [
  889. 0,
  890. 1,
  891. 2,
  892. 3
  893. ]
  894. },
  895. "dsu_server_host": {
  896. "$id": "#/definitions/controller_config/properties/dsu_server_host",
  897. "type": "string",
  898. "title": "DSU Server Host Address",
  899. "description": "DSU motion server host address",
  900. "default": "127.0.0.1",
  901. "examples": [
  902. "127.0.0.1",
  903. "example.host.com"
  904. ]
  905. }
  906. }
  907. }
  908. },
  909. "properties": {
  910. "res_scale": {
  911. "$id": "#/properties/res_scale",
  912. "type": "integer",
  913. "title": "Resolution Scale",
  914. "description": "An integer scale applied to applicable render targets. Values 1-4, or -1 to use a custom floating point scale instead.",
  915. "default": -1,
  916. "examples": [
  917. -1,
  918. 1,
  919. 2,
  920. 3,
  921. 4
  922. ]
  923. },
  924. "res_scale_custom": {
  925. "$id": "#/properties/res_scale_custom",
  926. "type": "number",
  927. "title": "Custom Resolution Scale",
  928. "description": "A custom floating point scale applied to applicable render targets. Only active when Resolution Scale is -1.",
  929. "default": 1.0
  930. },
  931. "max_anisotropy": {
  932. "$id": "#/properties/max_anisotropy",
  933. "type": "integer",
  934. "title": "Max Anisotropy. Values range from 0 - 16. Set to -1 to let the game decide.",
  935. "description": "Max Anisotropy. Values range from 0 - 16. Set to -1 to let the game decide.",
  936. "default": -1,
  937. "examples": [
  938. -1,
  939. 4,
  940. 8,
  941. 16
  942. ]
  943. },
  944. "aspect_ratio": {
  945. "$id": "#/properties/aspect_ratio",
  946. "type": "string",
  947. "title": "Aspect Ratio applied to the renderer window.",
  948. "description": "Aspect Ratio applied to the renderer window.",
  949. "default": "Fixed16x9",
  950. "examples": [
  951. "Fixed4x3",
  952. "Fixed16x9",
  953. "Fixed16x10",
  954. "Fixed21x9",
  955. "Fixed32x9",
  956. "Stretched"
  957. ]
  958. },
  959. "graphics_shaders_dump_path": {
  960. "$id": "#/properties/graphics_shaders_dump_path",
  961. "type": "string",
  962. "title": "Graphics Shaders Dump Path",
  963. "description": "Dumps shaders in this local directory",
  964. "default": "",
  965. "examples": [
  966. "C:\\ShaderDumps"
  967. ]
  968. },
  969. "logging_enable_debug": {
  970. "$id": "#/properties/logging_enable_debug",
  971. "type": "boolean",
  972. "title": "Logging Enable Debug",
  973. "description": "Enables printing debug log messages",
  974. "default": false,
  975. "examples": [
  976. true,
  977. false
  978. ]
  979. },
  980. "logging_enable_stub": {
  981. "$id": "#/properties/logging_enable_stub",
  982. "type": "boolean",
  983. "title": "Logging Enable Stub",
  984. "description": "Enables printing stub log messages",
  985. "default": true,
  986. "examples": [
  987. true,
  988. false
  989. ]
  990. },
  991. "logging_enable_info": {
  992. "$id": "#/properties/logging_enable_info",
  993. "type": "boolean",
  994. "title": "Logging Enable Info",
  995. "description": "Enables printing info log messages",
  996. "default": true,
  997. "examples": [
  998. true,
  999. false
  1000. ]
  1001. },
  1002. "logging_enable_warn": {
  1003. "$id": "#/properties/logging_enable_warn",
  1004. "type": "boolean",
  1005. "title": "Logging Enable Warn",
  1006. "description": "Enables printing warning log messages",
  1007. "default": true,
  1008. "examples": [
  1009. true,
  1010. false
  1011. ]
  1012. },
  1013. "logging_enable_error": {
  1014. "$id": "#/properties/logging_enable_error",
  1015. "type": "boolean",
  1016. "title": "Logging Enable Error",
  1017. "description": "Enables printing error log messages",
  1018. "default": true,
  1019. "examples": [
  1020. true,
  1021. false
  1022. ]
  1023. },
  1024. "logging_enable_guest": {
  1025. "$id": "#/properties/logging_enable_guest",
  1026. "type": "boolean",
  1027. "title": "Logging Enable Guest",
  1028. "description": "Enables printing guest log messages",
  1029. "default": true,
  1030. "examples": [
  1031. true,
  1032. false
  1033. ]
  1034. },
  1035. "logging_enable_fs_access": {
  1036. "$id": "#/properties/logging_enable_fs_access_log",
  1037. "type": "boolean",
  1038. "title": "Logging Enable FS Access Log",
  1039. "description": "Enables printing FS access log messages",
  1040. "default": true,
  1041. "examples": [
  1042. true,
  1043. false
  1044. ]
  1045. },
  1046. "logging_filtered_classes": {
  1047. "$id": "#/properties/logging_filtered_classes",
  1048. "type": "array",
  1049. "title": "Logging Filtered Classes",
  1050. "description": "Controls which log messages are written to the log targets",
  1051. "items": {
  1052. "type": "string",
  1053. "enum": [
  1054. "Application",
  1055. "Audio",
  1056. "Cpu",
  1057. "Font",
  1058. "Emulation",
  1059. "Gpu",
  1060. "Hid",
  1061. "Kernel",
  1062. "KernelIpc",
  1063. "KernelScheduler",
  1064. "KernelSvc",
  1065. "Loader",
  1066. "Service",
  1067. "ServiceAcc",
  1068. "ServiceAm",
  1069. "ServiceApm",
  1070. "ServiceAudio",
  1071. "ServiceBsd",
  1072. "ServiceCaps",
  1073. "ServiceFriend",
  1074. "ServiceFs",
  1075. "ServiceHid",
  1076. "ServiceIrs",
  1077. "ServiceLdr",
  1078. "ServiceLm",
  1079. "ServiceMm",
  1080. "ServiceNfp",
  1081. "ServiceNifm",
  1082. "ServiceNs",
  1083. "ServiceNv",
  1084. "ServicePctl",
  1085. "ServicePl",
  1086. "ServicePrepo",
  1087. "ServicePsm",
  1088. "ServiceSet",
  1089. "ServiceSfdnsres",
  1090. "ServiceSm",
  1091. "ServiceSsl",
  1092. "ServiceSss",
  1093. "ServiceTime",
  1094. "ServiceVi"
  1095. ]
  1096. }
  1097. },
  1098. "enable_file_log": {
  1099. "$id": "#/properties/enable_file_log",
  1100. "type": "boolean",
  1101. "title": "Enable File Log",
  1102. "description": "Enables logging to a file on disk",
  1103. "default": true,
  1104. "examples": [
  1105. true,
  1106. false
  1107. ]
  1108. },
  1109. "system_language": {
  1110. "$id": "#/properties/system_language",
  1111. "type": "string",
  1112. "title": "System Language",
  1113. "description": "Change System Language",
  1114. "default": "AmericanEnglish",
  1115. "enum": [
  1116. "Japanese",
  1117. "AmericanEnglish",
  1118. "French",
  1119. "German",
  1120. "Italian",
  1121. "Spanish",
  1122. "Chinese",
  1123. "Korean",
  1124. "Dutch",
  1125. "Portuguese",
  1126. "Russian",
  1127. "Taiwanese",
  1128. "BritishEnglish",
  1129. "CanadianFrench",
  1130. "LatinAmericanSpanish",
  1131. "SimplifiedChinese",
  1132. "TraditionalChinese"
  1133. ],
  1134. "examples": [
  1135. "AmericanEnglish"
  1136. ]
  1137. },
  1138. "system_region": {
  1139. "$id": "#/properties/system_region",
  1140. "type": "string",
  1141. "title": "System Region",
  1142. "description": "Change System Region",
  1143. "default": "USA",
  1144. "enum": [
  1145. "Japan",
  1146. "USA",
  1147. "Europe",
  1148. "Australia",
  1149. "China",
  1150. "Korea",
  1151. "Taiwan"
  1152. ],
  1153. "examples": [
  1154. "USA"
  1155. ]
  1156. },
  1157. "system_time_offset": {
  1158. "$id": "#/properties/system_time_offset",
  1159. "type": "integer",
  1160. "title": "System Time Offset",
  1161. "description": "System time offset in seconds.",
  1162. "default": 0,
  1163. "examples": [
  1164. -3600,
  1165. 0,
  1166. 3600
  1167. ]
  1168. },
  1169. "docked_mode": {
  1170. "$id": "#/properties/docked_mode",
  1171. "type": "boolean",
  1172. "title": "Enable Docked Mode",
  1173. "description": "Enables or disables Docked Mode",
  1174. "default": false,
  1175. "examples": [
  1176. true,
  1177. false
  1178. ]
  1179. },
  1180. "enable_discord_integration": {
  1181. "$id": "#/properties/enable_discord_integration",
  1182. "type": "boolean",
  1183. "title": "Enable Discord Rich Presence",
  1184. "description": "Enable or disable Discord Rich Presence",
  1185. "default": true,
  1186. "examples": [
  1187. true,
  1188. false
  1189. ]
  1190. },
  1191. "check_updates_on_start": {
  1192. "$id": "#/properties/check_updates_on_start",
  1193. "type": "boolean",
  1194. "title": "Checks for updates when ryujinx starts when enabled",
  1195. "description": "Checks for updates when ryujinx starts when enabled",
  1196. "default": true,
  1197. "examples": [
  1198. true,
  1199. false
  1200. ]
  1201. },
  1202. "show_confirm_exit": {
  1203. "$id": "#/properties/show_confirm_exit",
  1204. "type": "boolean",
  1205. "title": "Show \"Confirm Exit\" Dialog",
  1206. "description": "Check to shows the \"Confirm Exit\" dialog when closing Ryujinx.",
  1207. "default": true,
  1208. "examples": [
  1209. true,
  1210. false
  1211. ]
  1212. },
  1213. "enable_vsync": {
  1214. "$id": "#/properties/enable_vsync",
  1215. "type": "boolean",
  1216. "title": "Enable Vertical Sync",
  1217. "description": "Enables or disables Vertical Sync",
  1218. "default": true,
  1219. "examples": [
  1220. true,
  1221. false
  1222. ]
  1223. },
  1224. "enable_ptc": {
  1225. "$id": "#/properties/enable_ptc",
  1226. "type": "boolean",
  1227. "title": "Enable Profiled Persistent Translation Cache",
  1228. "description": "Enables or disables profiled translation cache persistency",
  1229. "default": true,
  1230. "examples": [
  1231. true,
  1232. false
  1233. ]
  1234. },
  1235. "enable_fs_integrity_checks": {
  1236. "$id": "#/properties/enable_fs_integrity_checks",
  1237. "type": "boolean",
  1238. "title": "Enable Filesystem Integrity Checks",
  1239. "description": "Enables integrity checks on Game content files. Only applies to ROMs loaded as XCI files",
  1240. "default": true,
  1241. "examples": [
  1242. true,
  1243. false
  1244. ]
  1245. },
  1246. "fs_global_access_log_mode": {
  1247. "$id": "#/properties/fs_global_access_log_mode",
  1248. "type": "integer",
  1249. "title": "Enable FS access log",
  1250. "description": "Enables FS access log output. Possible modes are 0-3. Modes 2 and 3 output to the console",
  1251. "default": 0,
  1252. "minimum": 0,
  1253. "examples": [
  1254. 0,
  1255. 1,
  1256. 2,
  1257. 3
  1258. ]
  1259. },
  1260. "audio_backend": {
  1261. "$id": "#/properties/audio_backend",
  1262. "type": "string",
  1263. "title": "The selected audio backend",
  1264. "description": "The selected audio backend",
  1265. "default": "OpenAl",
  1266. "enum": [
  1267. "Dummy",
  1268. "SoundIo",
  1269. "OpenAl"
  1270. ]
  1271. },
  1272. "ignore_missing_services": {
  1273. "$id": "#/properties/ignore_missing_services",
  1274. "type": "boolean",
  1275. "title": "Ignore Missing Services",
  1276. "description": "Enable or disable ignoring missing services, this may cause instability",
  1277. "default": false,
  1278. "examples": [
  1279. true,
  1280. false
  1281. ]
  1282. },
  1283. "gui_columns": {
  1284. "$id": "#/properties/gui_columns",
  1285. "type": "object",
  1286. "title": "Used to toggle columns in the GUI",
  1287. "description": "Used to toggle columns in the GUI",
  1288. "properties": {
  1289. "fav_column": {
  1290. "$id": "#/properties/gui_columns/properties/fav_column",
  1291. "type": "boolean",
  1292. "title": "",
  1293. "default": true
  1294. },
  1295. "icon_column": {
  1296. "$id": "#/properties/gui_columns/properties/icon_column",
  1297. "type": "boolean",
  1298. "title": "",
  1299. "default": true
  1300. },
  1301. "app_column": {
  1302. "$id": "#/properties/gui_columns/properties/app_column",
  1303. "type": "boolean",
  1304. "title": "",
  1305. "default": true
  1306. },
  1307. "dev_column": {
  1308. "$id": "#/properties/gui_columns/properties/dev_column",
  1309. "type": "boolean",
  1310. "title": "",
  1311. "default": true
  1312. },
  1313. "version_column": {
  1314. "$id": "#/properties/gui_columns/properties/version_column",
  1315. "type": "boolean",
  1316. "title": "",
  1317. "default": true
  1318. },
  1319. "time_played_column": {
  1320. "$id": "#/properties/gui_columns/properties/time_played_column",
  1321. "type": "boolean",
  1322. "title": "",
  1323. "default": true
  1324. },
  1325. "last_played_column": {
  1326. "$id": "#/properties/gui_columns/properties/last_played_column",
  1327. "type": "boolean",
  1328. "title": "",
  1329. "default": true
  1330. },
  1331. "file_ext_column": {
  1332. "$id": "#/properties/gui_columns/properties/file_ext_column",
  1333. "type": "boolean",
  1334. "title": "",
  1335. "default": true
  1336. },
  1337. "file_size_column": {
  1338. "$id": "#/properties/gui_columns/properties/file_size_column",
  1339. "type": "boolean",
  1340. "title": "",
  1341. "default": true
  1342. },
  1343. "path_column": {
  1344. "$id": "#/properties/gui_columns/properties/path_column",
  1345. "type": "boolean",
  1346. "title": "",
  1347. "default": true
  1348. }
  1349. }
  1350. },
  1351. "column_sort": {
  1352. "$id": "#/properties/column_sort",
  1353. "type": "object",
  1354. "title": "Used to configure column sort settings in the GUI",
  1355. "description": "Used to configure column sort settings in the GUI",
  1356. "properties": {
  1357. "sort_column_id": {
  1358. "$id": "#/properties/column_sort/properties/sort_column_id",
  1359. "type": "integer",
  1360. "title": "",
  1361. "default": 0
  1362. },
  1363. "sort_ascending": {
  1364. "$id": "#/properties/column_sort/properties/sort_ascending",
  1365. "type": "boolean",
  1366. "title": "",
  1367. "default": false
  1368. }
  1369. }
  1370. },
  1371. "game_dirs": {
  1372. "$id": "#/properties/game_dirs",
  1373. "type": "array",
  1374. "title": "List of Game Directories",
  1375. "description": "A list of directories containing games to be used to load games into the games list",
  1376. "default": []
  1377. },
  1378. "enable_custom_theme": {
  1379. "$id": "#/properties/enable_custom_theme",
  1380. "type": "boolean",
  1381. "title": "Enable custom themes in the GUI",
  1382. "description": "Enable or disable custom themes in the GUI",
  1383. "default": false,
  1384. "examples": [
  1385. true,
  1386. false
  1387. ]
  1388. },
  1389. "custom_theme_path": {
  1390. "$id": "#/properties/custom_theme_path",
  1391. "type": "string",
  1392. "title": "Path to custom GUI theme",
  1393. "description": "Path to custom GUI theme",
  1394. "default": ""
  1395. },
  1396. "start_fullscreen": {
  1397. "$id": "#/properties/start_fullscreen",
  1398. "type": "boolean",
  1399. "title": "Start games in fullscreen mode",
  1400. "description": "Start games in fullscreen mode",
  1401. "default": false,
  1402. "examples": [
  1403. true,
  1404. false
  1405. ]
  1406. },
  1407. "enable_keyboard": {
  1408. "$id": "#/properties/enable_keyboard",
  1409. "type": "boolean",
  1410. "title": "(HID) Keyboard Enable",
  1411. "description": "Enable or disable direct keyboard access (HID) support (Provides games access to your keyboard as a text entry device)",
  1412. "default": true,
  1413. "examples": [
  1414. true,
  1415. false
  1416. ]
  1417. },
  1418. "hotkeys": {
  1419. "$id": "#/properties/hotkeys",
  1420. "type": "object",
  1421. "title": "Hotkey Controls",
  1422. "required": [
  1423. "toggle_vsync"
  1424. ],
  1425. "properties": {
  1426. "toggle_vsync": {
  1427. "$id": "#/properties/hotkeys/properties/toggle_vsync",
  1428. "$ref": "#/definitions/key",
  1429. "title": "Toggle VSync",
  1430. "default": "Tab"
  1431. }
  1432. }
  1433. },
  1434. "keyboard_config": {
  1435. "$id": "#/properties/keyboard_config",
  1436. "type": "array",
  1437. "title": "Keyboard Config",
  1438. "items": {
  1439. "$ref": "#/definitions/keyboard_config"
  1440. },
  1441. "default": [
  1442. {
  1443. "index": 0,
  1444. "controller_type": "JoyconPair",
  1445. "player_index": "Player1",
  1446. "left_joycon": {
  1447. "stick_up": "W",
  1448. "stick_down": "S",
  1449. "stick_left": "A",
  1450. "stick_right": "D",
  1451. "stick_button": "F",
  1452. "dpad_up": "Up",
  1453. "dpad_down": "Down",
  1454. "dpad_left": "Left",
  1455. "dpad_right": "Right",
  1456. "button_minus": "Minus",
  1457. "button_l": "E",
  1458. "button_zl": "Q",
  1459. "button_sl": "Unbound",
  1460. "button_sr": "Unbound"
  1461. },
  1462. "right_joycon": {
  1463. "stick_up": "I",
  1464. "stick_down": "K",
  1465. "stick_left": "J",
  1466. "stick_right": "L",
  1467. "stick_button": "H",
  1468. "button_a": "Z",
  1469. "button_b": "X",
  1470. "button_x": "C",
  1471. "button_y": "V",
  1472. "button_plus": "Plus",
  1473. "button_r": "U",
  1474. "button_zr": "O",
  1475. "button_sl": "Unbound",
  1476. "button_sr": "Unbound"
  1477. },
  1478. "slot": 0,
  1479. "alt_slot": 0,
  1480. "mirror_input": false,
  1481. "dsu_server_host": "127.0.0.1",
  1482. "dsu_server_port": 26760,
  1483. "sensitivity": 100,
  1484. "gyro_deadzone": 1,
  1485. "enable_motion": false
  1486. }
  1487. ]
  1488. },
  1489. "controller_config": {
  1490. "$id": "#/properties/controller_config",
  1491. "type": "array",
  1492. "title": "Controller Config",
  1493. "items": {
  1494. "$ref": "#/definitions/controller_config"
  1495. },
  1496. "default": []
  1497. }
  1498. }
  1499. }