1 00:00:01,314 --> 00:00:03,771 In this series, you'll create a scoreboard. 2 00:00:03,772 --> 00:00:09,514 This project is a stepping stone to later create a dialogue system. 3 00:00:09,770 --> 00:00:11,571 We'll do this in three stages. 4 00:00:11,572 --> 00:00:14,386 In the first one, we'll design the scoreboard panel 5 00:00:14,387 --> 00:00:16,157 and list names in there. 6 00:00:16,158 --> 00:00:19,620 Now we'll use that to learn about user interface design 7 00:00:19,621 --> 00:00:24,191 and also how to create nodes from code rather than using the editor. 8 00:00:24,890 --> 00:00:28,540 Then in the second stage, we'll use a form. 9 00:00:28,570 --> 00:00:33,542 We'll allow the player to type their name, get listed in the scoreboard, 10 00:00:33,543 --> 00:00:36,914 and we'll use that to see how to create scene instances 11 00:00:36,915 --> 00:00:39,500 and how to load scenes from code. 12 00:00:40,490 --> 00:00:46,357 In the third stage, we'll take our first steps towards loading data from the disk. 13 00:00:46,358 --> 00:00:48,660 We won't load that data exactly, 14 00:00:48,680 --> 00:00:54,143 but you'll see how to store scores in the right format 15 00:00:54,144 --> 00:01:00,943 and how to then list existing scores and append a new player score to the list. 16 00:01:01,210 --> 00:01:04,329 With that, let's get started designing the scoreboard.