-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be796dd
commit 00562fc
Showing
8 changed files
with
63 additions
and
26 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
src/client/java/symbolics/division/modfest_credits/Modfest_creditsClient.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 |
---|---|---|
@@ -1,10 +1,17 @@ | ||
package symbolics.division.modfest_credits; | ||
|
||
import com.mojang.datafixers.util.Pair; | ||
import net.fabricmc.api.ClientModInitializer; | ||
import net.minecraft.client.gui.screen.CreditsScreen; | ||
import net.minecraft.client.gui.screen.option.CreditsAndAttributionScreen; | ||
|
||
import java.util.Comparator; | ||
|
||
// tf is this name whatever | ||
public class Modfest_creditsClient implements ClientModInitializer { | ||
@Override | ||
public void onInitializeClient() { | ||
// This entrypoint is suitable for setting up client-specific logic, such as rendering. | ||
|
||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
src/client/java/symbolics/division/modfest_credits/mixin/CreditsScreenMixin.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,19 @@ | ||
package symbolics.division.modfest_credits.mixin; | ||
|
||
import net.minecraft.client.gui.screen.CreditsScreen; | ||
import net.minecraft.util.Identifier; | ||
import org.spongepowered.asm.mixin.Mixin; | ||
|
||
@Mixin(CreditsScreen.class) | ||
public class CreditsScreenMixin { | ||
private Identifier CREDITS_TEXT_LOCATION; | ||
|
||
// @WrapOperation( | ||
// method = "init", | ||
// at = @At(value = "FIELD", target = "Lnet/minecraft/client/gui/screen/CreditsScreen;CREDITS_TEXT_LOCATION:Lnet/minecraft/util/Identifier;") | ||
// ) | ||
// public Identifier injectCredits(Operation<Identifier> original) { | ||
// return Identifier.of("mf121", "texts/credits.json"); | ||
// } | ||
|
||
} |
15 changes: 0 additions & 15 deletions
15
src/client/java/symbolics/division/modfest_credits/mixin/client/ExampleClientMixin.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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[ | ||
{ | ||
"section": "ModFest Participants", | ||
"disciplines": [ | ||
{ | ||
"discipline": "Armistice", | ||
"titles": [ | ||
{ | ||
"title": "God-Executive", | ||
"names": [ | ||
"hama" | ||
] | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"section": "ModFest Team", | ||
"disciplines": [ | ||
{ | ||
"discipline": "Being Hot + Sexy", | ||
"titles": [ | ||
{ | ||
"title": "Cultural Idol & Pop Icon", | ||
"names": [ | ||
"hama" | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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