top of page
Search

Pause Menu, Redesigned Player, and C++

  • Writer: Keshav Batra
    Keshav Batra
  • Feb 9, 2023
  • 1 min read

I've redesigned my player to look like the banana man since I got tired of it looking like a capsule. I also redesigned the environment because I got tired of looking at the same bleak place. This is the final product:


I imported the banana man from the unity store and I resized him. I also added two blocks so that I don't move passed the trees.



This pause menu is still a work in progress since it still needs to actually function.


I also recently started learning how to use C++ since a bunch of gaming companies use it and I'm gonna be honest, its the same as C# but its also very different and takes getting used to. These are some small examples of what I've done:




#include<iostream> //Library that permits the user to print and see messages

using namespace std; //Makes it easier to print and input messages

int main() //The main process to run this whole program
{
	int One = 6;
	float Apple = 60.5;
	bool Plane = true; //1 means true 0 means false
	string Keshav = "One";
	char Lake = 'W'; //A char basically just stores a letter, number, or symbol and nothing else

	cout << Plane <<endl; //endl is an enter space
	system("pause");
}

Basically int main() is what starts this whole program and makes everything run.

 
 
 

Comments


bottom of page