Well I'm trying to stamp this blue line, but there's a problem.
The "ink" sprite is in front of the paper, and when the project is played you can see the ink on top of the paper, but the stamps, when you move the paper out of the way, have been stamp under the paper sprite, meaning you cannot see them. why is it stamping under the paper, when clearly it is on top of the paper.
Offline
Stamps are always stamped on the bottom layer. Maybe you should stamp the paper first.
Offline
scimonster wrote:
Stamps are always stamped on the bottom layer. Maybe you should stamp the paper first.
thanks!
Offline
No problem.
Offline
or make the paper part of the background
Offline
Try to think multi-sprite stamping as layers. Here us a demonstartion in your scenario:
Background: This will always be at the back, so don't worry.
Paper: This will have to be stamped first.
Pen: This will need to be stamped last.
A simple way of doing this is single-sprite stamping, where you use a script like this:
when gf clicked repeat [10] clear switch to costume [paper v] stamp switch to costume [pen v] stamp endI'll be happy to help if you have any more problems with stamping.
Offline
NeilWest wrote:
Try to think multi-sprite stamping as layers. Here us a demonstartion in your scenario:
Background: This will always be at the back, so don't worry.
Paper: This will have to be stamped first.
Pen: This will need to be stamped last.
A simple way of doing this is single-sprite stamping, where you use a script like this:when gf clicked repeat [10] clear switch to costume [paper v] stamp switch to costume [pen v] stamp endI'll be happy to help if you have any more problems with stamping.
wouldn't that keep stamping the paper on top of the ink?
Offline
Borrego6165 wrote:
NeilWest wrote:
Try to think multi-sprite stamping as layers. Here us a demonstartion in your scenario:
Background: This will always be at the back, so don't worry.
Paper: This will have to be stamped first.
Pen: This will need to be stamped last.
A simple way of doing this is single-sprite stamping, where you use a script like this:when gf clicked repeat [10] clear switch to costume [paper v] stamp switch to costume [pen v] stamp endI'll be happy to help if you have any more problems with stamping.wouldn't that keep stamping the paper on top of the ink?
Or remove the repeat block, it won't make any difference.
Offline