Package appeng.helpers

Examples of appeng.helpers.Splotch


      return;
    }

    dots = new ArrayList( howMany );
    for (int x = 0; x < howMany; x++)
      dots.add( new Splotch( in ) );

    isLit = 0;
    for (Splotch s : dots)
    {
      if ( s.lumen )
View Full Code Here


  private void removeSide(ForgeDirection side)
  {
    Iterator<Splotch> i = dots.iterator();
    while (i.hasNext())
    {
      Splotch s = i.next();
      if ( s.side == side )
        i.remove();
    }

    markForUpdate();
View Full Code Here

        dots = new ArrayList<Splotch>();

      if ( dots.size() > 20 )
        dots.remove( 0 );

      dots.add( new Splotch( col, lit, side, hitVec ) );
      if ( lit )
        isLit += LIGHT_PER_DOT;

      maxLit();
      markForUpdate();
View Full Code Here

TOP

Related Classes of appeng.helpers.Splotch

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.