|
@@ -9,10 +9,15 @@ const IMAGE_SIZE = Vector2(930, 720)
|
|
|
|
|
|
# Enums for the various modes and brush shapes that can be applied.
|
|
# Enums for the various modes and brush shapes that can be applied.
|
|
enum BrushModes {
|
|
enum BrushModes {
|
|
- PENCIL, ERASER, CIRCLE_SHAPE, RECTANGLE_SHAPE
|
|
|
|
|
|
+ PENCIL,
|
|
|
|
+ ERASER,
|
|
|
|
+ CIRCLE_SHAPE,
|
|
|
|
+ RECTANGLE_SHAPE,
|
|
}
|
|
}
|
|
|
|
+
|
|
enum BrushShapes {
|
|
enum BrushShapes {
|
|
- RECTANGLE, CIRCLE
|
|
|
|
|
|
+ RECTANGLE,
|
|
|
|
+ CIRCLE,
|
|
}
|
|
}
|
|
|
|
|
|
# The top-left position of the canvas.
|
|
# The top-left position of the canvas.
|