so i was trying the sandbox at fxhash to see if it would work with playcanvas. it actually looks quite good, but there is a problem with loading assets. i’ve tried the following project which cotains just one png but the problem also appears for glb’s and other assets.
uhmm … i wasn’t aware … i can’t get it to work anyways %) … i can’t see the scene with another account too … it is nothing more than an empty project with a plane having a material with one texture on it. which doesn’t load …
@yaustar … you need to upload it as a zip here: fxhash — sandbox …
there needs to be this codesnippet in the head of the index:
<script id="fxhash-snippet">
//---- do not edit the following code (you can indent as you wish)
let alphabet = "123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"
var fxhash = "oo" + Array(49).fill(0).map(_=>alphabet[(Math.random()*alphabet.length)|0]).join('')
let b58dec = str=>[...str].reduce((p,c)=>p*alphabet.length+alphabet.indexOf(c)|0, 0)
let fxhashTrunc = fxhash.slice(2)
let regex = new RegExp(".{" + ((fxhashTrunc.length/4)|0) + "}", 'g')
let hashes = fxhashTrunc.match(regex).map(h => b58dec(h))
let sfc32 = (a, b, c, d) => {
return () => {
a |= 0; b |= 0; c |= 0; d |= 0
var t = (a + b | 0) + d | 0
d = d + 1 | 0
a = b ^ b >>> 9
b = c + (c << 3) | 0
c = c << 21 | c >>> 11
c = c + t | 0
return (t >>> 0) / 4294967296
}
}
var fxrand = sfc32(...hashes)
// true if preview mode active, false otherwise
// you can append preview=1 to the URL to simulate preview active
var isFxpreview = new URLSearchParams(window.location.search).get('preview') === "1"
// call this method to trigger the preview
function fxpreview() {
console.log("fxhash: TRIGGER PREVIEW")
}
//---- /do not edit the following code
</script>
the app appearently works but it wouldn’t load any assets… it’s most likely just a path issue
@yaustar idk if it’s different after minting. i minted a vr app on teia marketplace recently and it worked fine from ipfs. but thanks so far i’m going to further investigate and try out the base64 approach.