Can you make a watermark button?

i need watermark for my animation because i have fast things in my animations
so i would need watermark for them so can you make a watermark button that you can turn on please devs?

well, you can make a watermark by drawing one and lowering it’s transparency, but i don’t know much about the purpose of a watermark outside of a plagiarizer defense. can you explain what the watermark is used for so i can get a better grasp and help you more? thanks :D

I’ll be guessing that what @_Arozoid means by a watermark button is a logo with a low opacity that would take the user to a link when clicked on. That shouldn’t be really hard to make, just draw what you’d want to be the watermark, and plug this in for the default script:

this.opacity=.5;
onEvent('mouseclick', function () {
  var url = ' '; /*Please plug in the link
  in the quotation marks in the third line */
  window.open(url, '_blank');
});

If you meant something else by “watermark button,” just let me know.

shouldn’t that be in the default script?

1 Like

Just noticed (I’m used into doing everything in the update script), I’ll fix it, thanks @pumpkinhead

thanks for the code!

1 Like