mirror of
https://github.com/Ragora/T2-BoL.git
synced 2026-01-19 19:14:45 +00:00
22 lines
625 B
PHP
22 lines
625 B
PHP
//--------------------------------------------------------------------------
|
|
//
|
|
//
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
function SimGroup::onTrigger(%this, %triggerId, %on)
|
|
{
|
|
// Just relay the trigger event to all sub objects...
|
|
//
|
|
for (%i = 0; %i < %this.getCount(); %i++)
|
|
%this.getObject(%i).onTrigger(%triggerId, %on);
|
|
}
|
|
|
|
function SimGroup::onTriggerTick(%this, %triggerId)
|
|
{
|
|
// Just relay the trigger event to all sub objects...
|
|
//
|
|
for (%i = 0; %i < %this.getCount(); %i++)
|
|
%this.getObject(%i).onTriggerTick(%triggerId);
|
|
}
|