adssencee

Sunday, November 22, 2020

How To create Unity 3D Video Games Create On PC ?

How To create Unity 3D Video Games Create On PC ?   


Hello, Friends Above the title you see this how-to create unity 3d video games on pc. friends i told you 

how to  unity 3d video games create. Friends, first you learn C# language bases. unity video games 

the software in Free or paid. you use the paid unity version. you don't 30k dollars for unity Company. but you 

use unity video game software free version. you pay unity company 30  person dollar. I will  not say anything 

else. ok, This time I will come to the main issue. Friend go the unity video games  software  friends look 

the Image 
unity video game project

In this image, you see the unity 3d video game software project. now unity video games 

software  Hierarchy tab Right mouse click opens the 3D object Terrain. Friends you See  the plan type

now friends unity video games engine inspector Treeain game object look this Image


 you see the All properties this property you create a game stage. now create game level create.

unity game engine paint texture Add your texture. fist texture  you see the All body Are painted 

the second texter you create ground paint. see my Image 





now friends Add the Hierarchy Right mouse click  Go to the 3d object create the capsule. move tool  

you position it your need According. unity video games  software Hierarchy select the Capsule right 

mouse click to rename it call the player. now unity video games software inspector tap Add 

Component NavMeashAgent. now friends unity video games  software tiatle bar window  click 

and navigation select open it. create tile bake see my Image




map Blue area is your player movement. And other Areas are not moving player. now select unity 

video games software  Hierarchy  player select Add component create Script . name your script 

move. i am here the Script



using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.AI;

public class mover : MonoBehaviour
{



// Use this for initialization

// Update is called once per frame
void Update ()
{

if (Input.GetMouseButtonDown (0)) {

 


moverTocuursar ();


// this your mouse input system unity video games software 

}



}

private void moverTocuursar ()
{
Ray ray = Camera.main.ScreenPointToRay (Input.mousePosition);
RaycastHit hit;

bool hashit = Physics.Raycast (ray, out hit);

if (hashit) {


GetComponent<NavMeshAgent> ().destination = hit.point;

//this your capsule select 

}


}


}



your move Script visual studio And monodevloper open And Add the using UnityEngine.AI;

remove the void start delete to use this Script your game you click play unity video games software

click another site your character was move.  


How to Add your character:-  

friend I will told how to setup your 3d  character in unity video games engine Friends, first you have 

to go to maximo.com and chose  your character.


 now drag you character for unity video games software  Assets folder.  now  look my Images




First select your character inspector Metarials select location use external meatarials.  Then rig 

setup Humanonid  then drag your character for Hierarchy  player. now select player inspector capsule 

remove Component