Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
EaseonCS - Core
ModLicenseRef-All-Rights-Reserved

EaseonCS - Core

A client-side core that serves as the shared foundation for all Easeon modules.

652
Downloads
0
Followers
7 months ago
Updated
📦
6
Versions
librarytechnologyutilityfabric
Download Latestv1.1.2.1+1.21.11View on Modrinth

📖About EaseonCS - Core

🌿 Easeon

Overview

A client-side core that serves as the shared foundation for all Easeon modules, freely available for any mod to reference and use.

Example

Spoiler

Feature Definition

package com.example;

import com.easeon.cs.core.api.EaseonFeatureEnumLike;
import com.easeon.cs.core.config.model.*;

public enum FeatureExample implements EaseonFeatureEnumLike {
    // ✅ Toggle Example: Enable or disable the minimap
    SHOW_MINIMAP("featuredemo.show_minimap",
            new ToggleConfig() {{ Enabled = true; }}),

    // ✅ Slider Example: Adjust screen brightness (1–10)
    SCREEN_BRIGHTNESS("featuredemo.screen_brightness",
            new SliderConfig() {{ Enabled = true; Value = 5; }}, 1, 10) {
        @Override public String getValueFormat() { return "featuredemo.screen_brightness.format"; }
    },

    // ✅ Hotkey Example: Toggle fullscreen with a shortcut
    TOGGLE_FULLSCREEN("featuredemo.toggle_fullscreen",
            new HotkeyConfig() {{ Enabled = true; Key = 70; Mod = 2; }}); // Example: Ctrl + F

    private final String title;
    private final Object defaultConfig;
    private final int min, max;

    FeatureExample(String title, Object defaultConfig) { this(title, defaultConfig, 0, 0); }
    FeatureExample(String title, Object defaultConfig, int min, int max) {
        this.title = title; this.defaultConfig = defaultConfig; this.min = min; this.max = max;
    }

    @Override public String id() { return name(); }
    @Override public String title() { return title; }
    @Override public Object getDefaultConfig() { return defaultConfig; }
    @Override public int getMin() { return min; }
    @Override public int getMax() { return max; }
}

Mod Initialization

package com.example;

import com.easeon.cs.core.EaseonClientCore;
import net.fabricmc.api.ClientModInitializer;

public class TemplateModClient implements ClientModInitializer {
    @Override
    public void onInitializeClient() {
         EaseonClientCore
            .init("feature-demo", "feature.demo.config.json")
                .category("UI", "featuredemo.ui")
                .section("GENERAL", "featuredemo.ui.general")
                    .slider(FeatureExample.SCREEN_BRIGHTNESS)
                .section("CONTROL", "featuredemo.ui.control")
                    .toggle(FeatureExample.SHOW_MINIMAP)
                    .hotkey(FeatureExample.TOGGLE_FULLSCREEN)
            .build();
    }
}

Accessing Config Values

   var config = EaseonClientCore.getSliderConfig(FeatureExample.SCREEN_BRIGHTNESS);
   if (!config.Enabled) return;
   System.out.println(config.value);

Settings Screen Usage

   // Open settings screen directly
   EaseonClientCore.openSettingsScreen();

   // Or manually open the screen returned by getSettingsScreen()
   MinecraftClient.getInstance().setScreen(EaseonClientCore.getSettingsScreen());

en_us.json

{
  "featuredemo.ui": "Feature Demo",
  "featuredemo.ui.general": "General",
  "featuredemo.ui.control": "Control",

  "featuredemo.screen_brightness": "Screen Brightness",
  "featuredemo.screen_brightness.format": "Brightness: %.0f",
  "featuredemo.show_minimap": "Show Minimap",
  "featuredemo.toggle_fullscreen": "Toggle Fullscreen"
}

Preview Image

Replace this with a description



🔗 More Easeon Mods

Looking for more lightweight and practical mods in the same style?
Check out other Easeon series mods here.

👥 Team & Contributors

Teron
TeronOwner

⚙️ Compatibility

Environment
💻 Client-side
Loaders
fabric
Minecraft Versions
1.21.11

🔗 Links

Modrinth Page