[TUTORIAL] Sistema de Entregas + GPS!
+5
diogo852456
Fábiow775
Weslley
Gabriel César CORINTHIANS
Duarte
9 participantes
Página 1 de 1
[TUTORIAL] Sistema de Entregas + GPS!
Fala rapeize, fiz um Tutorial aqui um sistema simples de entrega e GPS, Video VV
Scripts:
Scripts:
- Código:
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEngine.UI;
public class Destinos : MonoBehaviour {
public GameObject[] destino;
public GameObject Gps;
public Button btn_pos;
[HideInInspector]
public int num;
void Start () {
destino = GameObject.FindGameObjectsWithTag ("entregas");
Gps = GameObject.FindGameObjectWithTag ("GPS");
Gps.SetActive (false);
//
btn_pos.gameObject.SetActive (false);
for (int i = 0; i < destino.Length; i++) {
destino [i].SetActive (false);
}
//
btn_pos.onClick = new Button.ButtonClickedEvent();
btn_pos.onClick.AddListener(() => Viagem());
}
private void Viagem(){
for (int i = 0; i < destino.Length; i++) {
destino [i].SetActive (false);
}
num = Random.Range (0, destino.Length);
destino [num].SetActive (true);
Gps.SetActive (true);
btn_pos.gameObject.SetActive(false);
}
private void OnTriggerEnter(Collider col) {
if(col.CompareTag("Player")) {
btn_pos.gameObject.SetActive(true);
}
}
private void OnTriggerExit (Collider col) {
if (col.CompareTag ("Player")) {
btn_pos.gameObject.SetActive (false);
}
}
}
- Código:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Seta : MonoBehaviour {
public Destinos Script;
void Start(){
Script = FindObjectOfType (typeof(Destinos)) as Destinos;
}
void FixedUpdate () {
this.transform.LookAt (Script.destino[Script.num].transform);
}
}
- Código:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Entrega : MonoBehaviour {
public GameObject Gps;
void Start () {
Gps = GameObject.FindGameObjectWithTag ("GPS");
}
private void OnTriggerEnter(Collider col) {
if(col.CompareTag("Player")) {
print ("+ $500");
gameObject.SetActive (false);
Gps.SetActive (false);
}
}
}
Duarte- Programador
- PONTOS : 3304
REPUTAÇÃO : 97
Idade : 24
Áreas de atuação : Programação
Desenvolvedor Android
Respeito as regras :
Re: [TUTORIAL] Sistema de Entregas + GPS!
UOU QUE TOP MEN! PARABÉNS! VAI AJUDAR MUITAS PEOPLES POR AI E VAI ME AJUDAR TAMBÉM! ABRAÇO E SUCESSO!
Gabriel César CORINTHIANS- Membro
- PONTOS : 2652
REPUTAÇÃO : 11
Áreas de atuação : 0
Respeito as regras :
Re: [TUTORIAL] Sistema de Entregas + GPS!
Obrigadoh mn! :DGabriel César CORINTHIANS escreveu:UOU QUE TOP MEN! PARABÉNS! VAI AJUDAR MUITAS PEOPLES POR AI E VAI ME AJUDAR TAMBÉM! ABRAÇO E SUCESSO!
Duarte- Programador
- PONTOS : 3304
REPUTAÇÃO : 97
Idade : 24
Áreas de atuação : Programação
Desenvolvedor Android
Respeito as regras :
Re: [TUTORIAL] Sistema de Entregas + GPS!
DE NADA! TMJ! PARABÉNS PELO SEU ESFORÇO E DEDICAÇÃO COM AS PESSOAS, TU TEM MUITA HUMILDADE!
Gabriel César CORINTHIANS- Membro
- PONTOS : 2652
REPUTAÇÃO : 11
Áreas de atuação : 0
Respeito as regras :
Weslley- Moderador
- PONTOS : 5677
REPUTAÇÃO : 744
Idade : 26
Áreas de atuação : Inversión, Desarrollo, Juegos e Web
Respeito as regras :
Re: [TUTORIAL] Sistema de Entregas + GPS!
O vídeo não esta disponível
mais obrigado de compartilhar conosco Vlw, Sucesso
mais obrigado de compartilhar conosco Vlw, Sucesso
Fábiow775- Membro
- PONTOS : 2832
REPUTAÇÃO : 1
Respeito as regras :
diogo852456- Iniciante
- PONTOS : 2874
REPUTAÇÃO : 1
Respeito as regras :
Re: [TUTORIAL] Sistema de Entregas + GPS!
manin tem como posta algo ensinando pq desse jeito nao tem como aprender!
heliab125- Membro
- PONTOS : 2823
REPUTAÇÃO : 4
Respeito as regras :
Re: [TUTORIAL] Sistema de Entregas + GPS!
tipo estou criando um projeto de um game esse tutorial ira me ajudar mtheliab125 escreveu:manin tem como posta algo ensinando pq desse jeito nao tem como aprender!
heliab125- Membro
- PONTOS : 2823
REPUTAÇÃO : 4
Respeito as regras :
Re: [TUTORIAL] Sistema de Entregas + GPS!
Não sie oqeu aconteceu com o video amigos eu troquei de pc, entao estou sem o video assim que de eu gravo outro, Desculpem!
Duarte- Programador
- PONTOS : 3304
REPUTAÇÃO : 97
Idade : 24
Áreas de atuação : Programação
Desenvolvedor Android
Respeito as regras :
Re: [TUTORIAL] Sistema de Entregas + GPS!
oky amigo sem problema estou aguardando pois esse script vai ser util e deixarei o creditoDuarte escreveu:Não sie oqeu aconteceu com o video amigos eu troquei de pc, entao estou sem o video assim que de eu gravo outro, Desculpem!
heliab125- Membro
- PONTOS : 2823
REPUTAÇÃO : 4
Respeito as regras :
Re: [TUTORIAL] Sistema de Entregas + GPS!
nossa, poderia me salvar se o video nao tivesse excluído ;-; mas vc pode explica mais ou menos? aonde vai aparecer o botão para "trabalhar"? aonde coloco a seta? etc...Duarte escreveu:Fala rapeize, fiz um Tutorial aqui um sistema simples de entrega e GPS, Video VV
Scripts://
- Código:
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEngine.UI;
public class Destinos : MonoBehaviour {
public GameObject[] destino;
public GameObject Gps;
public Button btn_pos;
[HideInInspector]
public int num;
void Start () {
destino = GameObject.FindGameObjectsWithTag ("entregas");
Gps = GameObject.FindGameObjectWithTag ("GPS");
Gps.SetActive (false);
//
btn_pos.gameObject.SetActive (false);
for (int i = 0; i < destino.Length; i++) {
destino [i].SetActive (false);
}
//
btn_pos.onClick = new Button.ButtonClickedEvent();
btn_pos.onClick.AddListener(() => Viagem());
}
private void Viagem(){
for (int i = 0; i < destino.Length; i++) {
destino [i].SetActive (false);
}
num = Random.Range (0, destino.Length);
destino [num].SetActive (true);
Gps.SetActive (true);
btn_pos.gameObject.SetActive(false);
}
private void OnTriggerEnter(Collider col) {
if(col.CompareTag("Player")) {
btn_pos.gameObject.SetActive(true);
}
}
private void OnTriggerExit (Collider col) {
if (col.CompareTag ("Player")) {
btn_pos.gameObject.SetActive (false);
}
}
}//
- Código:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Seta : MonoBehaviour {
public Destinos Script;
void Start(){
Script = FindObjectOfType (typeof(Destinos)) as Destinos;
}
void FixedUpdate () {
this.transform.LookAt (Script.destino[Script.num].transform);
}
}
- Código:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Entrega : MonoBehaviour {
public GameObject Gps;
void Start () {
Gps = GameObject.FindGameObjectWithTag ("GPS");
}
private void OnTriggerEnter(Collider col) {
if(col.CompareTag("Player")) {
print ("+ $500");
gameObject.SetActive (false);
Gps.SetActive (false);
}
}
}
KAYKETHEO27- Iniciante
- PONTOS : 2311
REPUTAÇÃO : 2
Respeito as regras :
Re: [TUTORIAL] Sistema de Entregas + GPS!
Será que poderia refazer o vídeo maninho desculpa em pedir.
fiquei interessado como você fez
fiquei interessado como você fez
JhoowGamer- Iniciante
- PONTOS : 2011
REPUTAÇÃO : 3
Respeito as regras :
Tópicos semelhantes
» [TUTORIAL] Sistema de Arma 3D
» Script para Sistema de Entregas e no final ganhar dinheiro
» [TUTORIAL] Sistema de pulo 3D
» [TUTORIAL] Sistema de trem
» [TUTORIAL] Sistema de Velocimetro
» Script para Sistema de Entregas e no final ganhar dinheiro
» [TUTORIAL] Sistema de pulo 3D
» [TUTORIAL] Sistema de trem
» [TUTORIAL] Sistema de Velocimetro
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos