Skip to content

Commit ebf4902

Browse files
committed
Initial commit
0 parents  commit ebf4902

File tree

101 files changed

+5007
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+5007
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.gradle
2+
.idea
3+
build
4+
gradle.properties

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Blue <https://www.bluecolored.de>
4+
Copyright (c) contributors
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# About
2+
This is a native BlueMap addon that aims to add a renderer for each (vanilla) entity.
3+
This means that when bluemap renders your map, it will also show entities where they are stored in the world-files at the time of rendering.
4+
Note that the entities will be static. They will not move around. They will only be updated when bluemap
5+
renders the entities map-tile again.
6+
7+
# Usage
8+
Download the `BlueMapEntities.jar` from the releases and place it in the `packs` folder next to your
9+
bluemap-configs. You will need to purge/re-render the map to see the entities appear.

build.gradle.kts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
plugins {
2+
java
3+
id("com.gradleup.shadow") version "9.2.2"
4+
}
5+
6+
group = "de.bluecolored.bluemap.entities"
7+
version = "1.0"
8+
9+
repositories {
10+
mavenCentral()
11+
maven ( "https://repo.bluecolored.de/releases" )
12+
}
13+
14+
dependencies {
15+
compileOnly ( "de.bluecolored:bluemap-core:5.13" )
16+
compileOnly ( "org.projectlombok:lombok:1.18.32" )
17+
annotationProcessor ( "org.projectlombok:lombok:1.18.32" )
18+
}
19+
20+
java {
21+
toolchain.languageVersion = JavaLanguageVersion.of(21)
22+
withSourcesJar()
23+
}
24+
25+
tasks.withType(JavaCompile::class).configureEach {
26+
options.encoding = "utf-8"
27+
}
28+
29+
tasks.withType(AbstractArchiveTask::class).configureEach {
30+
isReproducibleFileOrder = true
31+
isPreserveFileTimestamps = false
32+
}

gradle/wrapper/gradle-wrapper.jar

62.2 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

gradlew

Lines changed: 249 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)