하위 모드 연동 및 통합 가이드
🧩 공식 하위 모드 목록
| 하위 모드 | Dasik Library 활용 기능 |
|---|---|
| Better Dogs | 개의 유전학, 무리 Boids, 경비 모드, 전용 GameRules. |
| Natural Reproduction | 가계도 시스템, 근친 위험도 예측, 적응형 크기 스케일. |
| Collapsible Game Rule Screen | 굵은 헤더(§l)를 가진 동적 GameRules 범주 접기 지원. |
| Bat Ecology | 공중 Boids 알고리즘을 통한 자연스러운 박쥐 무리 비행. |
| Ore Amplifier | 광석 생성 확률 분포 연산에 확률 유틸리티 사용. |
🛠️ 빌드 의존성 (Gradle / Maven)
kotlin
repositories {
maven {
name = "Modrinth"
url = uri("https://api.modrinth.com/maven")
}
}
dependencies {
modImplementation("maven.modrinth:dasik-library:1.8.39")
}groovy
repositories {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
dependencies {
modImplementation "maven.modrinth:dasik-library:1.8.39"
}xml
<repositories>
<repository>
<id>modrinth</id>
<url>https://api.modrinth.com/maven</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>maven.modrinth</groupId>
<artifactId>dasik-library</artifactId>
<version>1.8.39</version>
</dependency>
</dependencies>