Jump to content

Recommended Posts

Posted
#include "UltraEngine.h"

using namespace UltraEngine;

int main(int argc, const char* argv[])
{
    //Get the displays
    auto displays = GetDisplays();

    //Create window
    auto window = CreateWindow("Ultra Engine", 0, 0, 800, 600, displays[0], WINDOW_TITLEBAR | WINDOW_CENTER);

    //Load sound
    auto sound = LoadSound("https://raw.githubusercontent.com/Leadwerks/Documentation/master/Assets/Sound/notification.wav");

    //Play sound
    auto speaker = CreateSpeaker();
    speaker->SetSound(sound);
    speaker->SetLooping(true);
    speaker->Play();

    while (window->Closed() == false)
    {
        if (window->KeyDown(KEY_ESCAPE)) break;
    }
    return 0;
}

 This is the C++ example from the Documenation.

LoadSound gives me a Blank_d.exe: 0xC0000094: Integer division by zero error. I tested also with different soundfiles.

  • Thanks 1

Leadwerks 4.x Pro, examples please for C++,

english is not my native language.

  • 2 weeks later...
Posted

I just ran the same thing and had no problems.

Are you using 0.9.8 or 0.9.9?

My job is to make tools you love, with the features you want, and performance you can't live without.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...