Sunday 29 June 2014

Penalty shoot-out using Unity3D

Hi

I have made this game prototype on the weekend . Kindly let me know if you think it needs other modification.





It basically works without gravity and new ball is spawned on the same position once it is is kicked using a gesture. I know it's a rough one but it can convey the gist of the project. :)

Here you can download the project : Link

Wednesday 18 June 2014

Sniper shooter Part 2

Sniper shooter prototype part 2:

Lets set up cameras for the game. We need two cameras for the gun after setting them up we will add the cameras to the gun prefab so that it can be reused easily. Follow the steps for this purpose

  • Download the following textures of crosshair for normal and zoom camera 



Normal cam crosshair

Zoom cam crosshair


  • Make an empty game object in your scene name it as player or whatever you like.
  • Make GunsAndHands prefab child of this gameobject you created and change its position to (0,0.7297325,0).
  • Now make another empty gameobject in the scene (name it cameras) make this gameobject child of "player" gameobject then change its position vector to (0,1,0)
  • Create a camera gameobject in the scene name it as MainCamera change the tag of this gameobject to "MainCamera"(you will have to create a new tag) with the following settings



  • Make the MainCamera gameobject child of "cameras" and change its position  to (0,-0.177351,0)
  • Now the next camera will be of zoom so it will a have a lesser Field of view(FOV)
    and more far clipping than main camera so create a new camera with the following settings and name it as ZoomCamera with the following settings
  • Make ZoomCamera child of cameras and change its position to (0.3755417 , -0.2398739 , 3.198844)
  • Now its time to putcrosshairs in place. We have to put transparent planes in front of cameras and then apply the textures. As plane available in unity is not transparent and it consists of lot of vertice so here I have a custom plane for this purpose. You can download the project and find how crosshairs work.
So this is how our game should look like by now


You can download the unity package from here  (PlayerPrefab is the updated one)

Tuesday 17 June 2014

Sniper Shooting prototype (Part 1)

Hi,

First of all what we need is a Sniper gun model (.fbx format) with the animation like


  • idle
  • walk
  • reload
So as I know that most of the game devs are not in to the 3D asset development so I am going to share the model of gun in this post. We will use the First person camera view with model (animations are included in the unity package).

Please download the package, drag the gun into your scene and see how the animations works. The motion which makes the sniper gun move little bit in and out of the axis because of wind pressure is part of idle animation so, it will help in making game little more interesting. (I have not made this model so we must thanks the random guy over who has shared it over the internet)

You can download from here


Monday 16 June 2014

Sniper prototype using Unity 3D

I have read it many times on internet people asking for tutorial on sniper game . I will be sharing tutorials to make a basic sniper shooting game. I hope it will be a fun project.

2d Platformer in Unity 3D

Among the first few games that I developed using Unity 3D was this 2d platformer(using Unity Development by Jate Wittayabundit). I made it in 2011 for learning purpose.

Here are the screenshots




It is a simple one level platformer prototype you can download the project from here

Sunday 15 June 2014

FPS in progress

Hi everyone,

I have been working on a multiplayer FPS for handheld devices lately. Its a personal project . I am making it using unity 3D and photon cloud.
Here are the screenshots





Androdi Instagram integration

I needed to integrate instagram with android app. As there is no instagram api available for android so you have to integrate it using oauth(using access token). At that time I wasn't able to find any help regarding the instagram integration. So I am sharing the project.

You can find the project here : download link

Space invaders in opengl

Hi readers,

In one of the tests I was assigned to make a space invaders like game in c++ and opengl.( You will need glut to run the assignment). I have uploaded my assignment on dropbox. May be it can help someone searching for the same thing. :)

You can download the project from here : dropbox link