AEmitter:IsEmitting
From Data Realms Wiki
(Difference between revisions)
Beautifybot (Talk | contribs) m (updating function page) |
m (Reverted edits by Beautifybot (talk) to last revision by Thoughtprocess) |
||
Line 1: | Line 1: | ||
{{LuaFunction | {{LuaFunction | ||
- | |function_name | + | |function_name = self:IsEmitting |
- | |arguments | + | |arguments = |
- | |returns | + | |returns = [[Boolean]] |
- | |description | + | |description = Checks whether emissions ([[AddEmission]]) are activated or not. Useful for rockets/missiles that are supposed to have a short thrust-time. |
- | + | |codedesc = Checks whether emission is activated. If it isn't, it enables emission. | |
- | |codedesc | + | |code = <code lua n> |
- | |code | + | |
function Update(self) | function Update(self) | ||
if self:IsEmitting() == false then | if self:IsEmitting() == false then | ||
Line 13: | Line 12: | ||
end | end | ||
</code> | </code> | ||
- | |output | + | |output = [[nil]] |
- | }} | + | |}} |
Revision as of 00:23, 28 June 2012
Function | |
---|---|
Syntax | self:IsEmitting( ) |
Description: | |
Checks whether emissions (AddEmission) are activated or not. Useful for rockets/missiles that are supposed to have a short thrust-time. | |
Returns | Boolean |
Example | |
---|---|
Description | Checks whether emission is activated. If it isn't, it enables emission. |
Code |
|
Output | nil |