We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.

HtmlMixer display

Home Forums General Questions HtmlMixer display

Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #61471
    jesse
    Participant

    I used HtmlMixer to embed a web page in the scene. The background of the web page has been set to transparent, but it still cannot penetrate into the later scene. What should I do to make the background pass through and only display the text?

    Attachments:
    You must be logged in to view attached files.
    #61477
    kdv
    Participant

    Set material.opacity = 0;

    Puzzles and JS. Fast and expensive.

    If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of meaning at all.

    #61557
    jesse
    Participant

    Unfortunately, this setup didn’t work,@kdv

    #61559
    kdv
    Participant

    There are three working variants:

    object3d.material.alphaToCoverage = true;
    object3d.material.opacity = 0;

    or just hide the plane’s material
    object3d.material.visible = false;

    or hide the plane itself
    object3d.visible = false;

    Puzzles and JS. Fast and expensive.

    If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of meaning at all.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.