Skip to content

Commit

Permalink
fbs edition
Browse files Browse the repository at this point in the history
  • Loading branch information
trauty committed Jun 2, 2022
1 parent 8f55aa4 commit 364d88e
Show file tree
Hide file tree
Showing 114 changed files with 59,263 additions and 32,753 deletions.
55 changes: 0 additions & 55 deletions .vscode/settings.json

This file was deleted.

Binary file added Assets/Audio/SFX/BarrierDeactivated.mp3
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audio/SFX/BarrierDeactivated.mp3.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions Assets/BallRespawn.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class BallRespawn : MonoBehaviour
{
private Vector3 firstPosition;
private Rigidbody rb;

void Start()
{
firstPosition = transform.position;
TryGetComponent(out rb);
}

private void OnCollisionEnter(Collision collision)
{
if (collision.gameObject.CompareTag("Respawn"))
{
rb.velocity = Vector3.zero;
transform.position = firstPosition;
}
}
}
11 changes: 11 additions & 0 deletions Assets/BallRespawn.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Blender/HugePlane.fbx
Binary file not shown.
105 changes: 105 additions & 0 deletions Assets/Blender/HugePlane.fbx.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/Blender/TwoSidedPlane.fbx
Binary file not shown.
105 changes: 105 additions & 0 deletions Assets/Blender/TwoSidedPlane.fbx.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 364d88e

Please sign in to comment.