GetTriggerObjectCount - ObjectReference
Revision as of 12:40, 30 August 2010 by imported>Jlundin (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' ObjectReference Script (Papyrus) Obtains the number of objects inside this trigger volume. (Obviously only works…')
Member of: ObjectReference Script (Papyrus)
Obtains the number of objects inside this trigger volume. (Obviously only works if this is actually a trigger and will error otherwise)
Syntax
int Function GetTriggerObjectCount() native
Parameters
None
Return Value
The number of objects currently inside the trigger volume.
Examples
; Is this trigger empty?
if GetTriggerObjectCount() == 0
Debug.Trace("We have nothing inside!")
else
Debug.Trace("Something is inside! Unleash DOOOM!")
endIf