How to add link and upload image in SDK 7?

Hey, I am trying to create scene add wanna add link on instagram and upload image in png format. It is possible and works fine in Builder on SDK 6 but I cant find a way how to do it in SDK 7

Pls help, I am startup owner which helps businesses to integrate to Decentraland smooth with the best user experience

const myEntity = engine.addEntity()
MeshCollider.setBox(myEntity)
Transform.create(myEntity , {
position: Vector3.create(0, 0, 0), scale: Vector3.create(0, 0, 0), rotation: Quaternion.fromEulerDegrees(0, 0, 0)

})

Material.setPbrMaterial(meshEntity, {
  texture: Material.Texture.Common({
    src: 'materials/yourTexture.png'
  })
})

pointerEventsSystem.onPointerDown(
{
entity: myEntity,
opts: {
button: InputAction.IA_POINTER,
hoverText: β€˜Click to see instagram!’
}
},
() => {
openExternalUrl({ url: β€œRoman (@yourpost) β€’ Instagram photos and videos” })

}

)

you can add a texture

1 Like

thx a lot but how to do it via UI? I can put link or download image via UI in SDK 6