Commit 16e4f7a8 authored by 16이상민's avatar 16이상민

Fixed a problem where the sprite of the motion note does not appear on the screen.

parent d2408a2c
......@@ -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);
}
}
}
......
......@@ -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);
......
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;
}
......
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;
}
......
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;
}
......
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;
}
......
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;
}
......
......@@ -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
......
......@@ -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
......
......@@ -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
......@@ -16,7 +16,7 @@ public class GameManager : MonoBehaviour {
instance = new GameObject().AddComponent<GameManager>();
instance.CurrentTrack
= new TrackInfo("Assets/Tracks/Tutorial/test2.bpe");
= new TrackInfo("Assets/Tracks/Tutorial/temp2.bpe");
}
return instance;
......
......@@ -84,7 +84,7 @@ public class InGameManager : MonoBehaviour
{ "appear", appear },
{ "disappear", disappear },
{ "judgetext", judgetext },
{ "sample", Instantiate(motionSampleDisplayPrefab) }
{ "sample", motionSampleDisplayPrefab }
});
}
......
......@@ -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);
}
}
......@@ -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
#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
fileFormatVersion: 2
guid: d37c512d9182dd445855e4095f1ca842
timeCreated: 1519305858
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
#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
fileFormatVersion: 2
guid: 8b1ee7ffd4fa3524281a7262ec36ccee
timeCreated: 1519289427
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment