Posted: 11th Oct 2021 17:39
is anyone else getting this:

when using:

SetDefaultWrapU(1)
SetDefaultWrapV(1)

in HTML?

https://github.com/TheGameCreators/AGK-Studio/issues/890
Posted: 11th Oct 2021 17:52
Yup!

Posted: 11th Oct 2021 18:12
rats. as expected, the same happens with Text:

(issue updated @ github)

ACK!
just noticed that it also kills my background sprite using:
+ Code Snippet
BGSpr = LoadSprite("\media\platformer-pixel-art-tileset\Background\Background.png" )
SetSpriteSize(BGSpr,1280,720)
SetSpriteDepth(BGSpr,10000)


no bueno...

also learned that HTML is case sensitive re: file names. i knew it was on android but never saw it on HTML.

today's been interesting thus far...
Posted: 11th Oct 2021 21:08
Meanwhile, setting Repeat on an individual image basis:

SetImageWrapU(ThisImg,1)
SetImageWrapV(ThisImg,1)

...works fine/without any of the issues above