-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/1.19.4/wip' into 1.20.1/wip
- Loading branch information
Showing
89 changed files
with
1,075 additions
and
836 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
# Done to increase the memory available to Gradle. | ||
org.gradle.jvmargs = -Xmx1G | ||
org.gradle.parallel = true | ||
|
||
# Fabric Properties | ||
loom_version = 1.3.8 | ||
loom_vineflower_version = 1.11.0 | ||
loom_version = 1.6.11 | ||
minecraft_version = 1.20.1 | ||
yarn_mappings = 1.20.1+build.10 | ||
loader_version = 0.14.21 | ||
loader_version = 0.15.10 | ||
|
||
# Mod Properties | ||
mod_version = 3.0.0-beta.4 | ||
mod_version = 3.0.0-beta.5 | ||
mod_minecraft_version = 1.20.1 | ||
maven_group = me.pepperbell | ||
archives_base_name = continuity | ||
|
||
# Dependencies | ||
fabric_version = 0.88.1+1.20.1 | ||
modmenu_version = 7.2.1 | ||
canvas_version = 20.0.2612 | ||
fabric_version = 0.89.0+1.20.1 | ||
modmenu_version = 7.2.2 | ||
canvas_version = 20.1.2632 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
src/main/java/me/pepperbell/continuity/api/client/CTMLoader.java
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
src/main/java/me/pepperbell/continuity/api/client/CTMLoaderRegistry.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
src/main/java/me/pepperbell/continuity/api/client/CTMProperties.java
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
src/main/java/me/pepperbell/continuity/api/client/CTMPropertiesFactory.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
src/main/java/me/pepperbell/continuity/api/client/CachingPredicatesFactory.java
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
src/main/java/me/pepperbell/continuity/api/client/CtmLoader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package me.pepperbell.continuity.api.client; | ||
|
||
public interface CtmLoader<T extends CtmProperties> { | ||
CtmProperties.Factory<T> getPropertiesFactory(); | ||
|
||
QuadProcessor.Factory<T> getProcessorFactory(); | ||
|
||
CachingPredicates.Factory<T> getPredicatesFactory(); | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/me/pepperbell/continuity/api/client/CtmLoaderRegistry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package me.pepperbell.continuity.api.client; | ||
|
||
import org.jetbrains.annotations.ApiStatus; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
import me.pepperbell.continuity.impl.client.CtmLoaderRegistryImpl; | ||
|
||
@ApiStatus.NonExtendable | ||
public interface CtmLoaderRegistry { | ||
static CtmLoaderRegistry get() { | ||
return CtmLoaderRegistryImpl.INSTANCE; | ||
} | ||
|
||
void registerLoader(String method, CtmLoader<?> loader); | ||
|
||
@Nullable | ||
CtmLoader<?> getLoader(String method); | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/me/pepperbell/continuity/api/client/CtmProperties.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package me.pepperbell.continuity.api.client; | ||
|
||
import java.util.Collection; | ||
import java.util.Properties; | ||
|
||
import org.jetbrains.annotations.Nullable; | ||
|
||
import net.minecraft.client.util.SpriteIdentifier; | ||
import net.minecraft.resource.ResourceManager; | ||
import net.minecraft.resource.ResourcePack; | ||
import net.minecraft.util.Identifier; | ||
|
||
public interface CtmProperties extends Comparable<CtmProperties> { | ||
Collection<SpriteIdentifier> getTextureDependencies(); | ||
|
||
interface Factory<T extends CtmProperties> { | ||
@Nullable | ||
T createProperties(Properties properties, Identifier resourceId, ResourcePack pack, int packPriority, ResourceManager resourceManager, String method); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
src/main/java/me/pepperbell/continuity/api/client/QuadProcessorFactory.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.