luanti-org/luanti

Settings and player parameters to control damage flash and tilt

开放

#15,805 创建于 2025年2月18日

 (4 条评论) (0 个反应) (0 位负责人)C++ (2,395 个派生)auto 404
@ Client / Audiovisuals@ Script APIConcept approvedFeature requestSSCSMgood first issue

仓库指标

星标
 (13,341 个星标)
PR 合并指标
 (平均合并 13天 22小时) (30 天内合并 48 个 PR)

描述

Problem

The engine has a hardcoded red flash and slight camera tilt whenever the player takes damage. Not all games need this, so it should be possible to disable it, and some might want to change the color of the flash, the tilt angle, etc. Also, some players might find the flash or tilt disorienting and so the client should be able to override or disable them from the settings for accessibility purposes.

Solutions

player:set_damage_effects() method along with a getter, using a table like so:

{
    enable_flash = true,
    flash_color = "#RRGGBBAA",
    enable_tilt = true,
    tilt_angle = ... -- not sure the best representation, probably a vector for rotation around each axis with the values being a multiplier for the calculated tilt strength
}

And equivalent settings, such as hurt_flash_enabled, hurt_flash_color (just the RGB components?), hurt_flash_strength?, hurt_tilt_enabled, hurt_tilt_strength...

Alternatives

Just the player parameters, or just the settings

贡献者指南