Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
tetra-tower
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Oenos
tetra-tower
Commits
9d617db8
Commit
9d617db8
authored
Feb 27, 2019
by
15김민규
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
현재 맵의 총 몬스터 수를 구하는 메소드 구현
parent
0660f5e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
EnemyManager.cs
Assets/Scripts/EnemyManager.cs
+13
-0
No files found.
Assets/Scripts/EnemyManager.cs
View file @
9d617db8
...
...
@@ -75,6 +75,19 @@ public class EnemyManager : Singleton<EnemyManager>
return
(
EnemyDeadCount
==
EnemySpawnCount
);
}
public
int
CountEnemyInMap
()
{
int
cnt
=
0
;
foreach
(
Transform
obj
in
MapManager
.
currentRoom
.
transform
)
{
if
(
obj
.
gameObject
.
CompareTag
(
"enemy"
))
{
cnt
++;
}
}
return
cnt
;
}
// Object Pool
private
void
CreateEnemyPool
()
{
...
...
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