Waste of time with gui ... hover and behind

ok i want to show a cursor from gui script
i use GUI.DrawTexture to show the cursor picture.
but the cursor show behind the : inventory,mini map, char stats, chat window,etc…

i know this is the order.
so the script of the cursor is executed before other one.

is there a way to change the order of the script , or make GUI Level

i mean if level is 7 then the lvl 8 show hover

Anyway thanks for your help.

GUI.depth. It only works if you have separate scripts; setting GUI.depth in the same script won’t change the order.

So you’re saying that you want to have it so that your cursor is rendered in front of all your other UnityGUI elements? Not very savvy with UnityGUI, but possibly try GUI.depth?

Hope that helps, Klep