Forked from anonymous/gist:a9b876d7ae101569f6826845722fcfbc
Last active
August 28, 2017 21:54
-
-
Save TheCire/11d99028a6d78fd2ef2298cf5d3e6804 to your computer and use it in GitHub Desktop.
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
void HideCraftingPanels(){ | |
for(var i = 1; i < 7; i++) { | |
HideCraftingPanel("CraftItemsPanel" + i.ToString()); | |
} | |
} | |
public void ShowCraftPanel(int panelNumber ){ | |
HideCraftingPanels(); | |
ShowCraftingPanel("CraftItemsPanel" + panelNumber.ToString()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment