GetPaused
This function returns whether or not the emitter is paused or playing.
Syntax
Returns
This function returns a boolean that, if the emitter is paused the function will return true. But, if the emitter is playing the return will be false.
Example
#include "Leadwerks.h"
using namespace Leadwerks;
int main(int argc, const char *argv[])
{
Leadwerks::Window* window = Leadwerks::Window::Create();
Context* context = Context::Create(window);
World* world = World::Create();
Camera* camera = Camera::Create();
camera->Move(0, 0, -3);
//Create an emitter
Emitter* emitter = Emitter::Create(100);
while (true)
{
if (window->Closed() || window->KeyDown(Key::Escape)) return false;
Leadwerks::Leadwerks::Time::Update();
world->Update();
world->Render();
if (window->KeyHit(Key::Space))
{
if (emitter->GetPaused() == true) //emitter is paused
{
emitter->Play();
}
else //emitter is not paused
{
emitter->Pause();
}
}
context->Sync();
}
}