HomeSort by relevance Sort by last modified time
    Searched defs:imagesX (Results 1 - 3 of 3) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticlePointMesh.java 48 private int imagesX = 1;
52 public void setImagesXY(int imagesX, int imagesY) {
53 this.imagesX = imagesX;
145 int imgX = p.imageIndex % imagesX;
148 float startX = ((float) imgX) / imagesX;
150 float endX = startX + (1f / imagesX);
ParticleTriMesh.java 50 private int imagesX = 1;
142 public void setImagesXY(int imagesX, int imagesY) {
143 this.imagesX = imagesX;
145 if (imagesX != 1 || imagesY != 1){
249 int imgX = p.imageIndex % imagesX;
252 float startX = ((float) imgX) / imagesX;
254 float endX = startX + (1f / imagesX);
ParticleEmitter.java 99 private int imagesX = 1;
190 clone.particleMesh.setImagesXY(clone.imagesX, clone.imagesY);
359 particleMesh.setImagesXY(this.imagesX, this.imagesY);
635 return imagesX;
645 * @param imagesX the number of images along the X axis (width).
647 public void setImagesX(int imagesX) {
648 this.imagesX = imagesX;
649 particleMesh.setImagesXY(this.imagesX, this.imagesY);
673 particleMesh.setImagesXY(this.imagesX, this.imagesY)
    [all...]

Completed in 234 milliseconds