Fixed vector.interpolate bug

This commit is contained in:
Gael-de-Sailly 2015-04-14 21:23:45 +02:00
parent 67c3a33fd4
commit 3503838690
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
-- Temporary compatibility function - see minetest PR#1180
if not vector.interpolate then
vector.interpolate = function(pos1, pos2)
vector.interpolate = function(pos1, pos2, factor)
return {x = pos1.x + (pos2.x - pos1.x) * factor,
y = pos1.y + (pos2.y - pos1.y) * factor,
z = pos1.z + (pos2.z - pos1.z) * factor}