Difference between revisions of "Redstone.getSides"

From ComputerCraft Wiki
Jump to: navigation, search
(Created page with "{{lowercase}} {{Function |name=redstone.getSides |args= |returns=table list of valid sides |api=redstone |examples= {{Example |desc=Prints all valid sides |code=for k,v in...")
 
m (Changed to use type template)
 
(3 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
|name=redstone.getSides
 
|name=redstone.getSides
 
|args=
 
|args=
|returns=[[table]] list of valid sides
+
|returns={{type|table}} of valid sides
 
|api=redstone
 
|api=redstone
 
|examples=
 
|examples=
 
{{Example
 
{{Example
 
|desc=Prints all valid sides
 
|desc=Prints all valid sides
|code=for k,v in ipairs(redstone.getSides()) do
+
|code=for k,v in pairs(redstone.getSides()) do
 
   print(v)
 
   print(v)
 
  end
 
  end
Line 14: Line 14:
 
}}
 
}}
 
}}
 
}}
 +
 +
[[Category:Lua_Core_Functions]]

Latest revision as of 15:20, 2 May 2013


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)