Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
ButtonPusher
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Button Pusher
ButtonPusher
Commits
16e4f7a8
Commit
16e4f7a8
authored
Feb 22, 2018
by
16이상민
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a problem where the sprite of the motion note does not appear on the screen.
parent
d2408a2c
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
144 additions
and
68 deletions
+144
-68
JudgeManager.cs
Assets/JudgeModule/JudgeManager.cs
+5
-5
NoteManager.cs
Assets/JudgeModule/NoteManager.cs
+2
-4
Guard.cs
Assets/MotionNotes/Guard.cs
+9
-5
HandDown.cs
Assets/MotionNotes/HandDown.cs
+10
-6
HandUp.cs
Assets/MotionNotes/HandUp.cs
+10
-6
Headphone.cs
Assets/MotionNotes/Headphone.cs
+10
-6
PushUp.cs
Assets/MotionNotes/PushUp.cs
+12
-8
Motion Sample Display.prefab
Assets/Resources/Motion Sample Display.prefab
+5
-1
test.unity
Assets/Scene/test.unity
+5
-0
Controller.cs
Assets/Script/Controller.cs
+6
-0
GameManager.cs
Assets/Script/GameManager.cs
+1
-1
InGameManager.cs
Assets/Script/InGameManager.cs
+1
-1
JudgeTextManager.cs
Assets/Script/JudgeTextManager.cs
+1
-1
MotionSampleDisplay.cs
Assets/Script/MotionSampleDisplay.cs
+19
-24
temp2.bpe
Assets/Tracks/Tutorial/temp2.bpe
+15
-0
temp2.bpe.meta
Assets/Tracks/Tutorial/temp2.bpe.meta
+9
-0
tmp2.bpe
Assets/Tracks/Tutorial/tmp2.bpe
+15
-0
tmp2.bpe.meta
Assets/Tracks/Tutorial/tmp2.bpe.meta
+9
-0
No files found.
Assets/JudgeModule/JudgeManager.cs
View file @
16e4f7a8
...
...
@@ -13,7 +13,6 @@ namespace JudgeModule
private
float
interval
;
private
GameObject
sample
,
appear
;
private
MotionSampleDisplay
sampleDisplay
;
public
JudgeManager
(
InputManager
input
,
Action
endgame
,
...
...
@@ -26,7 +25,6 @@ namespace JudgeModule
appear
=
objects
[
"appear"
];
sample
=
objects
[
"sample"
];
sampleDisplay
=
sample
.
GetComponent
<
MotionSampleDisplay
>();
sample
.
SetActive
(
false
);
}
...
...
@@ -76,11 +74,13 @@ namespace JudgeModule
{
note
.
SamplePlayed
=
true
;
sample
.
SetActive
(
false
);
sample
.
SetActive
(
true
);
var
obj
=
UnityEngine
.
Object
.
Instantiate
(
sample
);
var
sampleDisplay
=
obj
.
GetComponent
<
MotionSampleDisplay
>();
obj
.
SetActive
(
false
);
sampleDisplay
.
sprite
=
note
.
Image
;
sampleDisplay
.
timeout
=
interval
;
obj
.
SetActive
(
true
);
}
}
}
...
...
Assets/JudgeModule/NoteManager.cs
View file @
16e4f7a8
...
...
@@ -125,9 +125,7 @@ namespace JudgeModule
{
var
controllers
=
enables
[
name
].
ToArray
();
foreach
(
var
c
in
controllers
)
if
(
initialPos
.
x
-
c
.
transform
.
position
.
x
-
(
c
.
Instance
.
EndTiming
-
c
.
Instance
.
StartTiming
)
>
Judge
.
BAD
.
TimingRange
(
c
.
Instance
))
if
(
initialPos
.
x
-
c
.
EndPosition
(
ScrollSpeed
)
>
Judge
.
BAD
.
TimingRange
(
c
.
Instance
))
{
NoteJudger
.
SetJudge
(
Judge
.
MISS
,
judgetext
);
c
.
Deactivate
(
deactives
.
transform
);
...
...
@@ -141,7 +139,7 @@ namespace JudgeModule
{
var
controllers
=
disables
[
name
].
ToArray
();
foreach
(
var
c
in
controllers
)
if
(
c
.
transform
.
position
.
x
<=
disappear
.
transform
.
position
.
x
)
if
(
c
.
EndPosition
(
ScrollSpeed
)
<=
disappear
.
transform
.
position
.
x
)
{
c
.
transform
.
position
=
appear
.
transform
.
position
;
c
.
transform
.
SetParent
(
appear
.
transform
);
...
...
Assets/MotionNotes/Guard.cs
View file @
16e4f7a8
using
UnityEngine
;
using
System.Collections.Generic
;
public
class
Guard
:
MotionNote
{
private
static
Sprite
image
;
private
static
Dictionary
<
string
,
Sprite
>
image
=
new
Dictionary
<
string
,
Sprite
>
{
{
"GuardBoth"
,
LoadNewSprite
(
"Assets/MotionNotes/BG.png"
)
},
{
"GuardLeft"
,
LoadNewSprite
(
"Assets/MotionNotes/LG.png"
)
},
{
"GuardRight"
,
LoadNewSprite
(
"Assets/MotionNotes/RG.png"
)
}
};
public
override
Sprite
Image
{
get
{
return
image
;
return
image
[
MotionName
]
;
}
}
...
...
@@ -17,15 +24,12 @@ public class Guard : MotionNote
switch
(
key
)
{
case
"BG"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/BG.png"
);
MotionName
=
"GuardBoth"
;
break
;
case
"LG"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/LG.png"
);
MotionName
=
"GuardLeft"
;
break
;
case
"RG"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/RG.png"
);
MotionName
=
"GuardRight"
;
break
;
}
...
...
Assets/MotionNotes/HandDown.cs
View file @
16e4f7a8
using
UnityEngine
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
HandDown
:
MotionNote
{
private
static
Sprite
image
;
private
static
Dictionary
<
string
,
Sprite
>
image
=
new
Dictionary
<
string
,
Sprite
>
{
{
"HandDownBoth"
,
LoadNewSprite
(
"Assets/MotionNotes/BD.png"
)
},
{
"HandDownLeft"
,
LoadNewSprite
(
"Assets/MotionNotes/LD.png"
)
},
{
"HandDownRight"
,
LoadNewSprite
(
"Assets/MotionNotes/RD.png"
)
}
};
public
override
Sprite
Image
{
get
{
return
image
;
return
image
[
MotionName
]
;
}
}
...
...
@@ -17,15 +24,12 @@ public class HandDown : MotionNote
switch
(
key
)
{
case
"BD"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/BD.png"
);
MotionName
=
"HandDownBoth"
;
break
;
case
"LD"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/LD.png"
);
MotionName
=
"HandDownLeft"
;
break
;
case
"RD"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/RD.png"
);
MotionName
=
"HandDownRight"
;
break
;
}
...
...
Assets/MotionNotes/HandUp.cs
View file @
16e4f7a8
using
UnityEngine
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
HandUp
:
MotionNote
{
private
static
Sprite
image
;
private
static
Dictionary
<
string
,
Sprite
>
image
=
new
Dictionary
<
string
,
Sprite
>
{
{
"HandUpBoth"
,
LoadNewSprite
(
"Assets/MotionNotes/BU.png"
)
},
{
"HandUpLeft"
,
LoadNewSprite
(
"Assets/MotionNotes/LU.png"
)
},
{
"HandUpRight"
,
LoadNewSprite
(
"Assets/MotionNotes/RU.png"
)
}
};
public
override
Sprite
Image
{
get
{
return
image
;
return
image
[
MotionName
]
;
}
}
...
...
@@ -17,15 +24,12 @@ public class HandUp : MotionNote
switch
(
key
)
{
case
"BU"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/BU.png"
);
MotionName
=
"HandUpBoth"
;
break
;
case
"LU"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/LU.png"
);
MotionName
=
"HandUpLeft"
;
break
;
case
"RU"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/RU.png"
);
MotionName
=
"HandUpRight"
;
break
;
}
...
...
Assets/MotionNotes/Headphone.cs
View file @
16e4f7a8
using
UnityEngine
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
Headphone
:
MotionNote
{
private
static
Sprite
image
;
private
static
Dictionary
<
string
,
Sprite
>
image
=
new
Dictionary
<
string
,
Sprite
>
{
{
"HeadphoneBoth"
,
LoadNewSprite
(
"Assets/MotionNotes/BH.png"
)
},
{
"HeadphoneLeft"
,
LoadNewSprite
(
"Assets/MotionNotes/LH.png"
)
},
{
"HeadphoneRight"
,
LoadNewSprite
(
"Assets/MotionNotes/RH.png"
)
}
};
public
override
Sprite
Image
{
get
{
return
image
;
return
image
[
MotionName
]
;
}
}
...
...
@@ -17,15 +24,12 @@ public class Headphone : MotionNote
switch
(
key
)
{
case
"BH"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/BH.png"
);
MotionName
=
"HeadphoneBoth"
;
break
;
case
"LH"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/LH.png"
);
MotionName
=
"HeadphoneLeft"
;
break
;
case
"RH"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/RH.png"
);
MotionName
=
"HeadphoneRight"
;
break
;
}
...
...
Assets/MotionNotes/PushUp.cs
View file @
16e4f7a8
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
PushUp
:
MotionNote
{
private
static
Sprite
image
;
private
static
Dictionary
<
string
,
Sprite
>
image
=
new
Dictionary
<
string
,
Sprite
>
{
{
"PushUpBoth"
,
LoadNewSprite
(
"Assets/MotionNotes/BP.png"
)
},
{
"PushUpLeft"
,
LoadNewSprite
(
"Assets/MotionNotes/LP.png"
)
},
{
"PushUpRight"
,
LoadNewSprite
(
"Assets/MotionNotes/RP.png"
)
},
{
"JumpPushUpBoth"
,
LoadNewSprite
(
"Assets/MotionNotes/BK.png"
)
},
{
"JumpPushUpLeft"
,
LoadNewSprite
(
"Assets/MotionNotes/LK.png"
)
},
{
"JumpPushUpRight"
,
LoadNewSprite
(
"Assets/MotionNotes/RK.png"
)
}
};
public
override
Sprite
Image
{
get
{
return
image
;
return
image
[
MotionName
]
;
}
}
...
...
@@ -17,27 +27,21 @@ public class PushUp : MotionNote
switch
(
key
)
{
case
"BP"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/BP.png"
);
MotionName
=
"PushUpBoth"
;
break
;
case
"LP"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/LP.png"
);
MotionName
=
"PushUpLeft"
;
break
;
case
"RP"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/RP.png"
);
MotionName
=
"PushUpRight"
;
break
;
case
"BK"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/BK.png"
);
MotionName
=
"JumpPushUpBoth"
;
break
;
case
"LK"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/LK.png"
);
MotionName
=
"JumpPushUpLeft"
;
break
;
case
"RK"
:
image
=
LoadNewSprite
(
"Assets/MotionNotes/RK.png"
);
MotionName
=
"JumpPushUpRight"
;
break
;
}
...
...
Assets/Resources/Motion Sample Display.prefab
View file @
16e4f7a8
...
...
@@ -42,7 +42,7 @@ GameObject:
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
1
m_IsActive
:
0
---
!u!1
&1892747765238962
GameObject
:
m_ObjectHideFlags
:
0
...
...
@@ -124,6 +124,7 @@ SpriteRenderer:
m_Enabled
:
1
m_CastShadows
:
0
m_ReceiveShadows
:
0
m_DynamicOccludee
:
1
m_MotionVectors
:
1
m_LightProbeUsage
:
1
m_ReflectionProbeUsage
:
1
...
...
@@ -139,6 +140,7 @@ SpriteRenderer:
m_PreserveUVs
:
0
m_IgnoreNormalsForChartDetection
:
0
m_ImportantGI
:
0
m_StitchLightmapSeams
:
0
m_SelectedEditorRenderState
:
0
m_MinimumChartSize
:
4
m_AutoUVMaxDistance
:
0.5
...
...
@@ -166,6 +168,7 @@ SpriteRenderer:
m_Enabled
:
1
m_CastShadows
:
0
m_ReceiveShadows
:
0
m_DynamicOccludee
:
1
m_MotionVectors
:
1
m_LightProbeUsage
:
1
m_ReflectionProbeUsage
:
1
...
...
@@ -181,6 +184,7 @@ SpriteRenderer:
m_PreserveUVs
:
0
m_IgnoreNormalsForChartDetection
:
0
m_ImportantGI
:
0
m_StitchLightmapSeams
:
0
m_SelectedEditorRenderState
:
0
m_MinimumChartSize
:
4
m_AutoUVMaxDistance
:
0.5
...
...
Assets/Scene/test.unity
View file @
16e4f7a8
...
...
@@ -867,6 +867,11 @@ Prefab:
propertyPath
:
m_RootOrder
value
:
7
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
114320804396245296
,
guid
:
643501fb5118b2e4b94934b03e205885
,
type
:
2
}
propertyPath
:
timeout
value
:
1000
objectReference
:
{
fileID
:
0
}
m_RemovedComponents
:
[]
m_ParentPrefab
:
{
fileID
:
100100000
,
guid
:
643501fb5118b2e4b94934b03e205885
,
type
:
2
}
m_IsPrefabParent
:
0
...
...
Assets/Script/Controller.cs
View file @
16e4f7a8
...
...
@@ -47,4 +47,10 @@ public class Controller : MonoBehaviour
disables
.
Add
(
this
);
enables
.
Remove
(
this
);
}
public
float
EndPosition
(
float
ScrollSpeed
)
{
return
transform
.
position
.
x
+
(
Instance
.
EndTiming
-
Instance
.
StartTiming
)
*
ScrollSpeed
;
}
}
\ No newline at end of file
Assets/Script/GameManager.cs
View file @
16e4f7a8
...
...
@@ -16,7 +16,7 @@ public class GameManager : MonoBehaviour {
instance
=
new
GameObject
().
AddComponent
<
GameManager
>();
instance
.
CurrentTrack
=
new
TrackInfo
(
"Assets/Tracks/Tutorial/te
st
2.bpe"
);
=
new
TrackInfo
(
"Assets/Tracks/Tutorial/te
mp
2.bpe"
);
}
return
instance
;
...
...
Assets/Script/InGameManager.cs
View file @
16e4f7a8
...
...
@@ -84,7 +84,7 @@ public class InGameManager : MonoBehaviour
{
"appear"
,
appear
},
{
"disappear"
,
disappear
},
{
"judgetext"
,
judgetext
},
{
"sample"
,
Instantiate
(
motionSampleDisplayPrefab
)
}
{
"sample"
,
motionSampleDisplayPrefab
}
});
}
...
...
Assets/Script/JudgeTextManager.cs
View file @
16e4f7a8
...
...
@@ -20,7 +20,7 @@ public class JudgeTextManager : MonoBehaviour
// Update is called once per frame
private
void
Update
()
{
if
(
Time
.
time
-
start
>
1
)
if
(
Time
.
time
-
start
>
0.5
)
gameObject
.
SetActive
(
false
);
}
}
Assets/Script/MotionSampleDisplay.cs
View file @
16e4f7a8
...
...
@@ -14,39 +14,36 @@ public class MotionSampleDisplay : MonoBehaviour
private
float
acceleration
;
private
float
distance
=
1.5f
,
last
=
0
;
private
float
distance
=
1.5f
;
private
Vector3
localScaleLR
=
new
Vector3
(
0.5f
,
0.5f
,
0
),
initialPosL
,
initialPosR
;
initialPos
;
private
void
Start
()
{
initialPosL
=
left
.
transform
.
position
;
initialPosR
=
right
.
transform
.
position
;
var
obj
=
GameObject
.
Find
(
"CoordinateMapView"
).
transform
;
initialPos
=
obj
.
position
;
transform
.
position
=
initialPos
;
transform
.
SetParent
(
obj
);
left
.
transform
.
position
=
initialPos
;
right
.
transform
.
position
=
initialPos
;
}
private
void
OnEnable
()
{
acceleration
=
2
*
distance
/
Mathf
.
Pow
(
timeout
,
2
);
last
=
0
;
isInit
=
false
;
SetObject
(
left
,
initialPosL
,
true
);
SetObject
(
right
,
initialPosR
,
false
);
}
void
SetObject
(
GameObject
obj
,
Vector3
initialPos
,
bool
isLeft
)
{
obj
.
GetComponent
<
SpriteRenderer
>().
sprite
=
sprite
;
obj
.
transform
.
position
=
initialPos
;
obj
.
transform
.
Translate
(
new
Vector3
(
distance
*
(
isLeft
?
-
1
:
1
),
-
0.8f
,
0
))
;
obj
.
transform
.
localScale
=
localScaleLR
;
left
.
GetComponent
<
SpriteRenderer
>().
sprite
=
sprite
;
right
.
GetComponent
<
SpriteRenderer
>().
sprite
=
sprite
;
left
.
transform
.
localScale
=
localScaleLR
;
right
.
transform
.
localScale
=
localScaleLR
;
left
.
transform
.
position
=
initialPos
+
Vector3
.
left
*
distance
;
right
.
transform
.
position
=
initialPos
+
Vector3
.
right
*
distance
;
}
private
void
Update
()
{
var
current
=
Time
.
time
;
var
current
=
Time
.
time
*
1000
;
if
(!
isInit
)
{
isInit
=
true
;
...
...
@@ -56,14 +53,12 @@ public class MotionSampleDisplay : MonoBehaviour
var
delta
=
current
-
start
;
if
(
delta
>
timeout
)
{
gameObject
.
SetActive
(
false
);
Destroy
(
gameObject
);
return
;
}
var
movement
=
acceleration
/
2
*
(
Mathf
.
Pow
(
delta
,
2
)
-
Mathf
.
Pow
(
last
,
2
));
left
.
transform
.
Translate
(
new
Vector3
(
movement
,
0
,
0
));
right
.
transform
.
Translate
(
new
Vector3
(-
movement
,
0
,
0
));
last
=
delta
;
var
location
=
distance
-
acceleration
/
2
*
Mathf
.
Pow
(
delta
,
2
);
left
.
transform
.
position
=
initialPos
+
Vector3
.
left
*
location
;
right
.
transform
.
position
=
initialPos
+
Vector3
.
right
*
location
;
}
}
\ No newline at end of file
Assets/Tracks/Tutorial/temp2.bpe
0 → 100644
View file @
16e4f7a8
#TITLE test2
#ARTIST asdf
#GENRE asdf
#BPM 120
#PLAYLEVEL 0
#000SMO 000000CP
#001LMO 000000JS
#002LMO 000000JS
#003SMO 000000CP
#004LMO 000000JS
#005LMO 000000JS
#006SMO 000000CP
#007LMO 000000JS
#008LMO 000000JS
\ No newline at end of file
Assets/Tracks/Tutorial/temp2.bpe.meta
0 → 100644
View file @
16e4f7a8
fileFormatVersion: 2
guid: d37c512d9182dd445855e4095f1ca842
timeCreated: 1519305858
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Assets/Tracks/Tutorial/tmp2.bpe
0 → 100644
View file @
16e4f7a8
#TITLE test
#ARTIST asdf
#GENRE asdf
#BPM 120
#PLAYLEVEL 0
#000SMO 00CP00CP
#001SMO 00CP00CP
#002SMO 00CP00CP
#003SMO 00CP00CP
#004SMO 00CP00CP
#005SMO 00CP00CP
#006SMO 00CP00CP
#007SMO 00CP00CP
#008SMO 00CP00CP
\ No newline at end of file
Assets/Tracks/Tutorial/tmp2.bpe.meta
0 → 100644
View file @
16e4f7a8
fileFormatVersion: 2
guid: 8b1ee7ffd4fa3524281a7262ec36ccee
timeCreated: 1519289427
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment