a game I want to play This porject is just the indies Assets folder of a unity project and not the whole unity porject itself, so it contains all the and logic of the we made it this was because the Bust liberary and some other packages where over 100 MB big and we didn't know how to work it out git lsf if u know how to do it please let us know
Note
those working on this project please create a new branch and work on it also please comment every function and class you care like seen in Microsoft's Annex D Documentation comments so it easier for us to work with. for example:
/// <summary>
/// Class <c>Point</c> models a point in a two-dimensional plane.
/// </summary>
public class Point
{
/// <summary>
/// Method <c>Draw</c> renders the point.
/// </summary>
void Draw() {...}
}.
for this project you your these packages form unity to work
- 3D Characters and Animation
- 3D World Building
- Input System
you can create a unity On unity hub and make a Universal 3D project from the templace that unity offers like below
or u can just have a project with Universal pipeline package installed
for this porject you your these packages form unity to work
- 3D Characters and Animation
- 3D World Building
- Input System when installed it should look somthing like this
when installing Input System package it may ask to restart click yes
--- image here
Go to folder of your unity project on your local machince
for example I have saved my unity project name SimluatorGame which is localted /SimluatorGame
and if you don't know where you folder location is you can just use unity hub and click on the three dots clicking on open in folder (Windows) or open in finder(Mac) which take you to the location of the folder linked below
then you can run this command below remmber to replce {{your unity project folder path here}} with your unity project folder path
cd {{your unity project folder path here}}
git clone https://github.com/SoupBoi1/SimulatorGame.git
mv Assets Assets_old
mv SimulatorGame Assets
Warning
if you ran the commad above skip the section below, it just explain what the command does above SO GO TO SETP 4 NOW
this is what the command above does
- //then clone this repository inside of the project folder
- //
git clone https://github.com/SoupBoi1/SimulatorGame.git - //then in the folder of the project rename folder
AsseststoAssests_oldso unity - //then u take your SimulatorGame floder which you jsut cloned and rename it to
Assestsso unity yours this repository as a Assest folder
open up unity you may se a pop up say to enter in safe mode this is normal since we change the Assets folder contain you can enter safe mode but i ignore it since there no need for that
now everything should be working well be sure to open any of the secene file in play
Note
those working on this project please create a new branch and work on it also please comment every function and class you care like seen in Microsoft's Annex D Documentation comments so it easier for us to work with. for example:
/// <summary>
/// Class <c>Point</c> models a point in a two-dimensional plane.
/// </summary>
public class Point
{
/// <summary>
/// Method <c>Draw</c> renders the point.
/// </summary>
void Draw() {...}
}.


