From d384238d9e4fd41af8203da46107a718841829b7 Mon Sep 17 00:00:00 2001 From: TheArturZh Date: Wed, 13 May 2020 23:59:56 +0300 Subject: [PATCH] Added license mention to Utils.lua --- src/ReplicatedStorage/ProceduralMapGenerator/Utils.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ReplicatedStorage/ProceduralMapGenerator/Utils.lua b/src/ReplicatedStorage/ProceduralMapGenerator/Utils.lua index 898baa9..7bccc43 100644 --- a/src/ReplicatedStorage/ProceduralMapGenerator/Utils.lua +++ b/src/ReplicatedStorage/ProceduralMapGenerator/Utils.lua @@ -1,5 +1,14 @@ +--[[ + Copyright (c) 2020, Artur Zhidkov (TheArturZh) +--]] + local module = {} +--[[ + This function is from ToLua project: + https://github.com/topameng/tolua/blob/master/Assets/ToLua/Lua/UnityEngine/Mathf.lua + Copyright (c) 2015 - 2016, 蒙占志(topameng) topameng@gmail.com +--]] function module.inverse_lerp(from, to, value) if from < to then if value < from then