39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
|
|
Ronin
|
|
|
|
Canvas
|
|
@ 100 100 ; New canvas of size
|
|
|
|
Layers
|
|
# 1 ; ?
|
|
|
|
Background Fill
|
|
* ff00ff ; Fill background with color
|
|
|
|
Save File
|
|
$ new_name.jpg ; Create a new file with name
|
|
|
|
Load File
|
|
/ file_name.jpg 10 10 100 100 ; Load image into canvas, at position 10,10
|
|
|
|
Brush
|
|
& 10 1 ; Size 10
|
|
& 1 0 ; Eraser, Size 1
|
|
& 4 1 ff0000 ; Red brush, Size 4
|
|
|
|
Pointers
|
|
+ 10 0 ; Add pointer at pos
|
|
- 10 0 ; Remove pointer at pos
|
|
+ 0 0 400 0 ; Mirror X, at 400px
|
|
+ 0 !S ; Speed is y offset
|
|
|
|
Zoom
|
|
= 100 ; Zoom factor
|
|
|
|
Guides
|
|
| 10 10 100 100 ; Draw a guide
|
|
|
|
Formatting
|
|
; ; Split into multiple commands
|
|
! ; Variable with name
|
|
? ; Unknown. |