Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Monster Reader/configuration.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ local function ConfigurationWindow(configuration)
this.changed = true
end

if imgui.Checkbox("Show Monster Item Drop", _configuration.mhpShowItemDrop) then
_configuration.mhpShowItemDrop = not _configuration.mhpShowItemDrop
this.changed = true
end

if imgui.Checkbox("Hide when menus are open", _configuration.mhpHideWhenMenu) then
_configuration.mhpHideWhenMenu = not _configuration.mhpHideWhenMenu
this.changed = true
Expand Down Expand Up @@ -144,6 +149,11 @@ local function ConfigurationWindow(configuration)
this.changed = true
end

if imgui.Checkbox("Show Monster Item Drop", _configuration.targetShowItemDrop) then
_configuration.targetShowItemDrop = not _configuration.targetShowItemDrop
this.changed = true
end

if imgui.Checkbox("Show Monster Name", _configuration.targetShowMonsterName) then
_configuration.targetShowMonsterName = not _configuration.targetShowMonsterName
this.changed = true
Expand Down
Loading