From 95af2b5f2aa026b3eba48c6b0379c8a8756e3692 Mon Sep 17 00:00:00 2001 From: Alexsandro Percy Date: Tue, 26 Dec 2023 21:40:06 -0300 Subject: [PATCH] fixed turn lights --- automobiles_catrelle/entities.lua | 2 ++ automobiles_coupe/coupe_entities.lua | 2 ++ 2 files changed, 4 insertions(+) diff --git a/automobiles_catrelle/entities.lua b/automobiles_catrelle/entities.lua index 1283acb..0b3a943 100755 --- a/automobiles_catrelle/entities.lua +++ b/automobiles_catrelle/entities.lua @@ -346,6 +346,8 @@ catrelle.car_properties1 = { _rear_lights = 'automobiles_catrelle:r_lights', _turn_left_lights = 'automobiles_catrelle:turn_left_light', _turn_right_lights = 'automobiles_catrelle:turn_right_light', + _textures_turn_lights_off = {"automobiles_turn.png", }, + _textures_turn_lights_on = { "automobiles_turn_on.png", }, _LONGIT_DRAG_FACTOR = 0.12*0.12, _LATER_DRAG_FACTOR = 10.0, diff --git a/automobiles_coupe/coupe_entities.lua b/automobiles_coupe/coupe_entities.lua index 4e75cbf..b9fb1c8 100755 --- a/automobiles_coupe/coupe_entities.lua +++ b/automobiles_coupe/coupe_entities.lua @@ -284,6 +284,8 @@ minetest.register_entity("automobiles_coupe:coupe", { _reverse_lights = 'automobiles_coupe:reverse_lights', _turn_left_lights = 'automobiles_coupe:turn_left_light', _turn_right_lights = 'automobiles_coupe:turn_right_light', + _textures_turn_lights_off = {"automobiles_turn.png", }, + _textures_turn_lights_on = { "automobiles_turn_on.png", }, _LONGIT_DRAG_FACTOR = 0.12*0.12, _LATER_DRAG_FACTOR = 18.0,