Updated README

This commit is contained in:
Devine Lu Linvega 2016-11-14 07:33:25 -08:00
parent 54356e56d9
commit 783338cf5a

View File

@ -6,15 +6,9 @@
@ ? ; Clear canvas @ ? ; Clear canvas
``` ```
##Layers
```
# 3 ; Layer 3
# ? ; Layer 1
```
##Background ##Background
``` ```
* ff00ff ; Fill background with color * ff0000 ; Fill background with red color
* ? ; Remove background * ? ; Remove background
``` ```
@ -25,13 +19,14 @@ $ new_name.jpg ; Create a new file with name
##Load File ##Load File
``` ```
/ file_name.jpg 10 10 100 100 ; Load image into canvas, at position 10,10 / dir/file_name.jpg 10 10 100 100 ; Load image into canvas, at position 10,10, with size of 100x100
/ dir/file_name.jpg 10 10 100 ; Load image into canvas, at position 10,10, with size of 100w and auto height
``` ```
##Brush ##Brush
``` ```
& 10 1 ; Size 10 & 10 ; Size 10
& 1 0 ; Eraser, Size 1 & -1 ; Eraser, Size 1
& 4 1 ff0000 ; Red brush, Size 4 & 4 1 ff0000 ; Red brush, Size 4
& ? ; Size 1, black & ? ; Size 1, black
``` ```
@ -41,19 +36,26 @@ $ new_name.jpg ; Create a new file with name
> 10 0 ; Add pointer at pos > 10 0 ; Add pointer at pos
> 10 0 ; Remove pointer at pos > 10 0 ; Remove pointer at pos
> 0 0 400 0 ; Mirror X, at 400px > 0 0 400 0 ; Mirror X, at 400px
> 0 _S ; Speed is y offset
> ? ; Remove pointers > ? ; Remove pointers
``` ```
##Zoom
```
= 75 ; Zoom factor
= ? ; Zoom 100%
```
##Guides ##Guides
``` ```
| 10 10 100 100 ; Draw a guide | 10 10 100 100 ; Draw a guide
| -100 ; Draw a grid at every 100px | -100 ; Draw a grid at every 100px
| ? ; Remove guides | ? ; Remove guides
``` ```
#Upcoming Features
##Zoom
```
= 75 ; Zoom factor
= ? ; Zoom 100%
```
##Layers
```
# 3 ; Layer 3
# ? ; Layer 1
```