UNITY3D WAREHOUSE

WELCOME TO COMMUNITY.

Friday, 30 January 2015

Unity3D Platformer Progress bar Tutorial 10

Unity3D  Platformer Progress bar Tutorial 10 THIS IS Java scrip: GOOD 4 2D GAMES AND 3D GAMES ! ----------------------------------------­­­­­------------------------------------­-­-­-­-­------ // set GUI bar width and height var barWidth : float = 500; var barHeight : float = 25; // drag a texture as the icon var progIcon : Texture; // where to set the GUI element to private var barProgress : float; // empty objects represent...

Tuesday, 27 January 2015

Unity3D Simple Simple pause Tutorial 9

Unity3D Simple Simple pause Tutorial 9 THIS IS Java scrip: GOOD 4 2D GAMES AND 3D GAMES ! Name script : pauseGame and copy - pass this down text ----------------------------------------­­­­-------------------------------------­-­-­-­------ #pragma strict private var pauseGame : boolean = false; function Update() { if(Input.GetKeyDown("p")) { pauseGame = !pauseGame;     if(pauseGame == true)     {  ...

Monday, 26 January 2015

Unity3D Simple Cutscene Creator Tutorial 8

Unity3D Simple Cutscene Creator     THIS IS C# scrip: GOOD 4 2D GAMES AND 3D GAMES !      ----------------------------------------­­­­-------------------------------------­-­-­-­--- using UnityEngine; using System.Collections; public class SimpleCinematicScript : MonoBehaviour { CameraFollow cFollow; PlayerMove pMove; public Transform Target1; public Transform Target2; public Vector3 Target1Offset; ...

Tuesday, 20 January 2015

Unity3D Make moving platform

Unity3D Make moving platform THIS IS C# scrip: GOOD 4 2D GAMES AND 3D GAMES ! ----------------------------------------­­­­-------------------------------------­-­-­-­---------------- using UnityEngine; using System.Collections; using System.Collections.Generic; //moves object along a series of waypoints, useful for moving platforms or hazards //this class adds a kinematic rigidbody so the moving object will push other rigidbodies...

Monday, 19 January 2015

Unity3D Make Unstable Platform

Unity3D Make Unstable Platform THIS IS C# scrip: GOOD 4 2D GAMES AND 3D GAMES ! ----------------------------------------­­­--------------------------------------­-­-­---------------- using UnityEngine; using System.Collections; public class UnstablePlatform : MonoBehaviour {         //We'll need to turn off and on our renderer for this         Renderer PlatformMesh;      ...

Unity 3d spawn a prefab

Unity 3d spawn a prefab Making free platform game ! One man show ----------------------------------------­­­--------------------------------------­-­-­------------------------------------­---------------- Javascrip: GOOD 4 2D GAMES AND 3D GAMES !  ----------------------------------------­­­--------------------------------------­-­-­------------------------------------­---------------- var node1 : Transform; var block : GameObject; var...

Unity 3D Play Audio Sound OnTriggerEnter

Unity 3D Play Audio Sound OnTriggerEnter Making free platform game ! One man show ----------------------------------------­----------------------------------------­--- Javascrip: GOOD 4 2D GAMES AND 3D GAMES ! ----------------------------------------­----------------------------------------­--- var soundFile:AudioClip; function OnTriggerEnter(trigger:Collider) { if(trigger.collider.tag=="Player&qu­ot;) { audio.clip = soundFile;...

Unity 3d Triggered Animation using Javascript

Unity 3d Triggered Animation using Javascript in Unity 3d FREE SCRIPT Making free platform game ! One man show ----------------------------------------­----------------------------------------­--- Javascrip: GOOD 4 2D GAMES AND 3D GAMES ! ----------------------------------------­----------------------------------------­--- var doorClip : AnimationClip; function OnTriggerEnter (player : Collider) { if(player.tag=="Player") GameObject.Find("YOUR...

Wednesday, 14 January 2015

SOME OF THE PICTURES DURING THE DEVELOPMENT PROCESS

All suggestions and questions feel free to ask or leave a tip... idea Done By me and I know that it is not a revolutionary new idea :) concept Done By me same text here :) Photoshop...