Tasharen Entertainment Forum

Support => Other Packages => Topic started by: alexlange on January 20, 2015, 11:06:54 PM

Title: Add the depth property to HUDText
Post by: alexlange on January 20, 2015, 11:06:54 PM
Hi, please consider adding depth to HUDText. It helps user sort their label easier :)

  1. public int labelDepth;

  1. Entry Create (){
  2. ...
  3. Entry ne = new Entry();
  4. ne.label.depth=labelDepth;
  5. ...
  6. }
  7.  
  8.        
Title: Re: Add the depth property to HUDText
Post by: ArenMook on January 28, 2015, 02:43:10 AM
Problem with that is that all labels would share the same depth then. Currently each new label is automatically added on top of all existing ones. It's intentional -- all new entries are more important than previous ones.