Commit d66ad83a authored by 18류지석's avatar 18류지석

droppedlifestoneframe 제작. 감전봉 사용시 평타에 기절 붙는 문제 수정

parent 81b8b1e7
......@@ -34,7 +34,7 @@ Transform:
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1420923890547556}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalPosition: {x: -6.9766555, y: 2.569394, z: 0.0049343775}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 0}
......@@ -66,6 +66,8 @@ MonoBehaviour:
type: 2}
goldPotionPrefab: {fileID: 1778675533210814, guid: 57c0f65ad47e39943a69b5b0a6fa0e47,
type: 2}
droppedFramePrefab: {fileID: 1356237453793910, guid: a142a989cdc2e0c4ba0aabbcde26010e,
type: 2}
vibrationVariable: 0.1
droppedLifeStonePrefab: {fileID: 1149595688849768, guid: 8255a117a93935941b32b4aed9b299a0,
type: 2}
......
......@@ -132,7 +132,7 @@ CanvasGroup:
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1939101680453256}
m_Enabled: 1
m_Alpha: 0.8
m_Alpha: 1
m_Interactable: 1
m_BlocksRaycasts: 1
m_IgnoreParentGroups: 0
......@@ -56,7 +56,7 @@ Rigidbody2D:
m_Mass: 1
m_LinearDrag: 0
m_AngularDrag: 0.05
m_GravityScale: 1
m_GravityScale: 3
m_Material: {fileID: 0}
m_Interpolate: 0
m_SleepingMode: 1
......@@ -101,5 +101,7 @@ MonoBehaviour:
price: 0
priceTag: {fileID: 0}
priceSign: {fileID: 0}
frames: []
borderSize: 0
frames:
- {fileID: 1366103144126518, guid: 830ffee34763ed741ab4a375a0dbac22, type: 2}
- {fileID: 1690566668189580, guid: deaaed06a4e2692439983f8416ddd232, type: 2}
- {fileID: 1976803328805560, guid: a7f047a9f533d4c448d09f13f288eb2f, type: 2}
......@@ -72,8 +72,8 @@ SpriteRenderer:
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingLayerID: 2145601713
m_SortingLayer: 11
m_SortingOrder: 0
m_Sprite: {fileID: 21300002, guid: eff441d843b9c664e97a81fcb39d8410, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 1}
......
......@@ -72,8 +72,8 @@ SpriteRenderer:
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingLayerID: 2145601713
m_SortingLayer: 11
m_SortingOrder: 0
m_Sprite: {fileID: 21300004, guid: eff441d843b9c664e97a81fcb39d8410, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 1}
......
......@@ -72,8 +72,8 @@ SpriteRenderer:
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingLayerID: 2145601713
m_SortingLayer: 11
m_SortingOrder: 0
m_Sprite: {fileID: 21300000, guid: eff441d843b9c664e97a81fcb39d8410, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 1}
......
......@@ -31,6 +31,14 @@ public class AttackProperty : MonoBehaviour {
debuffTime[3] = debuffTime3;
debuffTime[4] = debuffTime4;
}
else
{
for(int i = 0; i < (int)EnemyDebuffCase.END_POINTER; i++)
{
debuffTime[i] = 0;
}
}
}
private void Awake()
......
......@@ -144,9 +144,9 @@ public class InventoryManager : Singleton<InventoryManager> {
{
return AddonInstantiate(quality, pos, popoutStrength);
}
else if(quality != ItemQuality.Study)
else if(quality != ItemQuality.Masterpiece)
{
return ItemInstantiate(quality - 1, pos, popoutStrength);
return ItemInstantiate(quality + 1, pos, popoutStrength);
}
return null;
}
......@@ -215,9 +215,9 @@ public class InventoryManager : Singleton<InventoryManager> {
{
return ItemInstantiate(quality, pos, popoutStrength);
}
else if (quality != ItemQuality.Study)
else if (quality != ItemQuality.Masterpiece)
{
return AddonInstantiate(quality - 1, pos, popoutStrength);
return AddonInstantiate(quality + 1, pos, popoutStrength);
}
return null;
}
......
......@@ -9,17 +9,31 @@ public class DroppedLifeStoneFrame : DroppedObject, IPlayerInteraction
public GameObject[] frames;
Rigidbody2D rb2D;
BoxCollider2D bc2D;
GameObject[] obj;
public void Init(int rowNum, Vector3 pos)
{
transform.position = pos;
this.rowNum = rowNum;
rb2D = GetComponent<Rigidbody2D>();
bc2D = GetComponent<BoxCollider2D>();
obj = new GameObject[rowNum + 2];
obj[0] = Instantiate(frames[0], transform.position + new Vector3(0, frames[0].GetComponent<SpriteRenderer>().bounds.extents.y,0) , Quaternion.identity ,transform);
for(int i = 0; i<rowNum; i++)
{
obj[i+1] = Instantiate(frames[1], transform.position + new Vector3(0, frames[0].GetComponent<SpriteRenderer>().bounds.extents.y * 2 + frames[1].GetComponent<SpriteRenderer>().bounds.extents.y * (i * 2 + 1), 0), Quaternion.identity, transform);
}
obj[rowNum + 1] = Instantiate(frames[2], transform.position + new Vector3(0, frames[0].GetComponent<SpriteRenderer>().bounds.extents.y * 2 + frames[1].GetComponent<SpriteRenderer>().bounds.extents.y * rowNum * 2 + frames[2].GetComponent<SpriteRenderer>().bounds.extents.y, 0), Quaternion.identity, transform);
bc2D.size = new Vector2(frames[0].GetComponent<SpriteRenderer>().bounds.extents.y * 2, obj[rowNum + 1].transform.position.y - obj[0].transform.position.y + frames[0].GetComponent<SpriteRenderer>().bounds.extents.y + frames[2].GetComponent<SpriteRenderer>().bounds.extents.y);
bc2D.offset = new Vector2(0, bc2D.size.y / 2f);
}
public void Apply()
{
LifeStoneManager.Instance.ExpandRow(rowNum);
Destroy(gameObject);
}
public void HighlightSwitch(bool enabled)
{
......
......@@ -35,6 +35,7 @@ public class LifeStoneManager : Singleton<LifeStoneManager> {
/// </summary>
public GameObject lifeUnitPrefab;
public GameObject goldPotionPrefab;
public GameObject droppedFramePrefab;
/// <summary>
/// strength of vibration when Lifestone falls
/// </summary>
......@@ -70,13 +71,13 @@ public class LifeStoneManager : Singleton<LifeStoneManager> {
lifeStoneArray = new int[50, 3];
lifeStoneUnit = new GameObject[50, 3];
for (int i = 0; i < 50; i++) for (int j = 0; j < 3; j++) lifeStoneArray[i, j] = 0;
PushLifeStone(CreateLifeStoneInfo(new Vector2Int(3, 6), 0, 0));
PushLifeStone(new LifeStoneInfo(new Vector2Int(3,6),"AAAAAAAAAAAAAA A "));
StartCoroutine("TestEnumerator");
}
IEnumerator TestEnumerator()
{
yield return null;
InstantiateFrame(GameManager.Instance.player.transform.position, 3, 1f);
}
/// <summary>
......@@ -88,6 +89,13 @@ public class LifeStoneManager : Singleton<LifeStoneManager> {
lifeStoneRowNum += rowNum;
frameSuper.GetComponent<LifeStoneFrame>().AddRow(lifeStoneRowNum);
}
public GameObject InstantiateFrame(Vector3 pos, int rowNum, float popoutStrength)
{
GameObject tmpFrame = Instantiate(droppedFramePrefab);
tmpFrame.GetComponent<DroppedLifeStoneFrame>().Init(rowNum, pos);
PopoutGenerator(tmpFrame, popoutStrength);
return tmpFrame;
}
public GameObject InstantiatePotion(Vector3 pos, float popoutStrength)
{
......
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