Jump to content

Search the Community

Showing results for tags 'system'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to UNIGINE Forums
    • News & Announcements
    • Getting started
  • Development
    • Content Creation
    • World Design
    • Rendering
    • Animation
    • Physics, Navigation and Path Finding
    • UI Systems
    • Sound & Video
    • Editor
    • C++ Programming
    • C# Programming
    • Networking
    • Sim IG (Image Generator)
    • VR Discussions
    • General
  • Improving UNIGINE
    • Documentation
    • Feedback for UNIGINE team
    • Bug Reports
    • Unigine SDK Beta feedback
  • Community
    • Add-on Store (https://store.unigine.com/)
    • Showcase
    • Collaboration
    • Tools, Plugins, Materials & Tutorials
    • General Discussions
  • Legacy
    • UnigineScript

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Found 3 results

  1. Hi, what would be the proper way to export custom components used in a project to another project ? So far, I've been moving the C++ source and header files of my custom components from the source folder of my Unigine project to the source folder of another one. I then recompile the moved components in the new project. Is there a quicker and more efficient way ?
  2. Hi, sometimes when bounding boxes of particle systems, which are near to each other, change their size due to emitting new particles, the render order changes between them which results in popping of particles to front which were in the background before. The order changes back when the bounding box gets smaller again. Also when moving arround a popping occurs. Is there any mechanism which sorts the particles between two or more particle systems, to prevent this effect? From what I see only particles in the same particle system get sorted and render order between particle systems is calculated by the bounding volume distance to the viewer. Regards, Sebastian Vesenmayer
  3. Particles enable disable by API

    Hi, I try to turn on and off a object particles which I loaded by Unigine::World::get()->loadNode, but nothing happens. The code below will be visited in debug. But particles are still spawning. Unigine::Vector<Unigine::NodePtr> hierarchy; myloadednode->getHierarchy(hierarchy); for (auto & node : hierarchy) { if (node->getType() == Unigine::Node::OBJECT_PARTICLES) { Unigine::ObjectParticlesPtr particle = Unigine::ObjectParticles::cast(node); particle->setNumberPerSpawn(0); particle->setEmitterEnabled(0); } } Did I forget something? Thanks, Sebastian
×
×
  • Create New...