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