Add new configs for graphic swap.

This commit is contained in:
Ganom
2019-07-24 22:40:46 -04:00
committed by GitHub
parent 83775a63c6
commit 2ccd3da5b0

View File

@@ -96,7 +96,6 @@ public interface TMorphConfig extends Config
keyName = "globalAnimSwap",
name = "Global Animation Swap",
description = "DO NOT USE WITH ANIMATION SWAP BELOW",
group = "Experimental Functions",
hidden = true,
unhide = "experimentalFunctions"
@@ -132,6 +131,45 @@ public interface TMorphConfig extends Config
return 0;
}
@ConfigItem(
keyName = "globalGraphicSwap",
name = "Global Graphic Swap",
description = "DO NOT USE WITH GRAPHIC SWAP BELOW",
group = "Experimental Functions",
hidden = true,
unhide = "experimentalFunctions"
)
default int globalGraphicSwap()
{
return 0;
}
@ConfigItem(
keyName = "graphicSwap",
name = "Graphic Swap",
description = "ID",
group = "Experimental Functions",
hidden = true,
unhide = "experimentalFunctions"
)
default int graphicSwap()
{
return 0;
}
@ConfigItem(
keyName = "graphicTarget",
name = "Graphic Target",
description = "ID",
group = "Experimental Functions",
hidden = true,
unhide = "experimentalFunctions"
)
default int graphicTarget()
{
return 0;
}
//////////////////Mage