-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update imagine with more module implementations
- Loading branch information
1 parent
ae8a586
commit eac79fd
Showing
5 changed files
with
488 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# SPECIAL COLORS | ||
|
||
/** | ||
* Use the current style, see `set_style()` | ||
*/ | ||
var COLOR_STYLED = -2 | ||
|
||
/** | ||
* Use the current brush, see `set_brush()` | ||
*/ | ||
var COLOR_BRUSHED = -3 | ||
|
||
/** | ||
* Use the current style and brush | ||
*/ | ||
var COLOR_STYLED_BRUSHED = -4 | ||
|
||
/** | ||
* Use the current tile, see `set_tile()` | ||
*/ | ||
var COLOR_TILED = -5 | ||
|
||
/** | ||
* Indicate transparency, what is not the same as the transparent | ||
* color index; used for lines only | ||
*/ | ||
var COLOR_TRANSPARENT = -6 | ||
|
||
/** | ||
* Draw anti aliased | ||
*/ | ||
var COLOR_ANTI_ALISED = -7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Image flip directions | ||
|
||
/** | ||
* Flip an image vertically and horizontally | ||
*/ | ||
var FLIP_BOTH = 1 | ||
|
||
/** | ||
* Flip an image horizontally | ||
*/ | ||
var FLIP_HORIZONTAL = 2 | ||
|
||
/** | ||
* Flip an image vertically | ||
*/ | ||
var FLIP_VERTICAL = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.