mirror of
https://github.com/APercy/automobiles_pck
synced 2025-10-04 08:36:24 +02:00
improved climb
This commit is contained in:
parent
a255a1e69b
commit
fe19dcaebc
@ -801,7 +801,7 @@ minetest.register_entity("automobiles_delorean:delorean", {
|
||||
accel.y = -automobiles_lib.gravity
|
||||
else
|
||||
local time_correction = (self.dtime/delorean.ideal_step)
|
||||
local y_accel = accel.y + self._car_gravity*time_correction
|
||||
local y_accel = self._car_gravity*time_correction
|
||||
accel.y = y_accel --sets the anti gravity
|
||||
end
|
||||
|
||||
|
@ -21,7 +21,7 @@ function delorean.gravity_auto_correction(self, dtime)
|
||||
--minetest.chat_send_player(self.driver_name, "antes: " .. self._car_gravity)
|
||||
if self._car_gravity > 0 then factor = -1 end
|
||||
local time_correction = (dtime/delorean.ideal_step)
|
||||
local intensity = 0.1
|
||||
local intensity = 1
|
||||
local correction = (intensity*factor) * time_correction
|
||||
--minetest.chat_send_player(self.driver_name, correction)
|
||||
local before_correction = self._car_gravity
|
||||
@ -48,10 +48,17 @@ end
|
||||
function delorean.control_flight(self, player)
|
||||
if self._is_flying == 1 then
|
||||
local ctrl = player:get_player_control()
|
||||
local max = 6
|
||||
local min = -6
|
||||
local curr_vel = self.object:get_velocity()
|
||||
if ctrl.jump then
|
||||
self._car_gravity = 3
|
||||
if self._car_gravity < max and curr_vel.y < 2.5 then
|
||||
self._car_gravity = self._car_gravity + 1
|
||||
end
|
||||
elseif ctrl.sneak then
|
||||
self._car_gravity = -3
|
||||
if self._car_gravity > min and curr_vel.y > -2.5 then
|
||||
self._car_gravity = self._car_gravity - 1
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user