UNITY3D WAREHOUSE

WELCOME TO COMMUNITY.

Saturday, 28 February 2015

Unity3D Tutorial: 21 Blinking Materijal

Unity3D Blinking Materijal THIS IS Java script: GOOD 4 2D GAMES AND 3D GAMES !  ----------------------------------------­­­­­­­----------------------------------­-­-­-­-­-­-­------ DIRECT DOWNLOAD HERE ----------------------------------------­­­­­------------------------------------­-­-­-­-­- THIS IS BACKUP  IN TEXT FORM  TUTORIAL 21 1. Create New java and name it : BlinkingMaterijal 2....

Monday, 23 February 2015

Unity3D Tutorial: 20 How turn off and on the mesh renderer ??

Unity3D Tutorial: 20 How turn off and on the mesh renderer ?? I will show with one  simple script  How 2  : Disabling Mesh renderer! How to active mesh renderer with a script! Enable/disable mesh renderer component! unity turn on and off mesh renderer!!! How to make invisible wall ! AND.... THIS IS Java script: GOOD 4 2D GAMES AND 3D GAMES !  ----------------------------------------­­­­­­­----------------------------------­-­-­-­-­-­-­------ DIRECT...

Saturday, 21 February 2015

Unity3D Speed programing, 3D Modeling - Building a game !

Unity3D Speed programing, 3D Modeling - Building a game ! You wanna know how games are made ? One hour with game Developer ! On Saturday evening compressed in 18 min ------------------------------------------------------------ Basic skills you need for a game Developer job : ------------------------------------------------------------ To become a computer games developer, you will need to have: excellent computer...

Friday, 20 February 2015

Unity3D Tutorial: 19 Move object when player reach trigger

Unity3D Tutorial: 19 Move object when player reach trigger! Unity3D Tutorial: 19 Move object Platform,Object or whatever you need  when player reach trigger NO ANIMATION REQUIRED It's all done by  a very simple script. THIS IS Java  scrip: GOOD 4 2D GAMES AND 3D GAMES ! DIRECT DOWNLOAD HERE ----------------------------------------­­­­­------------------------------------­-­-­-­-­- ----------------------------------------­­­­­------------------------------------­-­-­-­-­- THIS...

Wednesday, 18 February 2015

Unity3D Tutorial: 18 Teleporting Objects, Player, Prefabs ... Tutorial: 18

Unity3D Tutorial: 18  Teleporting Objects, Player, Prefabs .... THIS IS Java  scrip: GOOD 4 2D GAMES AND 3D GAMES ! Download Script HERE ----------------------------------------­­­­­------------------------------------­-­-­-­-­- THIS IS BACKUP  IN TEXT FORM  TUTORIAL 18 1. Create New java and name it : Simpleteleport 2. Copy & Past this text and save java :  var...

Friday, 13 February 2015

Unity3D press any key to play Tutorial 17

Unity3D press any key to play Tutorial 17 DIRECT DOWNLOAD ALL PARTS HERE -------------------------------------------------------------------------------------------------------------------------- THIS IS BACKUP  IN TEXT FORM OFF ALL SCRIPTS OFF TUTORIAL 17 -------------------------------------------------------------------------------------------------------------------------- CREATE NEW C# AND NAME...

Tuesday, 10 February 2015

Unity3D countdown timer and load level,scean or restart level Tutorial 16

Unity3D countdown timer and  load level,scean or restart level Tutorial 16 Unity3D countdown timer and  load level,scean or restart level Tutorial 16 THIS IS Java scrip: GOOD 4 2D GAMES AND 3D GAMES ! Download all parts HERE ----------------------------------------­­­­­------------------------------------­-­-­-­-­- ----------------------------------------­­­­­------------------------------------­-­-­-­-­- Copyright...

Monday, 9 February 2015

Unity3D Destroy Object After a Delay! Tutorial 15

Unity3D Destroy Object After a Delay! Tutorial 15  Unity3D Destroy Object After a Delay! Tutorial 15 THIS IS Java scrip: GOOD 4 2D GAMES AND 3D GAMES ! NAME NEW JAVA HOW JOU LIKE.. AND COPY PAST THIS : ----------------------------------------­­­­­­­----------------------------------­-­-­-­-­-­-­- var Seconds = 10;  function Update(){      Destroy();  }  function Destroy(){  ...

Friday, 6 February 2015

Unity3D Unity3D Flickering Light Tutorial 14

Unity3D Unity3D Flickering Light Tutorial 14 THIS IS C# scrip: GOOD 4 2D GAMES AND 3D GAMES ! Name c# script : FlickeringLight ----------------------------------------­­­­­------------------------------------­-­-­-­-­- using UnityEngine; using System.Collections; [AddComponentMenu("Utilities/Flickering Light")] public class FlickeringLight : MonoBehaviour { public float cycleDuration = 2f; // How long before looping back to the beginning...

Unity3D Simple Constant Rotate Object Tutorial 13

Unity3D Simple Constant Rotate Object Tutorial 13 THIS IS C# scrip: GOOD 4 2D GAMES AND 3D GAMES ! Name C# Script :  ConstantRotate -------------------------------------------------------------------------------------------------------------------------- using UnityEngine; using System.Collections;   public class ConstantRotate : MonoBehaviour {           public float RotationsPerMinuteY=0;  ...

Monday, 2 February 2015

Unity3D Creating a Camera Shake Effect Like Earthquake Tutorial 12

Unity3D Creating a Camera Shake Effect Like Earthquake  Tutorial 11  THIS IS Java scrip: GOOD 4 2D GAMES AND 3D GAMES !  ------------------------------------------------------------------------------------------------------------------------------------------------------- THIS IS Java scrip:  Script num 1 :  (  ShakeCam ) name your Scrpt : ShakeCam and copy past text ! ------------------------------------------------------------------------------------------------------------------------------------------------------- var...

Sunday, 1 February 2015

Unity3D on trigger enter display Text. Tutorial 11

Unity3D on trigger enter  display Text. Tutorial 11 This is Better New Video it's more detailed. THIS IS Java scrip: GOOD 4 2D GAMES AND 3D GAMES ! ----------------------------------------­­­­­­-----------------------------------­-­-­-­-­-­------ var player : GameObject;  private var bool : boolean;  function OnTriggerEnter(other : Collider) {  if(other.tag == "Player") {  bool = true;  }  }  function...