XML Party Editing sprites not showing

Users who are viewing this thread

Hello!

I'm currently trying to recreate the Party Screen by creating a new view model and xml file. However I'm having problems getting some widgets to show on the screen for example this:

Code:
                        <Widget WidthSizePolicy="Fixed" HeightSizePolicy="Fixed" SuggestedWidth="!TopBackground.Width" SuggestedHeight="!TopBackground.Height" HorizontalAlignment="Right" VerticalAlignment="Top" Sprite="PartyScreen\header_right" ExtendBottom="16"/>

It should show the grey bar of the party on the right but it shows nothing. However this:

Code:
                <!--Top Panel-->
                <Widget VisualDefinition="TopMenu" DoNotAcceptEvents="true" DoNotPassEventsToChildren="true" WidthSizePolicy="Fixed" HeightSizePolicy="Fixed" SuggestedWidth="755" SuggestedHeight="176" HorizontalAlignment="Center" VerticalAlignment="Top" PositionYOffset="-250" Sprite="StdAssets\tabbar_standart">
                    <Children>
                        <TextWidget WidthSizePolicy="StretchToParent" HeightSizePolicy="Fixed" SuggestedHeight="80" HorizontalAlignment="Center" Brush="Party.Text.Title" Text="Titulo Teste" />
                    </Children>
                </Widget>

Does show the sprite around the Party title. My guess is that all the sprites related to "PartyScreen\.." are not being found by the game by itself, maybe there is some dll i'm missing to import in the mod.

But I can't even find where these are supposed to be neither the "PartyScreen\.." or the "StdAssets\.." from the other example.

Does anyone have any idea why they are not appearing? Or maybe can you tell me how to create my own custom ones?
 
Back
Top Bottom