I am making a paint program. How do I make it so the brush's color changes if it touches a certain sprite? The program is here.
Last edited by Firedrake969 (2012-07-14 21:12:20)
Offline
Firedrake969 wrote:
I am making a paint program. How do I make it so the brush's color changes if it touches a certain sprite? The program is here.
forever if <touching [sprite v]?> set pen color to [#FFFFFF]Or
wait until <touching [sprite v]?> set pen color to [#FFFFFF]
Last edited by zammer990 (2012-07-14 21:20:41)
Offline
I find that the ...
set pen color to (0) set pen shade to (0) set pen size to (0)... blocks are the most useful, since you can control the pen without manually inputting colors with the selector.
Last edited by amcerbu (2012-07-15 03:11:12)
Offline
zammer990 wrote:
Firedrake969 wrote:
I am making a paint program. How do I make it so the brush's color changes if it touches a certain sprite? The program is here.
forever if <touching [sprite v]?> set pen color to [#FFFFFF]Orwait until <touching [sprite v]?> set pen color to [#FFFFFF]
That's what I did... download the project to see the scripts.
Offline