Upvote Upvoted 1 Downvote Downvoted
HUD Entities
posted in Q/A Help
1
#1
0 Frags +

Where are the hud entities (ControlName, fieldName, xpos, ypos) defined?

Where are the hud entities (ControlName, fieldName, xpos, ypos) defined?
2
#2
0 Frags +

clientscheme.res I think. Don't trust me on that one though.

clientscheme.res I think. Don't trust me on that one though.
3
#3
0 Frags +

Defined? As in a list of all possible or where they are edited? They're in just about every single .res file if you mean where each entity defines its own xpos/ypos/fieldName etc. A list of every single one I don't know of, you'd have to look through the default HUD for all the names.

"this/file/my.res" {
Entity {
  "fieldName" "thisfield"
  "xpos" "10"
  "ypos" "-10"
}
}

Getting all the combinations is a pain though (ie some bar might be relative to another bar like the HP bar inside of a healer).

Defined? As in a list of all possible or where they are edited? They're in just about every single .res file if you mean where each entity defines its own xpos/ypos/fieldName etc. A list of every single one I don't know of, you'd have to look through the default HUD for all the names.

[code]
"this/file/my.res" {
Entity {
"fieldName" "thisfield"
"xpos" "10"
"ypos" "-10"
}
}[/code]

Getting all the combinations is a pain though (ie some bar might be relative to another bar like the HP bar inside of a healer).
Please sign in through STEAM to post a comment.