share/hedgewars/Data/Scripts/Params.lua
author nemo
Fri, 30 Oct 2015 16:04:51 -0400
changeset 11262 6d5505bff3f3
parent 9985 42cd42e44c9a
permissions -rw-r--r--
refocus camera on roping hog. totally untested.

-- 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