Exemplo n.º 1
0
 public void OnSwerveUpdate(CrateController crate, float rotateByAngle, Vector3 rotationPivot, Vector3 zVector)
 {
     if (crate == topCrate)
     {
         letter.transform.RotateAround(rotationPivot, zVector, rotateByAngle);
     }
 }
Exemplo n.º 2
0
        public void OnCrateHit(CrateController crate)
        {
            if (!hit)
            {
                ThrowBallsConfiguration.Instance.Context.GetAudioManager().PlaySound(Sfx.CrateLandOnground);

                crate.Launch(new Vector3(0, 0, 1), 30);

                middleCrate.ApplyCustomGravity();
                middleCrate.SetIsKinematic(false);
                middleCrate.VanishAfterDelay(0.7f);
                if (middleCrate.IsSwerving())
                {
                    middleCrate.StopSwerving();
                }

                topCrate.ApplyCustomGravity();
                topCrate.SetIsKinematic(false);
                topCrate.VanishAfterDelay(0.9f);
                if (topCrate.IsSwerving())
                {
                    topCrate.StopSwerving();
                }

                bottomCrate.ApplyCustomGravity();
                bottomCrate.SetIsKinematic(false);
                bottomCrate.VanishAfterDelay(1.1f);
                if (bottomCrate.IsSwerving())
                {
                    bottomCrate.StopSwerving();
                }

                if (letter.IsJumping())
                {
                    letter.StopJumping();
                }

                letter.JumpOffOfCrate();

                BallController.instance.DampenVelocity();
                hit = true;
            }
        }