Pretty good meltin

This commit is contained in:
Silas Bartha 2022-04-04 16:05:44 -04:00
parent 5e62baac94
commit 70150a01fd
No known key found for this signature in database
GPG Key ID: 9323054A4EA1EA6C

View File

@ -366,7 +366,8 @@ impl PlayableScene {
current_temperature_val = val + 273.15;
}
let melt_amount = constants.player.melt_speed * ((((current_temperature_val/298.78121)-1.0) * 50.0) + 1.0);
let melt_amount = constants.player.melt_speed
+ (constants.player.melt_speed * (((current_temperature_val / 298.78121) - 1.0) * 10.0));
player.size -= melt_amount * delta_time;