Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions Assets/Ink/Demos/Basic Demo.unitypackage.meta

This file was deleted.

18 changes: 18 additions & 0 deletions Assets/Minigames/ResearchPaperPlease/Scripts/ButtonSFX.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace Methodyca.Minigames.ResearchPaperPlease
{
public class ButtonSFX : MonoBehaviour
{
public AudioSource myFx; // Reference to the AudioSource component
public AudioClip clickFx; // Audio clip to play when the button is clicked

// Method to play the click sound effect
public void ClickSound()
{
myFx.PlayOneShot(clickFx); // Play the click sound effect
}
}
}
15 changes: 0 additions & 15 deletions Assets/Minigames/ResearchPaperPlease/Scripts/buttonSFX.cs

This file was deleted.

4 changes: 2 additions & 2 deletions ProjectSettings/ProjectVersion.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
m_EditorVersion: 2019.4.35f1
m_EditorVersionWithRevision: 2019.4.35f1 (0462406dff2e)
m_EditorVersion: 2019.3.15f1
m_EditorVersionWithRevision: 2019.3.15f1 (59ff3e03856d)