The Binding of Isaac: Rebirth

The Binding of Isaac: Rebirth

[AB+|Rep(+)] External Item Descriptions
This topic has been locked
Drumstix42 Jan 22, 2019 @ 3:46am
Toggle in-game?
Is there any way to toggle this on/off while in-game? Such as a keypress?
If not, would it be possible to add in?

Sometimes the text really gets in the way of combat in a room.

A way to configure the text size would be really awesome, too. Thanks.
Showing 1-5 of 5 comments
Wofsauge  [developer] Jan 22, 2019 @ 2:46pm 
The text size can be changed in the config.lua file. But right now, there is no way to toggle the descriptions off/on ingame.
Drumstix42 Jan 22, 2019 @ 5:49pm 
Thanks, I'll look into that.

As for the toggle, I'm sad to hear that. I'm not sure how hard/easy that would be to implement.
One of the "True Co-Op" related mods (True Co-op HUD Stats) has a way to toggle font size with the F1 key.


Not sure if you are taking suggestions or requests, but this would be really awesome to include a way to toggle the feature On/Off.

Places like the Sacrifice room and fighting angels can be a bit overwhelming with the text overlay. Or like Bumbo, which covers half the room:
https://imgur.com/a/sCDvCtY

Thanks for the response either way!
Last edited by Drumstix42; Jan 22, 2019 @ 5:50pm
Drumstix42 Jan 23, 2019 @ 7:13pm 
I decided to dive into some Isaac coding.

Anyone interested in customizing it themselves, see below. Otherwise, tweaking the font size, and the width of the "text area" was a Huge help. Thanks @Wofsauge !

Anyway, here was my solution:

At the top of main.lua, where main variables are declared, I added a new local var:
local EIDEnabled = true

Near the top of the function related to "MC_POST_RENDER" I added this:
-- (F2) key toggle if Input.IsButtonTriggered(Keyboard.KEY_F2, 0) then if EIDEnabled == true then EIDEnabled = false else EIDEnabled = true end end

And then I wrapped the main logic checking of EID with this code:

-- custom keybind EID toggle flag if EIDEnabled == true then ... original code here ... else return end


This way, you can press F2 to turn the descriptions off & on.
Last edited by Drumstix42; Jan 23, 2019 @ 7:14pm
Wofsauge  [developer] Jan 29, 2019 @ 9:11pm 
You can now toggle the descriptions by pressing F2. Thank you for suggesting this feature ;)
Drumstix42 Jan 29, 2019 @ 10:51pm 
Originally posted by Wofsauge:
You can now toggle the descriptions by pressing F2. Thank you for suggesting this feature ;)

Right on, glad to see it added into the mod!
Showing 1-5 of 5 comments
Per page: 1530 50