Difference between revisions of "Turtle.detect"
From ComputerCraft Wiki
m |
m (Moved to CAT:LuaCoreFunctions) |
||
Line 13: | Line 13: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | [[Category:Lua_Core_Functions]] |
Revision as of 18:53, 28 November 2012
Function turtle.detect | |
Detects if there is a Block in front. Does not detect mobs or liquids or floating items. | |
Syntax | turtle.detect() |
Returns | boolean If turtle has Detected a Block in front. |
Part of | ComputerCraft |
API | turtle |
Examples
Example | |
Detects if there is a Block in front and digs it out. | |
Code |
if turtle.detect() then |