Click or drag to resize

ArticyNotificationManagerNotifyPropertyChanged Method

Called to notify each added listener about a variable change.

Namespace:  Articy.Unity
Assembly:  ArticyRuntime (in ArticyRuntime.dll) Version: 1.0.3
Syntax
C#
public void NotifyPropertyChanged(
	string aVariable,
	Object aValue
)

Parameters

aVariable
Type: SystemString
Name of the updated variable.
aValue
Type: SystemObject
The new value of the variable.
Remarks

Usually this method is called internally by the global variables and by the inspector drawers, but you can use it to force a check for a variable even if it was never actually changed.

See Also