A simple Notepad App based on Unity game engine.
This is a very simple Notepad App made by Unity Engine according to the Jimmy vegas Unity Tutorials.
In this App, user can write multiple lines of notes and save note contents by clicking the save button or clear all contents by clicking the clear button.
If user wants to close the App, he/she can do this by clicking the close icon in the top right corner, then a message box will pop out and ask whether user wants to save contents, quit the App or just cancel this action. User can choose any of these three options by clicking the certain button.
I use Unity2019.3.11f1 and JetBrain's Rider IDE for this project under Windows 10 environment.
Unity and Unity hub download
archived Unity download
Jetbrains Rider download
-
Download this repo, open(or unzip and open) the Unity2D_A-Simple-Notepad-App folder.
-
Open the Unity Hub, from the Home Screen, click Projects to view the Projects tab.
-
To open an existing Unity Project stored on your computer, click the Project name in the Projects tab, or click Open to browse your computer for the Project folder.
-
Note that a Unity Project is a collection of files and directories, rather than just one specific Unity Project file. To open a Project, you must select the main Project folder, rather than a specific file).
-
For this game, just select the Unity2D_A-Simple-Notepad-App folder and open this project.
The whole project in Unity contains two main folders, Assets folder and Package folder.
Under Assets folder, there are altogether 7 subfolders:
-
Animation folder: contains 1 animation which will play after the user clicks the save button.
-
Audio folder: contains 1 sound files(clear sound) which will play after the user clicks the clear button.
-
FarlandSkies folder: Download from Unity Assets Store. Contains assets we will use as background in this App.
-
Fonts folder: contains 1 font we will use in this App.
-
Scences folder: contains 2 scenes, one for intro scene, the other one for the main scene of the App.
-
Scripts folder: contains all 3 customized C# scripts we need in this App.
-
Textures folder: including textures for the close icon, buttons and the small App icon.

