AutoloadHead() public method

public AutoloadHead ( string &headTexture, string &bossHeadTexture ) : void
headTexture string
bossHeadTexture string
return void
Exemplo n.º 1
0
        private void AutoloadNPC(Type type)
        {
            ModNPC npc = (ModNPC)Activator.CreateInstance(type);

            npc.mod = this;
            string name           = type.Name;
            string texture        = (type.Namespace + "." + type.Name).Replace('.', '/');
            string defaultTexture = texture;

            if (npc.Autoload(ref name, ref texture))
            {
                AddNPC(name, npc, texture);
                string headTexture     = defaultTexture + "_Head";
                string bossHeadTexture = headTexture + "_Boss";
                npc.AutoloadHead(ref headTexture, ref bossHeadTexture);
                if (ModLoader.TextureExists(headTexture))
                {
                    AddNPCHeadTexture(npc.npc.type, headTexture);
                }
                if (ModLoader.TextureExists(bossHeadTexture))
                {
                    AddBossHeadTexture(bossHeadTexture);
                    NPCHeadLoader.npcToBossHead[npc.npc.type] = NPCHeadLoader.bossHeads[bossHeadTexture];
                }
            }
        }