Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
c7d0dc6
Update README.md
micklemacklemore Nov 8, 2024
5a04011
Update README.md
micklemacklemore Nov 8, 2024
e6298b2
Update README.md
micklemacklemore Nov 8, 2024
7217677
Update README.md
micklemacklemore Nov 8, 2024
a5fc9a1
add unity project
micklemacklemore Nov 23, 2024
e0d99c2
Merge branch 'master'
micklemacklemore Nov 23, 2024
7c23f78
slider labels
micklemacklemore Nov 23, 2024
1ec4f0a
finish adding dancer properties
micklemacklemore Nov 25, 2024
0203f47
added dance scene fbx
micklemacklemore Nov 30, 2024
a1b29d6
updated camera and shuffle
micklemacklemore Dec 2, 2024
3846244
fix foot rotation
micklemacklemore Dec 2, 2024
261e369
head bobbing and arm movement
micklemacklemore Dec 3, 2024
4f6ba8d
update dance with spine rotations
micklemacklemore Dec 3, 2024
c4c033a
add beat manager
micklemacklemore Dec 3, 2024
cff2e7a
dancershuffle uses beatmanager
micklemacklemore Dec 3, 2024
a756e64
added kirby
micklemacklemore Dec 4, 2024
3816abd
silly dancing has begun
micklemacklemore Dec 4, 2024
303acab
i hate lighting
micklemacklemore Dec 4, 2024
d4966c5
add int slider groups
micklemacklemore Dec 4, 2024
9f2f0bc
add more parameters to dancershuffle
micklemacklemore Dec 4, 2024
430a584
add new dancing
micklemacklemore Dec 4, 2024
487c85b
good enough!
micklemacklemore Dec 4, 2024
d2f56ba
Update README.md
micklemacklemore Dec 4, 2024
5f7270c
try to host build on github
micklemacklemore Dec 4, 2024
1d8a154
Merge branch 'main' of github.com:micklemacklemore/dance-dance-partay
micklemacklemore Dec 4, 2024
de5b687
uncompressed build
micklemacklemore Dec 4, 2024
6cb1a7e
Update README.md
micklemacklemore Dec 4, 2024
2e86989
Update README.md
micklemacklemore Dec 4, 2024
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
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
* -text

*.cs text eol=lf diff=csharp
*.shader text eol=lf
*.cginc text eol=lf
*.hlsl text eol=lf
*.compute text eol=lf

*.meta text eol=lf
75 changes: 75 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# This .gitignore file should be placed at the root of your Unity project directory
#
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
#
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Ll]ogs/
/[Uu]ser[Ss]ettings/

/bin/

# MemoryCaptures can get excessive in size.
# They also could contain extremely sensitive data
/[Mm]emoryCaptures/

# Recordings can get excessive in size
/[Rr]ecordings/

# Uncomment this line if you wish to ignore the asset store tools plugin
# /[Aa]ssets/AssetStoreTools*

# Autogenerated Jetbrains Rider plugin
/[Aa]ssets/Plugins/Editor/JetBrains*

# Visual Studio cache directory
.vs/
.vscode/

# Gradle cache directory
.gradle/

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


# Unity3D generated meta files
*.pidb.meta
*.pdb.meta
*.mdb.meta
*.prefab.meta

# Unity3D generated file on crash reports
sysinfo.txt

# Builds
*.apk
*.aab
*.unitypackage
*.app

# Crashlytics generated file
crashlytics-build.properties

# Packed Addressables
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*

# Temporary auto-generated Android Assets
/[Aa]ssets/[Ss]treamingAssets/aa.meta
/[Aa]ssets/[Ss]treamingAssets/aa/*
Loading