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.

Ivan Lyubovnikov

Forum Replies Created

Viewing 15 posts - 121 through 135 (of 442 total)
  • Author
    Posts
  • in reply to: Shoutcast radio player (3d casette player style) #40973

    That’s not a file but just an address, so it doesn’t really matter if it has an extension or not. Some shoutcast stations have the mp3 extension, most likely as an audio format hint, for example, http://62.141.38.36:8080/dance.mp3

    Here’s a project example that works for me: radio_player.zip – just click on the cube and the radio should start playing.

    Attachments:
    You must be logged in to view attached files.

    Co-founder and lead developer at Soft8Soft.

    in reply to: WordPress image IDs and verge3d #40961

    Glad it worked out :good:

    Co-founder and lead developer at Soft8Soft.

    in reply to: Verge 3d WordPress plugin #40960

    Hi,

    What exactly the error message says? Uploading issues may happen due to wordpress upload limits: https://www.soft8soft.com/docs/manual/en/introduction/Wordpress-Plugin.html#Installation (check out the “Please note, that your WordPress server…” section).

    Co-founder and lead developer at Soft8Soft.

    in reply to: WordPress image IDs and verge3d #40958

    Hi,

    This may depend on the specific gallery plugin. First of all if it’s embedded in an iframe then it’s no longer in the parent document and can’t be easily accessed from puzzles.

    Also, there’s a possibility that the slider gallery plugin while adding event listeners to its child elements for its own functioning prevents triggering of any other events including those that you can add via puzzles.

    Co-founder and lead developer at Soft8Soft.

    in reply to: Shoutcast radio player (3d casette player style) #40956

    Hi,

    How can i stream shoutcast radio from puzzle scene?

    You need to find a server or build one yourself so you be able to request audio from it via the load_sound puzzle.
    Something like this should work:
    puzzles.png

    You can go to the Icecast radio directory http://dir.xiph.org/ then open a station and copy its address into the load sound puzzle to test it out.

    Attachments:
    You must be logged in to view attached files.

    Co-founder and lead developer at Soft8Soft.

    in reply to: verge3d maxscript ooening up when starting max 2021 #40953

    Hi,

    It seems that the file you wanted to attach is missing. The size limit on the forum is 4MB, maybe that’s why. If that’s the case you can upload it somewhere else and post a link here.

    Co-founder and lead developer at Soft8Soft.

    in reply to: Unbound HTML Elements #40932

    Hi,

    Thanks for the report! We will fix it in the next verge3d update.

    Co-founder and lead developer at Soft8Soft.

    in reply to: KHR_parallel_shader_compile extension not supported #40911

    Hi,

    It gives the above error and one more error, Failed to load resource: the server responded with a status of 404 (Not Found)

    It seems that the server doesn’t allow accessing .gltf files. I think you have the same problem as described here:
    https://www.soft8soft.com/topic/unable-to-load-on-my-website/#post-28005

    Co-founder and lead developer at Soft8Soft.

    in reply to: Inaccurate raycast on camera rotation? #40581

    Hi,

    This kind of “lagging” usually happens when the code that uses the position/rotation of a camera (or any other object) is executed before those transforms are automatically updated on the current frame. As a result it uses the old values and therefore has 1 frame lag.

    It’s difficult to say without the actual code, but if you use the camera transforms in your calculations then updating the camera’s world matrix just before obtaining its position/rotation may help:

    
    camera.updateMatrixWorld();
    

    Co-founder and lead developer at Soft8Soft.

    in reply to: Load gltf uncaught range error #40578

    Hi,

    It looks like there’s a problem with the gltf file itself and it can’t be loaded properly. Can you attach the problematic gltf file so we could reproduce the issue?

    Co-founder and lead developer at Soft8Soft.

    in reply to: Replacing preloader image does not work in 3.7.0pre3 #40559

    Hi,

    You should be able to replace the preloader logo via its css class. It should work if you add something like this to the application CSS file:

    
    .v3d-simple-preloader-logo {
        background-image: url("myLogo.png");
    }
    

    Co-founder and lead developer at Soft8Soft.

    in reply to: Browser cache #40558

    Hi,

    This can be done if your website is built as a single-page application (SPA), so you basically have only one page without reloading. That way you don’t have to reload a verge3d application as well.

    Co-founder and lead developer at Soft8Soft.

    in reply to: Free rotary around object as the same in blender #40556

    Hi,

    The camera is implemented to always maintain the up direction, so it can’t rotate over the poles and turn upside down as a result. It needs to code a separate camera control mode to support that.

    Co-founder and lead developer at Soft8Soft.

    in reply to: Disable camera easing effects #40456

    Hi,

    If you use OrbitControls in your application you can change that via js API by disabling the enableDamping option:

    
    app.controls.enableDamping = false;
    

    Co-founder and lead developer at Soft8Soft.

    in reply to: Problem with set display to none/ Webflow object #40405

    Hi,

    Is the click event puzzle even triggered on click? You can test that by adding a “print to console” puzzle inside and see if it prints anything.

    Also, make sure that you specified the correct element id in the “set style” puzzle. It should look something like this:
    set_style.png

    Also, there could be errors in the browser console if something goes wrong, it’s worth checking out.

    Attachments:
    You must be logged in to view attached files.

    Co-founder and lead developer at Soft8Soft.

Viewing 15 posts - 121 through 135 (of 442 total)