Difference between revisions of "Osiris/API/GlobalFlagSet"

From Divinity Engine Wiki
Jump to: navigation, search
(Documented GlobalFlagSet)
 
m
 
(2 intermediate revisions by the same user not shown)
Line 6: Line 6:
 
* '''_FlagName''': The name of the global flag that was set.
 
* '''_FlagName''': The name of the global flag that was set.
 
===== Notes =====
 
===== Notes =====
* /
+
* If you set a global flag that is already set, this event will not be raised (again).
 
===== See Also =====
 
===== See Also =====
 
* [[Osiris/API/GlobalClearFlag|GlobalClearFlag]]
 
* [[Osiris/API/GlobalClearFlag|GlobalClearFlag]]
 
* [[Osiris/API/GlobalFlagCleared|GlobalFlagCleared]]
 
* [[Osiris/API/GlobalFlagCleared|GlobalFlagCleared]]
 +
* [[Osiris/API/GlobalGetFlag|GlobalGetFlag]]
 
* [[Osiris/API/GlobalSetFlag|GlobalSetFlag]]
 
* [[Osiris/API/GlobalSetFlag|GlobalSetFlag]]
 +
* [[Osiris/API/ObjectFlagSet|ObjectFlagSet]]
  
 
[[Category:Osiris Events|GlobalFlagSet]]
 
[[Category:Osiris Events|GlobalFlagSet]]

Latest revision as of 09:02, 18 July 2019

Full Definition(s)
  • event GlobalFlagSet((STRING)_FlagName)
Description

This event is raised when a global flag gets set from Osiris, a behaviour script or a dialog.

Parameters
  • _FlagName: The name of the global flag that was set.
Notes
  • If you set a global flag that is already set, this event will not be raised (again).
See Also