Mojira Archive
MCPE-181919

Cape abruptly changes the color tint when the Player is on fire and takes damage at the same time

After fixing MCPE-105347 which disable the damage tint from the cape, when the Player is on fire and takes damage at the same time, the cape will abruptly changes the color tint from orange (on fire color overlay) to original texture color, which create a jarring transition

Steps to reproduce:

  1. Equip a Cape
  2. Change your gamemode to survival
  3. Set yourself on fire

Expected results:
Cape shouldn't abruptly changes the color tint.

Observed results:
Cape abruptly changes the color tint, create a jarring transition.

This can be fixed by adding this to cape.render_controllers.json, this will disable on fire color from the cape:

      "on_fire_color" : {
        "r": 0.0,
        "g": 0.0,
        "b": 0.0,
        "a": 0.0
      }