Package erogenousbeef.bigreactors.common.data

Examples of erogenousbeef.bigreactors.common.data.RadiationPacket


    // Propagate radiation to others
    CoordTriplet originCoord = source.getWorldLocation();
    CoordTriplet currentCoord = new CoordTriplet(0, 0, 0);
   
    effectiveRadIntensity *= 0.25f; // We're going to do this four times, no need to repeat
    RadiationPacket radPacket = new RadiationPacket();

    for(ForgeDirection dir : StaticUtils.CardinalDirections) {
      radPacket.hardness = radHardness;
      radPacket.intensity = effectiveRadIntensity;
      int ttl = 4;
View Full Code Here

TOP

Related Classes of erogenousbeef.bigreactors.common.data.RadiationPacket

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.