From 3c1ff57caabab361112efe684043430dd6943883 Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Sat, 27 Jul 2019 16:04:43 +0900 Subject: [PATCH] Added a note about helpers --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a44d8ad..49ff33a 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,14 @@ npm start -## Buttons +## Helpers -- Holding right-click while using $helpers will run the script as the mouse is used. +Ronin helpers are keywords that facilitates adding coordinates from the canvas into your script. The currently supported helpers are `$rect`, `$pos`, `$circle`, `$line` and `$drag`. Holding right-click while using a $helper will run the script as the mouse is injecting coordinates into the script. Paste the following script, and trace a shape in the canvas: + +```lisp +; draw a red circle +(fill $circle "red") +``` ## Library