Exemple #1
0
    //todo
    private void DropAvatar(Vector3 velocity)
    {
        Avatar.Die();
        var rb = Avatar.GetComponent <Rigidbody>();

        rb.useGravity = true;
        rb.mass       = 1;
        rb.velocity   = velocity;
    }
Exemple #2
0
 private void CatchedHandler()
 {
     _avatar.Die();
 }