Author Topic: Add the depth property to HUDText  (Read 3644 times)

alexlange

  • Newbie
  • *
  • Thank You
  • -Given: 5
  • -Receive: 0
  • Posts: 34
    • View Profile
Add the depth property to HUDText
« 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.        

ArenMook

  • Administrator
  • Hero Member
  • *****
  • Thank You
  • -Given: 337
  • -Receive: 1171
  • Posts: 22,128
  • Toronto, Canada
    • View Profile
Re: Add the depth property to HUDText
« Reply #1 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.