Package appeng.api.networking.ticking

Examples of appeng.api.networking.ticking.TickRateModulation


        int diff = (int) (currentTick - tt.lastTick);
        if ( diff >= tt.current_rate )
        {
          // remove tt..
          upcomingTicks.poll();
          TickRateModulation mod = tt.gt.tickingRequest( tt.node, diff );
 
          switch (mod)
          {
          case FASTER:
            tt.setRate( tt.current_rate - 2 );
View Full Code Here

TOP

Related Classes of appeng.api.networking.ticking.TickRateModulation

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.