Thread Tools Display Modes
05/25/14, 10:06 AM   #1
hulksmash
 
hulksmash's Avatar
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 30
texture edge

Can anyone point me in the right direction to create a texture background and edge similar to the Skills window? I assume I need to use SetEdgeTexture but what texture uses that fuzzy dark cloud?
  Reply With Quote
05/25/14, 10:17 AM   #2
thelegendaryof
 
thelegendaryof's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 161
Edit - here you go:

Code:
<TopLevelControl name="ZO_RightFootPrintBackground" virtual="true">
	<Dimensions x="930" y="750" />
	<Anchor point="RIGHT" offsetY="20"/>
	<Controls>
		<Texture name="$(parent)Left" textureFile="EsoUI/Art/Miscellaneous/centerscreen_left.dds">
			<Dimensions x="1024" y="1024" />
			<Anchor point="TOPLEFT" offsetX="-65" offsetY="-75" />
		</Texture>
		<Texture name="$(parent)Right" textureFile="EsoUI/Art/Miscellaneous/centerscreen_right.dds">
			<Dimensions x="64" y="1024" />
			<Anchor point="TOPLEFT" relativeTo="$(parent)Left" relativePoint="TOPRIGHT" />
		</Texture>
	</Controls>
</TopLevelControl>
That remembers me - I actually need to use that manual creation in my own addon FastReport as well.

(dont let the names misslead you - you need both of them)

Last edited by thelegendaryof : 05/25/14 at 10:28 AM.
  Reply With Quote
05/25/14, 11:27 AM   #3
hulksmash
 
hulksmash's Avatar
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 30
Wow thanks what a huge difference this makes. This is almost exactly what I was looking for.
  Reply With Quote

ESOUI » Developer Discussions » Lua/XML Help » texture edge


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off