16 lines
591 B
Plaintext
16 lines
591 B
Plaintext
URL: https://wiki.studiominus.nl/snippets/texturePackSystem.html
|
|
Title: People Playground Modding - Basic texture pack system
|
|
==================================================
|
|
|
|
Basic texture pack system
|
|
by Talon
|
|
public static void Main()
|
|
{
|
|
ReplaceTextures("Sword");
|
|
}
|
|
|
|
public static void ReplaceTextures(string ItemToReplace)
|
|
{
|
|
ModAPI.FindSpawnable(ItemToReplace).Prefab.GetComponent<SpriteRenderer>().sprite = ModAPI.LoadSprite("sprites/" + ItemToReplace + ".png");
|
|
ModAPI.FindSpawnable(ItemToReplace).ViewSprite = ModAPI.LoadSprite("sprites/" + ItemToReplace + "Thumb.png");
|
|
} |