Jump to content

TCSSkin

Moderators
  • Posts

    2,438
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by TCSSkin

  1. Feel free to post the fx for people who are also looking
  2. Without seeing the full code for that panel, we can't really help. It's likely a height value
  3. can you zip your fonts folder and upload them (send to me if you don't wanna post publicly)
  4. would just kill the modding scene off entirely tbh. it's not like skinning is a thing that has easy guides and is easy to pick up, it's not, if one person started paywalling stuff, everyone else would follow suit, and you'd end up like other games with essentially a closed ecosystem you need to buy in to
  5. Mostly a copy paste job, you'll just have to copy and attached files, and that'll be the bulk of the job
  6. closest thing youll get to guides for now https://community.sigames.com/forums/topic/558754-fm22-skinning-graphics-knowledge-base/#comment-13319834
  7. and? every skin takes from somewhere, we're all literally taking the default code from SI's skins and repurposing it for our own purpose. I think the first thing i ever "invented" with skinning was putting the league table on the club overview screen. Last XI and instant result from from fm13, background selector literally pre dates me playing football manager. there's also a whole bunch of extra stuff that goes along with skinning, i have people messaging my personal social media accounts because they can't extract a zip file, or they want to change something to change them. Let alone if people dislike your skin and criticise it, it's very easy to take personally and let it get you down sid never hold it against someone for not releasing skins. Ive had to read less than nice things about myself on youtube/twitter/reddit because i choose not to provide help for people
  8. He tweeted that he's working on it and ive seen a few previews, but its a very time consuming process to create skins so
  9. go to "panels\player\tcs\selector\big\positions.xml", edit line 41 and set pitch_perspective="0.05" to pitch_perspective="0"
  10. Not harsh at all. I could've turned around and said no, and then he'd have to either remake something no or shelve, it. Its easier to keep things to himself than have to deal with that politics. I wouldn't, I never have (within reason) because its how almost every skin creator learns how to do it, but its just easier.
  11. So we've discussed the issue and came to the conclusion that the thread will remain locked. While i'm sure there's no malace or bad intentions, the skin is incredibly similar to OPZ, and given he releases yearly we feel it's not fair on OPZ as his release would be no doubt affected by this. To prevent this issue going forward, please ask for permission when using sizeable chunks of other peoples skins, lines of code are one thing, whole panels, let alone multiple of them are another. --- Further to this, if you are planning on releasing content for FM then please have a read of the Posting Guidelines, which cover the fact that if you are using other people's stuff you need to obtain permission instead of just crediting them:
  12. can't replicate myself either, very strange.
  13. Look in person properties, in the properties.fmf
  14. Gonna unhide the topic cause it's a useful example for me to explain some layouts. Your current code: <layout class="arrange_vertical_attachment" alignment="top,extend" offset="0" gap="8" /> <layout class="stick_to_sides_attachment" alignment="horizontal" apply_to_children="true" inset="0" /> Will lay widgets/containers from top to bottom, with the last item "extending" and filling out the space, so for the following example i have used the following code: <panel> <attachment_group class="vertical_arrange" vertical_alignment="top,extend" /> <container background_colour="red" height="20" /> <container background_colour="red" height="70" /> <container background_colour="primary" height="150" /> <container background_colour="secondary" /> </panel> for the following result The same works for horizontal, just change your code to the following: <panel> <attachment_group class="horizontal_arrange" horizontal_alignment="left,extend " /> <container background_colour="red" width="20" /> <container background_colour="red" width="70" /> <container background_colour="primary" width="150" /> <container background_colour="secondary" /> </panel> for this result. Widgets which use both auto_size="vertical" and auto_size="horizontal" don't need a height being defined.
  15. Change this <panel> <layout class="fit_children_attachment" alignment="vertical,fill" offset="0" /> <layout class="stick_to_sides_attachment" alignment="horizontal,top" apply_to_children="true" inset="0" /> <widget class="label" auto_size="vertical" font="title" colour="accent"> <translation id="text" translation_id="402385" type="use" value="Player Traits" /> </widget> <!-- preferred moves table --> <widget class="table" id="pref" mode="fill_rows" layout="-1" auto_size_rows="true" fixed_size_rows="false" auto_size="vertical"> <list id="column_widget_properties"> <record index="0" alignment="left,centre_y" spec="text" auto_size="vertical"/> </list> <list id="column_table_properties"> <record indx="0" left="0" top="3" sort_disabled="true"/> </list> </widget> </panel> to this <panel> <attachment_group class="vertical_arrange" vertical_alignment="top,extend" /> <widget class="label" auto_size="vertical" font="title" colour="accent"> <translation id="text" translation_id="402385" type="use" value="Player Traits" /> </widget> <!-- preferred moves table --> <widget class="table" id="pref" mode="fill_rows" layout="-1" auto_size_rows="true" fixed_size_rows="false" auto_size="vertical"> <list id="column_widget_properties"> <record index="0" alignment="left,centre_y" spec="text" auto_size="vertical"/> </list> <list id="column_table_properties"> <record indx="0" left="0" top="3" sort_disabled="true"/> </list> </widget> </panel>
  16. Use the resource archiver, and extract panels.fmf You're looking for human/news feed panel.xml
  17. Not possible as far as i can tell
  18. there isn't one, i'll work on one when i'm home
  19. can you let me know what's needed? i'll upload a v1.1
  20. We're going to discuss this as a team, to prevent any more arguing i'm going to lock the thread until we've decided.
  21. i imagine the alSM value is hard coded, so 6 correlates to one directory, 5 to another and so one. i'll ask around
  22. i tried wingdings for an april fools prank but surprisingly FM wasn't a fan 😂
  23. I believe its "sitoolkit\skins\fm-widgets\graphics\boxes\collapsable\standard\single\paper.xml"
×
×
  • Create New...