From 534b02bf5d2488bfbde326383f552da6271b079e Mon Sep 17 00:00:00 2001 From: Alexsandro Percy Date: Sun, 26 Feb 2023 18:30:02 -0300 Subject: [PATCH] fix on wind indicator --- airutils_wind.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airutils_wind.lua b/airutils_wind.lua index 52c6926..f4291d1 100644 --- a/airutils_wind.lua +++ b/airutils_wind.lua @@ -70,10 +70,10 @@ minetest.register_entity("airutils:wind_indicator",{ on_step = function(self,dtime,colinfo) self.object:set_pos(self._pos) - local wind = airutils.get_wind(pos, 2.0) + local wind = airutils.get_wind(pos, 1.0) local wind_yaw = minetest.dir_to_yaw(wind) self.object:set_bone_position("ajuste", {x=0,y=42,z=0}, {x=0,y=0,z=90}) - self.object:set_bone_position("b_a", {x=0,y=0,z=0}, {x=math.deg(wind_yaw),y=0,z=0}) + self.object:set_bone_position("b_a", {x=0,y=0,z=0}, {x=math.deg(wind_yaw)-90,y=0,z=0}) local false_div = 1 --trying to make it more o minus sensible local vel = ((vector.dot(vector.multiply(wind,dtime),wind))/false_div)*100