Divergent/mods/Devices of Anomaly Redone/gamedata/scripts/zz_rf_light_remover.script

7 lines
283 B
Plaintext
Raw Normal View History

2024-03-17 20:18:03 -04:00
-- Script to remove the blinking light from the rf-receiver made by utjan
-- This fuction overwrites another one inside the item_radio.script
base_radio_update = item_radio.UI3D_RF.Update
function item_radio.UI3D_RF:Update()
base_radio_update(self)
self.m_led:Show(false)
end