fix micro bug
This commit is contained in:
@@ -95,6 +95,7 @@ MonoBehaviour:
|
||||
borderImage: {fileID: 0}
|
||||
cooldownTime: 0
|
||||
m_ClockCounter: {fileID: 0}
|
||||
isNotCastSkill: 1
|
||||
learnedSkillbutton: {fileID: 4352052582615766499}
|
||||
wButton: {fileID: 0}
|
||||
--- !u!114 &4352052582615766499
|
||||
|
||||
@@ -214,4 +214,6 @@ MonoBehaviour:
|
||||
borderImage: {fileID: 0}
|
||||
cooldownTime: 0
|
||||
m_ClockCounter: {fileID: 0}
|
||||
isNotCastSkill: 1
|
||||
learnedSkillbutton: {fileID: 4789154704751094606}
|
||||
wButton: {fileID: 0}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:53692fc411388ad4af78104667731d6952578dbdd4a549d5706ecb7b64986d63
|
||||
size 284380
|
||||
oid sha256:bc6a544e3c3d1a3673525983b7f3b462aa66216cb568befdc39c7322b77d9e39
|
||||
size 284733
|
||||
|
||||
@@ -20,6 +20,7 @@ namespace BrewMonster.Assets.PerfectWorld.Scripts.UI.GamePlay
|
||||
[SerializeField] GameObject borderImage;
|
||||
[SerializeField] int cooldownTime;
|
||||
[SerializeField] AUIClockIcon m_ClockCounter;
|
||||
[SerializeField] bool isNotCastSkill;
|
||||
|
||||
private Color m_color = Color.white;
|
||||
private bool m_bUpdateRenderTarget;
|
||||
@@ -62,11 +63,14 @@ namespace BrewMonster.Assets.PerfectWorld.Scripts.UI.GamePlay
|
||||
public CECShortcut GetDataPtr() => pSC;
|
||||
public void Execute()
|
||||
{
|
||||
if (pSC != null)
|
||||
if (pSC != null )
|
||||
{
|
||||
pSC.Execute();
|
||||
if (!isNotCastSkill)
|
||||
{
|
||||
pSC.Execute();
|
||||
|
||||
SetInteract(false);
|
||||
SetInteract(false);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8afbdb17249969e64a11fbda64cda8d83eebcc9fa65a12a47dfa60670304a597
|
||||
size 196460134
|
||||
oid sha256:528f13c116e2c223b50b3b5d2ff9ecbae2830432603bec0110b9fdf05b5bd99d
|
||||
size 196460133
|
||||
|
||||
+615
-25
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user