作者:rebot | 分类:模组
Minecraft 版本: 1.20.1 1.21.1
平台: fabric forge neoforge
标签: library
Quantified API is a high-performance Minecraft modding framework designed to offload heavy computations, prevent lag, and make your mods scale efficiently across modern hardware. It is actively maintained and updated, with bug fixes, new features, and optimizations coming regularly.
《 Core Features 》
《 How It Works 》
Quantified API analyzes submitted jobs and routes them efficiently:
Automatic caching, multithreading, GPU fallback, and network execution ensure your mods stay smooth and responsive.
《 Webpanel 》
Quantified API includes a local webpanel that allows:
Runs locally with zero internet requirement. Perfect for mod developers wanting live insights. It is disabled by default, and can be enabled in the config file, found at `Config/Quantified/quantified_config.json`
《 Quick Examples 》
Simple async task:
// Submit a task asynchronously
CompletableFuture<String> result = QuantifiedAPI.submit("myTask", () -> {
return "done";
});
Parallel workload:
ParallelCompute.builder("mymod", "chunkPrefetch", taskId)
.slices(() -> buildSlices())
.sliceExecutor(slice -> processSlice(slice))
.reducer(results -> combine(results))
.maxParallelism(Runtime.getRuntime().availableProcessors())
.submit();
GPU/OpenCL tasks:
QuantifiedOpenCL.builder("mymod", "gpu-raytrace", taskKey)
.workload(context -> runKernel(context))
.cpuFallback(() -> fallback())
.complexity(QuantifiedOpenCL.Complexity.COMPLEX)
.submit();
《 Why You Should Use This API 》
《 Licensing & Contributions 》
Licensed under BRSSLA V1.3. Free for personal and commercial mod use with attribution. Large-scale or commercial modpacks/mods should contact BlackRift Studios.
All contributions, bug fixes, examples, and feature requests on GitHub are greatly appreciated. Community involvement helps the API evolve and improve constantly.
Supported modpacks and developers can rely on active updates, improvements, and ongoing guidance.
This project is actively supported and receives frequent updates. If you want your mods to stay stable, scalable, and future-proof, I strongly recommend using Quantified API as your foundation.
Quantified API - Developed by Admany - BlackRift Studios - January 28, 2026
请登录后举报
暂无评论,抢个沙发吧~