redstone.getSides
From ComputerCraft Wiki
Revision as of 18:53, 28 November 2012 by AfterLifeLochie (Talk | contribs) (Moved to CAT:LuaCoreFunctions)
Function redstone.getSides | |
No description provided. | |
Syntax | redstone.getSides() |
Returns | table list of valid sides |
Part of | ComputerCraft |
API | redstone |
Examples
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) |