feat(backAccessory): add optional collar to back accessories. If you

name it the same name + _collar (eg, back_base_0.png + back_base_0_collar.png), it's automatically handled
This commit is contained in:
Tyler Renelle 2014-04-13 21:33:47 -06:00
parent 01b3df06af
commit ffa21ca1f7

View file

@ -25,6 +25,10 @@ figure.herobox(ng-click='spell ? castEnd(profile, "user", $event) : clickMember(
span(class='{{profile.preferences.size}}_{{profile.items.gear.equipped.armor}}', ng-if='!profile.preferences.costume')
span(class='{{profile.preferences.size}}_{{profile.items.gear.costume.armor}}', ng-if='profile.preferences.costume')
// Cape colar
span(class='{{profile.items.gear.equipped.back}}_collar', ng-if='!profile.preferences.costume')
span(class='{{profile.items.gear.costume.back}}_collar', ng-if='profile.preferences.costume')
// Hair
span(class='head_0')
span(class='hair_base_{{profile.preferences.hair.base}}_{{profile.preferences.hair.color}}')