This commit is contained in:
2021-11-10 01:04:06 -05:00
parent 9ee7e31bde
commit f2d8b29206
34 changed files with 4498 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<root>
<styles>
<include src="s2r://panorama/styles/dotastyles.vcss_c" />
<include src="s2r://panorama/styles/custom_game/end_screen.vcss_c" />
</styles>
<scripts>
<include src="s2r://panorama/scripts/custom_game/end_screen.vjs_c" />
</scripts>
<snippets>
<snippet name="player">
<Panel class="Player">
<Panel id="PlayerColor"/>
<DOTAAvatarImage id="AvatarImage" class="ScoreboardAvatar"/>
<Panel id="PlayerAndHeroNameContainer" class="TopBottomFlow">
<Label id="PlayerNameLabel" class="PlayerNameLabel" text=""/>
<Label id="HeroNameLabel" class="HeroNameLabel" text=""/>
</Panel>
<Label id="KillCount" text="0" />
</Panel>
</snippet>
<!-- PlayerStatus -->
<snippet name="PlayerStatus">
<Panel class="PlayerStatus">
<Panel id="StatusICON" />
<DOTAAvatarImage id="AvatarImage" class="ScoreboardAvatar"/>
<Label id="StatusText" html="true" text="" />
</Panel>
</snippet>
</snippets>
<Panel hittest="true" class="EndScreenRoot" >
<Label id="WinText" text="" />
<Panel id="PlayersPanel" >
<Panel id="PlayersPanelHeader" >
<Label id="KillCountTitle" text="#td_creature_kill_count_text" />
</Panel>
</Panel>
<Button id="ContinueButton" class="Hide" onactivate="Game.FinishGame();">
<Label text="#DOTA_Continue" />
</Button>
</Panel>
</root>