share/hedgewars/Data/Scripts/Params.lua
author Wuzzy <Wuzzy2@mail.ru>
Sat, 10 Feb 2018 20:08:22 +0100
changeset 12964 a5c5fe878a4e
parent 9985 42cd42e44c9a
permissions -rw-r--r--
Racer, TechRacer: Fade out waypoints at the end

-- Library for parameters handling

params = {}

function parseParams()
    if ScriptParam ~= nil then
        for k, v in string.gmatch(ScriptParam, "(%w+)=([^,]+)") do
            params[k] = v
        end
    end
end