Fullbright

This commit is contained in:
2024-07-22 01:15:38 +03:00
parent 9327773e44
commit 4e93171437
10 changed files with 98 additions and 177 deletions

View File

@@ -1,9 +1,9 @@
modName = CacheDuper
modName = Luminous
# This is a case-sensitive string to identify your mod. Convention is to use lower case.
modId = cacheduper
modId = luminous
modGroup = com.lumijiez.cacheduper
modGroup = com.lumijiez.luminous
# WHY is there no version field?
# The build script relies on git to provide a version via tags. It is super easy and will enable you to always know the
@@ -15,7 +15,7 @@ autoUpdateBuildScript = false
minecraftVersion = 1.7.10
forgeVersion = 10.13.4.1614
# Select a username for testing your mod with breakpoints. You may leave this empty for a random user name each time you
# Select a username for testing your mod with breakpoints. You may leave this empty for a random username each time you
# restart Minecraft in development. Choose this dependent on your mod:
# Do you need consistent player progressing (for example Thaumcraft)? -> Select a name
# Do you need to test how your custom blocks interacts with a player that is not the owner? -> leave name empty
@@ -34,7 +34,7 @@ gradleTokenGroupName = GRADLETOKEN_GROUPNAME
# In case your mod provides an API for other mods to implement you may declare its package here. Otherwise, you can
# leave this property empty.
# Example value: apiPackage = api + modGroup = com.lumijiez.cacheduper -> com.lumijiez.cacheduper.api
# Example value: apiPackage = api + modGroup = com.lumijiez.luminous -> com.lumijiez.luminous.api
apiPackage =
# Specify the configuration file for Forge's access transformers here. I must be placed into /src/main/resources/META-INF/
@@ -49,7 +49,7 @@ mixinPlugin =
mixinsPackage =
# 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.lumijiez.cacheduper -> com.lumijiez.cacheduper.asm.FMLPlugin
# Example value: coreModClass = asm.FMLPlugin + modGroup = com.lumijiez.luminous -> com.lumijiez.luminous.asm.FMLPlugin
coreModClass =
# 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!