Skip to content

Commit

Permalink
[add]ファーストコミット
Browse files Browse the repository at this point in the history
  • Loading branch information
賀好昭仁 committed Oct 5, 2017
0 parents commit 1be620b
Show file tree
Hide file tree
Showing 53 changed files with 556 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/Assets/AssetStoreTools*

# Visual Studio 2015 cache directory
/.vs/

# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
.consulo/
*.csproj
*.unityproj
*.sln
*.suo
*.tmp
*.user
*.userprefs
*.pidb
*.booproj
*.svd
*.pdb

# Unity3D generated meta files
*.pidb.meta

# Unity3D Generated File On Crash Reports
sysinfo.txt

# Builds
*.apk
*.unitypackage
9 changes: 9 additions & 0 deletions Assets/Audios.meta

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

Binary file added Assets/Audios/AudioMixer.mixer
Binary file not shown.
9 changes: 9 additions & 0 deletions Assets/Audios/AudioMixer.mixer.meta

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

Binary file added Assets/Audios/megane_suit.mp3
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/megane_suit.mp3.meta

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

Binary file added Assets/Audios/note1_0.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/note1_0.wav.meta

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

Binary file added Assets/Audios/note1_1.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/note1_1.wav.meta

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

Binary file added Assets/Audios/note1_2.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/note1_2.wav.meta

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

Binary file added Assets/Audios/note1_3.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/note1_3.wav.meta

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

Binary file added Assets/Audios/note1_4.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/note1_4.wav.meta

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

Binary file added Assets/Audios/note2_0.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/note2_0.wav.meta

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

Binary file added Assets/Audios/note2_1.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/note2_1.wav.meta

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

Binary file added Assets/Audios/note2_2.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/note2_2.wav.meta

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

Binary file added Assets/Audios/note2_3.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/note2_3.wav.meta

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

Binary file added Assets/Audios/note2_4.wav
Binary file not shown.
22 changes: 22 additions & 0 deletions Assets/Audios/note2_4.wav.meta

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

9 changes: 9 additions & 0 deletions Assets/Scenes.meta

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

Binary file added Assets/Scenes/Recorder.unity
Binary file not shown.
8 changes: 8 additions & 0 deletions Assets/Scenes/Recorder.unity.meta

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

9 changes: 9 additions & 0 deletions Assets/Scripts.meta

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

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

namespace Common
{
public class AudioManager : MonoBehaviour
{
public AudioSource bgm;
public AudioSource[] notes;
}
}
12 changes: 12 additions & 0 deletions Assets/Scripts/AudioManager.cs.meta

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

18 changes: 18 additions & 0 deletions Assets/Scripts/Note.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 Common
{
public struct Note
{
public readonly float time;
public readonly int noteNumber;

public Note(float time, int noteNumber)
{
this.time = time;
this.noteNumber = noteNumber;
}
}
}
12 changes: 12 additions & 0 deletions Assets/Scripts/Note.cs.meta

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

0 comments on commit 1be620b

Please sign in to comment.