Check Sudoku - Unity Tutorial - 3. App skeleton
In the previous step we have set up Unity and GitHub . In this one, we will create an app skeleton, with home page, settings panel, empty board: Implementation Since a lot has changed in Unity over the years (e.g. TextMeshPro is used instead of regular text) we start from completing a simple tutorial: Creative Core: UI Let's start with the home page. We want to have a Sudoku background, but without paying for any "stock" photos, therefore we print one page of problems from WSPC 2021 and take the picture ourselves: The first challenge is making the home page look good in both portrait and landscape orientation. We achieve it by using AspectRatioFitter for the background as explained here . After reading this we add a title anchored to the upper left corner of the screen, and panel with buttons anchored to the lower right corner. This gives us the following UI: We add some background music from pixabay.com . Following Creative Core UI : Ad...