Tabnine Logo
ParticleController.activateParticles
Code IndexAdd Tabnine to your IDE (free)

How to use
activateParticles
method
in
com.badlogic.gdx.graphics.g3d.particles.ParticleController

Best Java code snippets using com.badlogic.gdx.graphics.g3d.particles.ParticleController.activateParticles (Showing top 3 results out of 315)

origin: libgdx/libgdx

private void addParticles (int count) {
  count = Math.min(count, maxParticleCount - controller.particles.size);
  if (count <= 0) return;
  controller.activateParticles(controller.particles.size, count);
  controller.particles.size += count;
}
origin: libgdx/libgdx

private void addParticles (int count) {
  count = Math.min(count, maxParticleCount - controller.particles.size);
  if (count <= 0) return;
  controller.activateParticles(controller.particles.size, count);
  controller.particles.size += count;
}
origin: com.badlogicgames.gdx/gdx

private void addParticles (int count) {
  count = Math.min(count, maxParticleCount - controller.particles.size);
  if (count <= 0) return;
  controller.activateParticles(controller.particles.size, count);
  controller.particles.size += count;
}
com.badlogic.gdx.graphics.g3d.particlesParticleControlleractivateParticles

Javadoc

Generally called by the Emitter. This method will notify all the sub systems that a given amount of particles has been activated.

Popular methods of ParticleController

  • <init>
  • init
    Initialize the controller. All the sub systems will be initialized and binded to the controller. Mus
  • start
    Start the simulation.
  • copy
  • dispose
  • end
    End the simulation.
  • draw
    Updates the renderer used by this controller, usually this means the particles will be draw inside a
  • setTransform
    Sets the current transformation to the given one.
  • translate
    Postmultiplies the current transformation with a translation matrix represented by the given transla
  • update
    Updates the particles data
  • allocateChannels
  • bind
    Bind the sub systems to the controller Called once during the init phase.
  • allocateChannels,
  • bind,
  • calculateBoundingBox,
  • findIndex,
  • findInfluencer,
  • getBoundingBox,
  • isComplete,
  • killParticles,
  • load

Popular in Java

  • Making http requests using okhttp
  • addToBackStack (FragmentTransaction)
  • requestLocationUpdates (LocationManager)
  • notifyDataSetChanged (ArrayAdapter)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now