components.ini 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #########################################
  2. # /!\ WARNING: DO NOT EDIT WITH NOTEPAD!#
  3. #########################################
  4. # components.ini
  5. # defines which components will be enabled
  6. [components]
  7. # emulates game input through mouse and keyboard.
  8. # controls can be set inside the keyconfig.ini file.
  9. input_emulator = true
  10. touch_slider_emulator = true
  11. touch_panel_emulator = true
  12. # freezes the PV select timer at 39 seconds.
  13. sys_timer = true
  14. # loads user defined const values from the playerdata.ini config
  15. # and writes them to the game's PlayerData struct.
  16. # required for modules selection
  17. player_data_manager = true
  18. # adjusts 2D and 3D animations to retain their original speed at different frame rates.
  19. frame_rate_manager = false
  20. # sets an unlimited per session play count for the normal game mode.
  21. # this means the player won't be sent back to the title screen after 2 plays.
  22. stage_manager = false
  23. # skip unnecessary DATA_INITIALIZE loading time, speed up SYSTEM_STARTUP and skip the startup WARNING message.
  24. # further improvements can be achieved by shortening the duration of the pv_999 script file as it's test loaded during the SYSTEM_STARTUP.
  25. fast_loader = true
  26. # allows for a user controllable camera which can be toggled using F3,
  27. # can be controlled using W/A/S/D to move, SPACE/CTRL to ascend/descend, Q/E to rotate, R/F to zoom in/out
  28. # and holding SHIFT/ALT to speed up or slow down these controls.
  29. camera_controller = false
  30. # scales the framebuffer so that it will fit the current screen or window
  31. # required to set resolutions in config.ini
  32. scale_component = true
  33. # lets the user change the current game state using the F4 - F8 keys, enable the dw_gui / DATA_TESTs
  34. # and speed up 2D animations / menu navigation by holding SHIFT + TAB.
  35. # enabling this component is not recommended for most users.
  36. debug_component = false
  37. # allows the usage of hold transfer
  38. target_inspector = true
  39. # saves high scores to plugins/scores.ini
  40. score_saver = true
  41. # adds a pause menu
  42. pause = true