3 lines
54 B
Lua
3 lines
54 B
Lua
|
function mix(x, y, a)
|
||
|
return x * (1 - a) + y * a
|
||
|
end
|