Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Transport_drones | 25 | 4 months ago | lgpl-3.0 | Lua | ||||||
Mod for Factorio | ||||||||||
Transport Pipes | 20 | 4 years ago | 14 | mit | Java | |||||
Buildcraft without mods! | ||||||||||
Refinedpipes | 19 | a year ago | 16 | mit | Java | |||||
A mod which aims to have the best item, fluid and energy transport pipes in modded Minecraft | ||||||||||
Outpostplanner | 9 | 3 years ago | 8 | mit | Lua | |||||
Factorio mod for building mining outposts | ||||||||||
Clothesline Fabric | 8 | 3 years ago | 2 | mit | Java | |||||
A seamless laundry experience that is definitely not an item transport mod. | ||||||||||
Transportlinecolormod | 6 | 8 years ago | 1 | mit | C# | |||||
Cities: Skylines Mod - Automatically assign random color for each created transport line | ||||||||||
Helicopter | 5 | 4 months ago | C# | |||||||
Transport Cargo Pod Unofficial Update to 1.1 | ||||||||||
Clothesline | 5 | 4 years ago | 6 | mit | Java | |||||
The item transport mod nobody asked for | ||||||||||
Payday 2 Forklift Capacity | 3 | 6 years ago | 1 | mit | Lua | |||||
Payday 2 BLT mod that allows to increase forklift capacity up to 8 to be able to transport all required bags in one go for Long Fellow trophy |
A seamless laundry experience that is definitely not an item transport mod for Fabric.
To get started, refer to the Fabric documentation.
To use this mod in your workspace, add the following to your build.gradle
:
repositories {
maven {url "https://maven.jamieswhiteshirt.com/libs-release/"}
}
dependencies {
modCompile "com.jamieswhiteshirt:clothesline-fabric:<CLOTHESLINE_FABRIC_VERSION>"
}
Clothesline has an API, but it is currently unstable and with limited functionality.
The API is located in the com.jamieswhiteshirt.clotheslinefabric.api
package.
To get started, get the network manager of a World by casting to the NetworkManagerProvider
interface and call getNetworkManager
.
Example:
import com.jamieswhiteshirt.clotheslinefabric.api.NetworkManagerProvider;
import com.jamieswhiteshirt.clotheslinefabric.api.NetworkManager;
class Example {
void example(World world) {
NetworkManager manager = ((NetworkManagerProvider) world).getNetworkManager();
/* ... */
}
}