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.

Play Video not playing Video

Home Forums Bug Reports and Feature Requests Play Video not playing Video

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #78133
    tomtm
    Participant

    Hi
    Verge for Blender 4.7.1
    there is a bug in the play video puzzle, if I copy puzzle from an older verge version it works.

    Difference in the visual_logic.js
    WORKING

    video = loadVideo(‘video/videotest.mp4’);
    replaceTexture(‘cube_material’, ‘Cookiehead.jpg’, video, function() {});
    playSound(video, true);

    NOT WORKING
    video = loadVideo(‘video/videotest.mp4’);
    replaceTexture(‘cube_material’, ‘Cookiehead.jpg’, video, function() {});
    playSound(loadVideo(video), true);

    #78142
    kdv
    Participant

    There is an error in your logic in the second variant. Get rid of “loadVideo” in “playSound”.

    Puzzles and JS coding. 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 the meaning at all.

    #78152
    tomtm
    Participant

    Hi kdv

    thanks, true… this was my mistake. :wacko:

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