Fanzhong Zeng·Nov 27, 2020Switching Cameras in Unity.In this guide I just want to quickly go over a simple way to switch between cameras in Unity. We can achieve this by setting different…A response icon1A response icon1
Fanzhong Zeng·Nov 20, 2020Unity Two Method of Interacting Objects with MouseThere are two simple methods of writing scripts for the mouse to interact with the game object. A simple method is to write a script for…
Fanzhong Zeng·Nov 13, 2020Unity Start vs AwakeUnity have a lot of special event functions that gets called automatically by the engine. For example Start and Update function is added…A response icon1A response icon1
Fanzhong Zeng·Nov 6, 2020Unity Movement Translate VS RigidBodyIn unity there are two basic method of moving an object. Using translate on the object itself, or using a rigidbody.
Fanzhong Zeng·Oct 30, 2020Unity Saving Data into PlayerPrefsThis is just a simple guide for saving and loading data from PlayerPrefs in Unity.
Fanzhong Zeng·Oct 23, 2020Passing Data between different Scenes in Unity (Static Variable)There are many ways to pass data from one scene to another inside Unity.
Fanzhong Zeng·Oct 16, 2020Unity UI TipsThis is my list that I believe is important when creating UI elements in Unity.
Fanzhong Zeng·Oct 9, 2020Unity: Update vs Fixed UpdateRecently I created an Unity 2D project, and recently came into issues with my project once I loaded the project to my laptop. My laptop…
Fanzhong Zeng·Oct 1, 2020Big O Notation in ProgrammingAs a programmer we have seen the Big O notation many times, yet I noticed this is one concept that a lot of beginner programmers have a…A response icon1A response icon1
Fanzhong Zeng·Sep 24, 2020Ruby’s Right Ward AssignmentThere is a feature that was being experimented on in ruby which is the “Right-ward Assignment Operator”.