AEmitter:IsSetToBurst

From Data Realms Wiki

Revision as of 00:45, 28 June 2012 by Beautifybot (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Function
SyntaxIsSetToBurst( * None. )
Description:
Indicates whether this AEmitter is set to burst next update or not.
ReturnsWhether a burst is gonna happen or not..




Example
DescriptionChecks whether emission is activated. If it isn't, it enables emission.
Code
  1. function Update(self)
  2.         if self:IsEmitting() == false then
  3.                 self:EnableEmission(true);
  4.         end
  5. end
Outputnil
Personal tools