Hi all,
My setup looks like this:
world.collection
<player game object, camera, etc...>
scene.collection
map.go
#tilemap
<other game objects...>
How do I retrieve a URL or address to the #tilemap component? scene.collection
was spawned from a collection factory. The collectionfactory.create()
function give me a list of hashed addresses to each game object, but I’m struggling to go from hash(map.go)
to the address of map#tilemap
.
I think collectionfactory.create()
should also return the path to the spawned collection. Addressing into it is difficult when all it returns are various hashes.