infinitespace-studios/VectorRumble

Better UX in Credits Screen

Open

#36 opened on Nov 13, 2019

View on GitHub
 (0 comments) (0 reactions) (0 assignees)C# (5 forks)auto 404
enhancementgood first issue

Repository metrics

Stars
 (15 stars)
PR merge metrics
 (PR metrics pending)

Description

Currently, in order to add contributors to the Credits Screen, the code within the Credits screen needs to be updated. This is not optimal, should we get lots of contributors to the project. It would be better if the contributor list was moved to an xml file, possibly with the following format

<Contributors>
    <Contributor>
         <Name>A</Name>
         <URI>http blah blah</URI>
         <Contribution>Helped Fix....<Contribution>
     <Contributor>
</Contributors>

Then, when the Credits Page is launched...

  • It reads the aforementioned XML file.
  • Dynamically creates the MenuItems and EventHooks (when selected it launches the associated URI)
  • Displays a maximum of X contributors on screen and allows navigation, up or down to the remaining contributors in the list.

Contributor guide