You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Assets/scripts/ui/CreditsParser.cs
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,11 @@ public class CreditsParser : MonoBehaviour {
15
15
voidStart()
16
16
{
17
17
TexttextElement=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?
0 commit comments