generated from calmilamsy/stationapi-example-mod
-
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.
* Attempt to update to latest biny and newer gradle, loom, and mod vers… * Undo migration to newer biny mappings * Update to latest biny mappings (correctly this time) * Get mod working on StationAPI alpha.3 * Remove mixin extras; Update AMI version; Fix version number * Changed StationAPI version compatibility in fabric.mod.json
- Loading branch information
Showing
12 changed files
with
89 additions
and
82 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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
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
36 changes: 18 additions & 18 deletions
36
src/main/java/net/mine_diver/smoothbeta/mixin/client/multidraw/RenderListAccessor.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,34 +1,34 @@ | ||
package net.mine_diver.smoothbeta.mixin.client.multidraw; | ||
|
||
import net.minecraft.class_472; | ||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.gen.Accessor; | ||
|
||
import java.nio.IntBuffer; | ||
import net.minecraft.client.render.world.ChunkRenderer; | ||
|
||
@Mixin(class_472.class) | ||
@Mixin(ChunkRenderer.class) | ||
public interface RenderListAccessor { | ||
@Accessor("field_2486") | ||
void smoothbeta_setField_2486(IntBuffer buffer); | ||
@Accessor("glListBuffer") | ||
void smoothbeta_setGlListBuffer(IntBuffer buffer); | ||
|
||
@Accessor("field_2487") | ||
boolean smoothbeta_getField_2487(); | ||
@Accessor("initialized") | ||
boolean smoothbeta_getInitialized(); | ||
|
||
@Accessor("field_2480") | ||
int smoothbeta_getField_2480(); | ||
@Accessor("x") | ||
int smoothbeta_getX(); | ||
|
||
@Accessor("field_2481") | ||
int smoothbeta_getField_2481(); | ||
@Accessor("y") | ||
int smoothbeta_getY(); | ||
|
||
@Accessor("field_2482") | ||
int smoothbeta_getField_2482(); | ||
@Accessor("z") | ||
int smoothbeta_getZ(); | ||
|
||
@Accessor("field_2483") | ||
float smoothbeta_getField_2483(); | ||
@Accessor("offsetX") | ||
float smoothbeta_getOffsetX(); | ||
|
||
@Accessor("field_2484") | ||
float smoothbeta_getField_2484(); | ||
@Accessor("offsetY") | ||
float smoothbeta_getOffsetY(); | ||
|
||
@Accessor("field_2485") | ||
float smoothbeta_getField_2485(); | ||
@Accessor("offsetZ") | ||
float smoothbeta_getOffsetZ(); | ||
} |
Oops, something went wrong.