Jump to content

Recommended Posts

Hey so I used Dragon Wolf Leo's Extended Sample Character template to make my character and everything about it works great EXCEPT:

In the character select screen, when I mouse hover over my character, the image changes BUT the GOLD NAME doesn't :/...is this a common issue with the Template or have I missed a step or done something wrong?

Anyways, once you directed my attention to the file in question I was able to pull out the original characters' name files and found that the problem is one simple naming convention - (the numbers and even the picture size dont matter as those are just relative to positioning):

<Atlas>
	<Texture filename="names_esctemplate.tex" />
	<Elements>
		<Element name="PROBLEM_HERE" u1="0.00048828125" u2="0.85009765625" v1="0.1962890625" v2="0.9990234375" />
	</Elements>
</Atlas>

where PROBLEM_HERE:is generated incorrectly:

wrong naming convention: names_esctemplate.tex or names_gold_esctemplate.tex

correct Element name should be (in both files): esctemplate.tex

Like the following below:

Correct names_esctemplate.xml

<Atlas>
	<Texture filename="names_esctemplate.tex" />
	<Elements>
		<Element name="esctemplate.tex" u1="0.00048828125" u2="0.85009765625" v1="0.1962890625" v2="0.9990234375" />
	</Elements>
</Atlas>

 

Correct names_gold_esctemplate.xml

<Atlas>
	<Texture filename="names_gold_esctemplate.tex" />
	<Elements>
		<Element name="esctemplate.tex" u1="0.00048828125" u2="0.85009765625" v1="0.1962890625" v2="0.9990234375" />
	</Elements>
</Atlas>

 

Edited by LethalBunny

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...