the9grounds / AE-Additions

GNU General Public License v3.0
11 stars 14 forks source link

Incompatible with Modern UI #84

Closed StarskyXIII closed 2 years ago

StarskyXIII commented 2 years ago

When enable Modern Text Engine of Modern UI, it will cause text of Wireless Transceiver disappear.

Test Environment: Forge 40.1.68 Applied Energistics2 v11.1.4 AE Additions v3.2.0 Modern UI v3.5.0.109

Disabled Modern Text Engine image

Enabled Modern Text Engine image

BloCamLimb commented 2 years ago

https://github.com/the9grounds/AE-Additions/blob/master/src/main/kotlin/com/the9grounds/aeadditions/client/gui/MEWirelessTransceiverScreen.kt#L78 You passed alpha to 1, so it's nearly transparent. You should use alpha = 0 (will be adjusted to 255) or directly use alpha = 255

Beachman4 commented 2 years ago

@BloCamLimb I see. Thanks! Please ignore the sloppy gui code 😓 Still learning it lol