var.unmonitor

From Inspired-Lua Wiki
Revision as of 13:36, 1 June 2011 by Jimbauwens (talk | contribs) (Created page with "var.'''unmonitor''' is a function that is part of the Var Library. <br> This function turns off monitoring of a variable (given in the arguments). == Syntax == var.'...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

var.unmonitor is a function that is part of the Var Library.


This function turns off monitoring of a variable (given in the arguments).

Syntax

var.monitor(varname)
disables monitoring of the variable varname (must be a string).

Example

function on.create()
	var.monitor("sol")
	--turn monitoring on for the variable "sol"
end

function on.varChange(list)
	--The variable got changed
	var.unmonitor("sol")
	--Turn the monitoring off
	return 0 -- allow the change
end

See also