filmov
tv
001 - Unity Game - Lets make a game
Показать описание
Unity tutorial on making a game. This is part 1 in a series of tutorials on getting started in game making.
-- For any question or requests, feel free to comment!
In this episode we go from start to almost where we are up to as I catch up wth updating to Unity4
--- Movement script
#pragma strict
var moveSpeed : float = 1;
var canjump = false;
function Update () {
if (Input.GetButton ("w")){
}
if (Input.GetButton ("a")){
}
if (Input.GetButton ("s")){
}
if (Input.GetButton ("d")){
}
if (Input.GetButton ("space")){
if (canjump){
gameObject.AddComponent("joeJump");
}
}
}
function OnTriggerEnter(other : Collider){
canjump = true;
}
}
function OnTriggerExit(other : Collider){
canjump = false;
}
}
--- Jump Script:
#pragma strict
var jumpSpeed : float = 1;
function Start () {
wait();
}
function Update () {
}
function wait(){
yield WaitForSeconds(0.1);
Destroy(this);
}
---- Random enemy AI on next video description
-- For any question or requests, feel free to comment!
In this episode we go from start to almost where we are up to as I catch up wth updating to Unity4
--- Movement script
#pragma strict
var moveSpeed : float = 1;
var canjump = false;
function Update () {
if (Input.GetButton ("w")){
}
if (Input.GetButton ("a")){
}
if (Input.GetButton ("s")){
}
if (Input.GetButton ("d")){
}
if (Input.GetButton ("space")){
if (canjump){
gameObject.AddComponent("joeJump");
}
}
}
function OnTriggerEnter(other : Collider){
canjump = true;
}
}
function OnTriggerExit(other : Collider){
canjump = false;
}
}
--- Jump Script:
#pragma strict
var jumpSpeed : float = 1;
function Start () {
wait();
}
function Update () {
}
function wait(){
yield WaitForSeconds(0.1);
Destroy(this);
}
---- Random enemy AI on next video description
unity for beginners - part 1
The Unity Tutorial For Complete Beginners
Making a MOBILE GAME in 1 HOUR #unity3d #devlog #challenge
Let's make Flappy Bird in 1 Minute ! #unity #gamedev #valem
1 Year Of Learning Game Development In Unity...
Unity: Smart tips to speed up Game Development!
Making a GAME in 1 HOUR #gamedev #unity2d
How to make a Video Game in Unity - BASICS (E01)
v8 Mario 1 Split Screen NES HTML5 - Link in Description -- 3 jan 2024 #gaming #unity #multiplayer
How I learned Unity without following tutorials (Developing 1)
How to Make Games: Unity (#1)
Karlson a unity game made by Dani got BANNED! #shorts #unity #dani #indiegame
2D JUMP IN UNITY IN UNDER 1 MINUTE
One Year of Unity Game Development!
I'm making a ragdoll fighter game. #devlog #gamedev #gaming #unity
Making My First Unity Game in ONE WEEK - Devlog
DESTROY OBJECT ON COLLISION IN UNDER 1 MINUTE IN UNITY
HOW TO MAKE A GAME FOR FREE #001 - INTRODUCTION - UNITY TUTORIAL
5 Years of Making Games in Unity!
Let's make Angry Bird in 1 minute #unity #gamedev #valem
6 Months of Learning Game Development in Unity (Progress & Result)
#1 FPS Movement: Let's Make a First Person Game in Unity!
1 YEAR of Unity Game Development in 10 Minutes!
2 Years of Learning Game Development in Unity | My devlog progress
Комментарии