congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
ParticleSystem.destroyParticlesInGroup
Code IndexAdd Tabnine to your IDE (free)

How to use
destroyParticlesInGroup
method
in
org.jbox2d.particle.ParticleSystem

Best Java code snippets using org.jbox2d.particle.ParticleSystem.destroyParticlesInGroup (Showing top 4 results out of 315)

origin: libgdx/libgdx

/**
 * Destroy particles in a group. This function is locked during callbacks.
 * 
 * @param The particle group to destroy.
 * @param Whether to call the world b2DestructionListener for each particle is destroyed.
 * @warning This function is locked during callbacks.
 */
public void destroyParticlesInGroup(ParticleGroup group, boolean callDestructionListener) {
 assert (isLocked() == false);
 if (isLocked()) {
  return;
 }
 m_particleSystem.destroyParticlesInGroup(group, callDestructionListener);
}
origin: jbox2d/jbox2d

/**
 * Destroy particles in a group. This function is locked during callbacks.
 * 
 * @param The particle group to destroy.
 * @param Whether to call the world b2DestructionListener for each particle is destroyed.
 * @warning This function is locked during callbacks.
 */
public void destroyParticlesInGroup(ParticleGroup group, boolean callDestructionListener) {
 assert (isLocked() == false);
 if (isLocked()) {
  return;
 }
 m_particleSystem.destroyParticlesInGroup(group, callDestructionListener);
}
origin: com.github.almasb/fxgl-physics

/**
 * Destroy particles in a group. This function is locked during callbacks.
 *
 * @param group the particle group to destroy.
 * @param callDestructionListener Whether to call the world b2DestructionListener for each particle is destroyed.
 */
public void destroyParticlesInGroup(ParticleGroup group, boolean callDestructionListener) {
  assertNotLocked();
  particleSystem.destroyParticlesInGroup(group, callDestructionListener);
}
origin: andmizi/MobikeTags

/**
 * Destroy particles in a group. This function is locked during callbacks.
 * 
 * @param The particle group to destroy.
 * @param Whether to call the world b2DestructionListener for each particle is destroyed.
 * @warning This function is locked during callbacks.
 */
public void destroyParticlesInGroup(ParticleGroup group, boolean callDestructionListener) {
 assert (isLocked() == false);
 if (isLocked()) {
  return;
 }
 m_particleSystem.destroyParticlesInGroup(group, callDestructionListener);
}
org.jbox2d.particleParticleSystemdestroyParticlesInGroup

Popular methods of ParticleSystem

  • <init>
  • RotateBuffer
  • addContact
  • computeDepthForGroup
  • computeParticleCollisionEnergy
  • computeRelativeTag
  • computeTag
  • createParticle
  • createParticleGroup
  • destroyParticle
  • destroyParticleGroup
  • destroyParticlesInShape
  • destroyParticleGroup,
  • destroyParticlesInShape,
  • getCriticalPressure,
  • getCriticalVelocity,
  • getCriticalVelocitySquared,
  • getParticleColorBuffer,
  • getParticleCount,
  • getParticleDamping,
  • getParticleDensity

Popular in Java

  • Reading from database using SQL prepared statement
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getSupportFragmentManager (FragmentActivity)
  • compareTo (BigDecimal)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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