• Benvenuto in Making Videogames!
  • Dai sfogo alla tua fantasia!
  • Crea il tuo Videogioco!
Benvenuto ospite! Login Registrati




Valutazione discussione:
  • 0 voto(i) - 0 media
  • 1
  • 2
  • 3
  • 4
  • 5
Unity 3d Aiuto script
#2
Codice:
var bounce : boolean = false;

var bounceAmount : float = 10;

var Player : Transform;



function OnCollisionEnter (other : Collision) {

    if(other.gameObject.tag == "Player") {

        bounce = true;

    }

}



function Update () {

    if(bounce) {

Player.rigidbody.velocity.y = 0;    Player.rigidbody.AddForce(0,bounceAmount,0,ForceMode.Impulse);

bounce = false;

    }

}

t detects when the 'Player' (defined by you) enters the objects collider (aka hits it) then sends him into the air. Though this may not be the best way to handle it, it will work until someone with more experienced helps you.
 
Rispondi
  


Messaggi in questa discussione
Unity 3d Aiuto script - da kaosmoda - 07-12-2012, 11:40 AM
RE: Unity 3d Aiuto script - da Exorcist - 07-12-2012, 11:49 AM
RE: Unity 3d Aiuto script - da kaosmoda - 07-12-2012, 12:05 PM
RE: Unity 3d Aiuto script - da Exorcist - 07-12-2012, 12:11 PM
RE: Unity 3d Aiuto script - da kaosmoda - 07-12-2012, 12:21 PM
RE: Unity 3d Aiuto script - da Exorcist - 07-12-2012, 12:30 PM

Discussioni simili
Discussione Autore Risposte Letto Ultimo messaggio
  Cerco aiuto per applicazione 3D Manuel_89 1 352 09-02-2018, 03:04 PM
Ultimo messaggio: Matteoxt24mt
  aiuto unity 3d pulsante h per help carlomanzino 3 569 18-05-2017, 04:23 PM
Ultimo messaggio: alessiobb3b
  Un piccolo aiuto per Unity 3D? Biagino 1 587 22-04-2016, 09:17 AM
Ultimo messaggio: Master Gabriel
  Aiuto script sparo gioco 2D fedekikko 4 911 22-04-2015, 03:31 PM
Ultimo messaggio: Blackg96
  Aiuto problema script per attacco fedekikko 13 1,697 22-04-2015, 11:14 AM
Ultimo messaggio: Blackg96
  Richiesta aiuto script per guidare macchina. davidecreatoreapp 8 1,346 27-03-2015, 11:56 AM
Ultimo messaggio: davidecreatoreapp
  Script Unity, Menu Avanti e Rifai Master Gabriel 5 1,118 18-02-2015, 03:55 PM
Ultimo messaggio: Blackg96
  Teletrasportare un oggetto su unity 3d? zodanilbello 25 3,033 04-01-2015, 10:25 PM
Ultimo messaggio: zodanilbello
  Come potrei creare dialoghi su Unity 3D? Biagino 3 1,414 13-09-2014, 01:08 PM
Ultimo messaggio: Chip
  Aiuto Script LatinMan 16 2,284 06-09-2014, 03:39 PM
Ultimo messaggio: Blackg96

Vai al forum:


Browsing: 2 Ospite(i)