redstone.getSides

From ComputerCraft Wiki
Revision as of 15:20, 2 May 2013 by Smiley43210 (Talk | contribs) (Changed to use type template)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Grid Redstone.png  Function redstone.getSides
No description provided.
Syntax redstone.getSides()
Returns table of valid sides
Part of ComputerCraft
API redstone

Examples

Grid paper.png  Example
Prints all valid sides
Code
for k,v in pairs(redstone.getSides()) do
 print(v)
end
Output A list of all valid sides (top, bottom, left, right, front and back)