The Binding of Isaac: Rebirth

The Binding of Isaac: Rebirth

[AB+|Rep(+)] External Item Descriptions
Denne tråd er blevet låst
Drumstix42 21. jan. 2019 kl. 20:46
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.
< >
Viser 1-5 af 5 kommentarer
Wofsauge  [udvikler] 22. jan. 2019 kl. 7:46 
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 22. jan. 2019 kl. 10:49 
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.
https://steamcommunity.com/sharedfiles/filedetails/?id=1566024680

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!
Sidst redigeret af Drumstix42; 22. jan. 2019 kl. 10:50
Drumstix42 23. jan. 2019 kl. 12:13 
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.
Sidst redigeret af Drumstix42; 23. jan. 2019 kl. 12:14
Wofsauge  [udvikler] 29. jan. 2019 kl. 14:11 
You can now toggle the descriptions by pressing F2. Thank you for suggesting this feature ;)
Drumstix42 29. jan. 2019 kl. 15:51 
Oprindeligt skrevet af 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!
< >
Viser 1-5 af 5 kommentarer
Per side: 1530 50