dev-ali
Ali Sharoz 3 hours ago
parent 5554a0fd4a
commit 75c15cf265

@ -156,7 +156,8 @@ namespace D2D.Gameplay
IEnumerator DeathCoroutine()
{
yield return new WaitForSeconds(10f);
yield return new WaitForSeconds(6f);
GameManager.Instance.OnRevival();
InitiateDeathSequence();
}

@ -26,6 +26,7 @@ namespace D2D
private void Show(GameObject[] parent)
{
Debug.Log("Show: " + parent[0].gameObject.name);
if (parent.IsNullOrEmpty())
return;

@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Revival : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 1677ce6e50690ff40aba4417257c6136
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

@ -61640,6 +61640,18 @@ MonoBehaviour:
m_StringArgument:
m_BoolArgument: 0
m_CallState: 2
--- !u!114 &671232094
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 671232090}
m_Enabled: 0
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1677ce6e50690ff40aba4417257c6136, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!1 &671891082
GameObject:
m_ObjectHideFlags: 0
@ -190022,6 +190034,9 @@ PrefabInstance:
- targetCorrespondingSourceObject: {fileID: 9210140489432102636, guid: 2afb0c0b1e9834310869cb2f0c994844, type: 3}
insertIndex: -1
addedObject: {fileID: 671232093}
- targetCorrespondingSourceObject: {fileID: 9210140489432102636, guid: 2afb0c0b1e9834310869cb2f0c994844, type: 3}
insertIndex: -1
addedObject: {fileID: 671232094}
m_SourcePrefab: {fileID: 100100000, guid: 2afb0c0b1e9834310869cb2f0c994844, type: 3}
--- !u!224 &1912088910611789088 stripped
RectTransform:

@ -13,11 +13,11 @@ public class ReviveOnClick : DButtonListener
private bool _isClaimClickMissed;
private void Update()
{
if (!_isButton && DInput.IsMouseReleased)
OnClick();
}
//private void Update()
//{
// if (!_isButton && DInput.IsMouseReleased)
// OnClick();
//}
protected override void OnClick()
{

@ -1,6 +1,7 @@
using D2D;
using D2D.Core;
using D2D.Utilities;
using ES3Internal;
using Sirenix.OdinInspector;
using System;
using System.Collections;
@ -28,10 +29,14 @@ public class GameProgress : GameStateMachineUser
public Action<int> OnLevelUp;
private float levelTime;
[SerializeField]
private float timeForLevelUp;
[SerializeField]
private float levelUpTimer;
[SerializeField]
private bool isStarted = false;
[SerializeField]
private bool isFinished = false;
public float GetValueForFinish() => totalXP / needToFinish;
@ -137,6 +142,7 @@ public class GameProgress : GameStateMachineUser
[Button]
public void LevelUp()
{
Debug.Log("LevelUp Called");
XPforLevelUp = 0;
level++;

Loading…
Cancel
Save