9761fde77d
WARNING: no patch merged, we will start merge later there are to many update between 1.21.11 and 26.1.2, so we need more time to build a base version which can stable to use
20 lines
866 B
Java
20 lines
866 B
Java
package fun.bm.lophine.config.modules.experiment;
|
|
|
|
import me.earthme.luminol.config.IConfigModule;
|
|
import me.earthme.luminol.config.flags.ConfigClassInfo;
|
|
import me.earthme.luminol.config.flags.ConfigInfo;
|
|
import me.earthme.luminol.enums.EnumConfigCategory;
|
|
|
|
@ConfigClassInfo(category = EnumConfigCategory.EXPERIMENT, name = "ray_tracking_entity_tracker")
|
|
public class RayTrackingEntityTrackerConfig implements IConfigModule {
|
|
@ConfigInfo(name = "enabled")
|
|
public static boolean enabled = false;
|
|
@ConfigInfo(name = "skip_marker_armor_stands")
|
|
public static boolean skipMarkerArmorStands = true;
|
|
@ConfigInfo(name = "check_interval_ms")
|
|
public static int checkIntervalMs = 10;
|
|
@ConfigInfo(name = "tracing_distance")
|
|
public static int tracingDistance = 48;
|
|
@ConfigInfo(name = "hitbox_limit")
|
|
public static int hitboxLimit = 50;
|
|
} |