Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
civilization-iii
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
5
Issues
5
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
true-history-committee
civilization-iii
Commits
f3bacca7
Commit
f3bacca7
authored
Aug 23, 2018
by
Chae Ho Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bugs
#146
#147
parent
38261913
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
Unit.cs
Assets/Script/Unit/Unit.cs
+10
-7
No files found.
Assets/Script/Unit/Unit.cs
View file @
f3bacca7
...
...
@@ -87,19 +87,22 @@ public class Unit : MonoBehaviour
if
(
_inSkillState
)
SkillStateExit
();
_inMoveState
=
true
;
if
(
GameManager
.
Instance
.
selectedActor
==
null
)
Actor
selectedActor
=
GameManager
.
Instance
.
selectedActor
;
if
(
selectedActor
==
null
)
{
Debug
.
Log
(
"Selected Actor is NULL"
);
return
;
}
else
if
(
GameManager
.
Instance
.
selectedActor
is
CivModel
.
Unit
)
else
if
(
selectedActor
is
CivModel
.
Unit
)
{
var
player
=
GameManager
.
Instance
.
Game
.
Players
[
GameInfo
.
UserPlayer
];
bool
checkMovingAttack
=
false
;
// Select movable tiles
_parameterPoints
=
CivModel
.
Path
.
ActorMovePath
.
GetReachablePoint
(
GameManager
.
Instance
.
selectedActor
,
true
)
.
Where
(
x
=>
x
!=
GameManager
.
Instance
.
selectedActor
.
PlacedPoint
)
if
(
selectedActor
.
MovingAttackAct
!=
null
)
checkMovingAttack
=
true
;
_parameterPoints
=
CivModel
.
Path
.
ActorMovePath
.
GetReachablePoint
(
selectedActor
,
checkMovingAttack
)
.
Where
(
x
=>
x
!=
selectedActor
.
PlacedPoint
)
.
Select
(
x
=>
(
CivModel
.
Terrain
.
Point
?)
x
).
ToArray
();
for
(
int
i
=
0
;
i
<
_parameterPoints
.
Length
;
i
++)
{
...
...
@@ -112,7 +115,7 @@ public class Unit : MonoBehaviour
//if the tile has an enemy unit or an enemy tilebuilding.
else
{
if
(
IsEnemyActor
(
player
,
_parameterPoints
[
i
].
Value
))
if
(
IsEnemyActor
(
player
,
_parameterPoints
[
i
].
Value
)
&&
selectedActor
.
MovingAttackAct
!=
null
)
{
CivModel
.
Position
pos
=
_parameterPoints
[
i
].
Value
.
Position
;
GameManager
.
Instance
.
Tiles
[
pos
.
X
,
pos
.
Y
].
GetComponent
<
HexTile
>().
FlickerRed
();
...
...
@@ -120,7 +123,7 @@ public class Unit : MonoBehaviour
}
}
}
IEnumerator
_coroutine
=
MoveUnit
(
GameManager
.
Instance
.
selectedActor
);
IEnumerator
_coroutine
=
MoveUnit
(
selectedActor
);
StartCoroutine
(
_coroutine
);
}
}
...
...
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