-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from ZigyTheBird/dev
Release 2.3.0
- Loading branch information
Showing
63 changed files
with
688 additions
and
1,474 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Fixed a bug where animation didn't play with PlayerParts set to null client side. | ||
The mod now applies a little bit of fade length by default unless it's set to 0. | ||
Now has flashback, replaymod, and reforgedplay compatibility. | ||
Will now play currently active animations for players that weren't there when it started. | ||
API changes, check the wiki fr fr. |
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
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
12 changes: 5 additions & 7 deletions
12
common/src/main/java/com/zigythebird/playeranimatorapi/ModInit.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,17 +1,15 @@ | ||
package com.zigythebird.playeranimatorapi; | ||
|
||
import com.mojang.logging.LogUtils; | ||
import com.zigythebird.multiloaderutils.utils.Platform; | ||
import com.zigythebird.playeranimatorapi.azure.ModAzureUtils; | ||
import net.minecraft.resources.ResourceLocation; | ||
import org.slf4j.Logger; | ||
|
||
public class ModInit { | ||
public static final String MOD_ID = "playeranimatorapi"; | ||
public static final Logger LOGGER = LogUtils.getLogger(); | ||
|
||
public static void init() { | ||
if (Platform.isModLoaded("azurelib", "mod.azure.azurelib.common.internal.common.AzureLib")) { | ||
ModAzureUtils.init(); | ||
} | ||
} | ||
public static final ResourceLocation altStopPlayerAnimationPacket = ResourceLocation.fromNamespaceAndPath(MOD_ID, "alt_stop_player_animation_packet"); | ||
public static final ResourceLocation altPlayPlayerAnimationPacket = ResourceLocation.fromNamespaceAndPath(MOD_ID, "alt_play_player_animation_packet"); | ||
|
||
public static void init() {} | ||
} |
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
Oops, something went wrong.