Stops a tool from drawing on the screen.
Usage
crystal.tool.hide(tool_name)
Arguments
| Name | Type | Description |
tool_name | string | Name of the tool to hide. |
Examples
local MyTool = Class("MyTool", crystal.Tool);
crystal.tool.add(MyTool:new());
crystal.tool.hide("MyTool");