Jump to content

Explosion particle effect 1.0.0


1 Screenshot

About This File

Particle effect for explosion or blood hit with another material (and higher turbulence like 10000 and end radius around 0.8).

ParticleEffect component removes (technically temporally keeps) a particle emitter before second particle burst happens.

Code example, included to archive:

#include "UltraEngine.h"
#include "ComponentSystem.h"

using namespace UltraEngine;

int main(int argc, const char* argv[]) {
    RegisterComponents();
    auto displays = GetDisplays();
    auto window = CreateWindow("Ultra Engine", 0, 0, 1280, 720, displays[0], WINDOW_CENTER | WINDOW_TITLEBAR);
    auto world = CreateWorld();
    auto framebuffer = CreateFramebuffer(window);
    auto camera = CreateCamera(world);
    camera->SetClearColor(0.125);
    camera->SetPosition(0, 5, -4);
    camera->SetRotation(50, 0, 0);
    auto light = CreateBoxLight(world);
    light->SetRange(-10, 10);
    light->SetArea(15, 15);
    light->SetRotation(45, 35, 0);
    light->SetColor(2);
    auto ground = CreateBox(world, 10, 1, 10);
    ground->SetPosition(0, -0.5, 0);
    ground->SetColor(0, 1, 0);

    while (window->Closed() == false and window->KeyDown(KEY_ESCAPE) == false) {
        if (window->KeyHit(KEY_SPACE)) {
            auto particle = LoadPrefab(world, "Prefabs//Explosion.pfb");
            particle->SetPosition(0, 2, -2);
            for (auto const& component : particle->components) {
                component->Start();
            }
        }

        world->Update();
        world->Render(framebuffer);
    }
    return 0;
}

 


License

Ultra Standard License
  • Like 1
 Share


User Feedback

Recommended Comments

There are no comments to display.

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
Add a comment...

×   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...