Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
man-in-the-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
4
Issues
4
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
MIM
man-in-the-mirror
Commits
945310ae
Commit
945310ae
authored
Aug 17, 2019
by
18신대성
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
거울 안정화
parent
f7ce5f51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
Bullet.cs
Assets/Scripts/Bullets/Bullet.cs
+0
-1
Mirror.cs
Assets/Scripts/Map/Mirror.cs
+4
-1
No files found.
Assets/Scripts/Bullets/Bullet.cs
View file @
945310ae
...
...
@@ -23,7 +23,6 @@ public abstract class Bullet : MonoBehaviour
{
col
.
GetComponent
<
Mirror
>().
StartCopy
();
yield
return
new
WaitForSeconds
(
_time
);
col
.
GetComponent
<
Mirror
>().
doReflect
=
true
;
OnTriggerEnter
(
col
);
}
else
...
...
Assets/Scripts/Map/Mirror.cs
View file @
945310ae
...
...
@@ -24,6 +24,7 @@ public class Mirror : Wall, IBulletInteractor, IBreakable
{
if
(
bullet
is
FakeBullet
)
{
doReflect
=
true
;
//Debug.Log("ldPos: " + ldPos + ", rdPos: " + rdPos + ", dir: " + dir);
// Make reflected objects
}
...
...
@@ -248,7 +249,9 @@ public class Mirror : Wall, IBulletInteractor, IBreakable
}
if
(
parRay
.
Count
==
0
)
break
;
}
yield
return
new
WaitUntil
(()
=>
doReflect
);
while
(!
doReflect
)
yield
return
null
;
// copy floors
foreach
(
var
floorCount
in
floorCountGrid
)
{
...
...
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