Skip to content

Commit

Permalink
move all but one asm transformer to mixins
Browse files Browse the repository at this point in the history
  • Loading branch information
mist475 committed Aug 20, 2023
1 parent a586462 commit 6336ba9
Show file tree
Hide file tree
Showing 29 changed files with 341 additions and 989 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,17 @@ apiPackage =
accessTransformersFile = dsurround_at.cfg

# Provides setup for Mixins if enabled. If you don't know what mixins are: Keep it disabled!
usesMixins = false
usesMixins = true
# Adds some debug arguments like verbose output and export
usesMixinDebug = false
usesMixinDebug = true
# Specify the location of your implementation of IMixinConfigPlugin. Leave it empty otherwise.
mixinPlugin =
# Specify the package that contains all of your Mixins. You may only place Mixins in this package or the build will fail!
mixinsPackage =
mixinsPackage = mixins
# Specify the core mod entry class if you use a core mod. This class must implement IFMLLoadingPlugin!
# This parameter is for legacy compatibility only
# Example value: coreModClass = asm.FMLPlugin + modGroup = com.myname.mymodid -> com.myname.mymodid.asm.FMLPlugin
coreModClass = asm.TransformLoader
coreModClass = mixinplugin.DynamicSurroundingsEarlyMixins
# If your project is only a consolidation of mixins or a core mod and does NOT contain a 'normal' mod ( = some class
# that is annotated with @Mod) you want this to be true. When in doubt: leave it on false!
containsMixinsAndOrCoreModOnly = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class Module {
public static final String MOD_ID = "@MODID@";
public static final String MOD_NAME = "@MODNAME@";
public static final String VERSION = "@VERSION@";
public static final String DEPENDENCIES = "required-after:Forge@[10.13.4.1614,)";
public static final String DEPENDENCIES = "required-after:Forge@[10.13.4.1614,);required-after:gtnhmixins@[2.0.0,)";
public static final String GUI_FACTORY = "org.blockartistry.mod.DynSurround.client.gui.ConfigGuiFactory";

@Instance(MOD_ID)
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 6336ba9

Please sign in to comment.