Skip to content

Commit cbd1fe1

Browse files
committed
Added some notes on third party stuff to the credits UI.
1 parent 0d6ee26 commit cbd1fe1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Assets/scripts/ui/CreditsParser.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ public class CreditsParser : MonoBehaviour {
1515
void Start ()
1616
{
1717
Text textElement = GetComponent<Text>();
18-
textElement.text = "Pongball has been made by the following community contributors:\n\n" + GetCreditsNames() + "\n\n\n"
19-
+ "Pongball makes use of the following third party libraries/code:\n\n";
20-
//TODO: Add details/licences of third party code
18+
textElement.text = "Pongball has been made by the following community contributors\n(see the Pongball GitHub repository for licence notices):\n\n" + GetCreditsNames() + "\n\n\n"
19+
+ "Pongball makes use of the following third party libraries/code:\n\n"
20+
+ "Asset Bundle Manager - Unity Technologies\n"
21+
+ "SoundManager.cs - Unity Technologies\n";
22+
//TODO: Add details/licences of any other third party code?
2123
posInitial = - textElement.preferredHeight / 2;
2224
posMax = Screen.height + textElement.preferredHeight / 2;
2325
var t = transform.position;

0 commit comments

Comments
 (0)