Sunday, January 2, 2022

Stopwatch Timer in Unity

 Stopwatch Timer in UnityHello friends two we will se how we can add stopwatch in our scene. we can use this for time based game-over game as well.So lets move to the script :TimerGame.csusing System;using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEngine.UI;public class TimerGame : MonoBehaviour{    int timerstart = 120;    public Text Timertext;    private void Start() ...

Tuesday, December 7, 2021

Move your player using keyboard key(A,D,S,W)

Move your player using keyboard keyFirst create a player to which you want to move. See Below here i have taken a cube to which i will move using keyboard keys.(A,D,S,W). Now Add cube in your game scene.Select your player(here cube) and give it some height.Here I have given Y=3 (set position Y=3 in Transform).Now Time to add a c# script to your player.for this Go to Assets right click select create and again select c#script. Give it some name...

Tuesday, August 17, 2021

How to apply texture on an object

Hello friends , today we will see how we can apply any desired texture on an object.Here I will take some objects and apply different type of texture on to them.So first place your Object into the game scene like below.(Here I have taken 3D objects like cube, sphere, Capsule and cylinder)Now we can download Texture Images from the google which we want to apply on to these object.see below how we can do this:Download any one image and go to unity...

Thursday, July 22, 2021

How To Create Score for Your Unity Game

Create C# Script To Count Score For Your GameHello Friends, so today we will write score script for our game.For this script, first we will see the score result in the console window and then we will add a text box (in canvas) in game scene view so that we can see the score in the running game as well ,so lets start !!!Open your unity game/project.  Here i will open First_Game if you want to make dedicated project for score only go to NEW in...

Sunday, July 18, 2021

The Unity Asset Store And Importing 3D Charater Model

The Unity Asset StoreFrom Unity asset store user can download assets like Models,Textures,Material,tools like Terrain,Utilities etc and import it inside the game.In unity asset store verity of assets are available some of them are paid and some of them are free as well.Here we will import a free car asset in out game.Google,Unity asset store and open the first link or directly go to https://assetstore.unity.com/Note: User can add a dedicated tab...

Thursday, July 15, 2021

Variable in C# (Unity3D)

Variable in C#There are different type of variable in C# these are :Int: values like : 1,2,3,4,5,-1,-2,-3,-4..Float: values like 1.23, 3.44 , 5.48, 9.32 , -12.34....in C# for float variable we will use "f" after the number exp:1.23f, 3.44f, 5.48f etc.String: exp , "unity3D" , " augmented reality" , "Virtual reality"... Private Variable: These variable are accessible  in side the class only.So user cant change its value from the inspector panel.Public...

Tuesday, July 13, 2021

First Script in C# Unity3D (Rotate Object About Any Axis)

Hello friends , So now its time to write your first script in C# unity3D.Before write your C# script , make sure that camera , directional light should be in there your scene.first add an object in the scene on which you will add the script to perform some action.so here i will add 3d object cube (see below).If you want to zoom object select it on scene and press "F" on the keyboard.how to add script into the object?To make your project user friendly...

Saturday, July 10, 2021

2D And 3D Objects In Unity3D

First view of our project look like below.If not ! Then you can change your project layout from layout section in window tab.here my layout is of 2 by 3.In hierarchy window you can see there are two game object present already. These Game objects are :i) Camera ii) Directional lightCamera left hand side we can see the camera, x,y,z axis and camera preview.Right hand side we can see the inspector window for camera.From inspector window...

Thursday, July 8, 2021

Important Tab And Field In Unity3D

Menu And Fields In Unity3D Before we start our First_Game, we will have a look into some basic and important tab and field present in the unity3D. 1. File2. Edit3. Assets 4. GameObject5. Component 6. Window7. HelpFile:By file , we can create new scene in our project or we can open and add already existed scene inside to our project.by this we can a project which is already present and we can save our performed task and project.(crl+s)we...