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
af0d3a9e
Commit
af0d3a9e
authored
Apr 06, 2019
by
15박보승
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
거짓탄 로직 추가
parent
fdb3878c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
BSDummy.unity
Assets/Scenes/BSDummy.unity
+6
-2
FakeBullet.cs
Assets/Scripts/Bullets/FakeBullet.cs
+6
-2
No files found.
Assets/Scenes/BSDummy.unity
View file @
af0d3a9e
...
...
@@ -428,6 +428,9 @@ MonoBehaviour:
m_Script
:
{
fileID
:
11500000
,
guid
:
5f15a625122ee354090202ddf9cb0299
,
type
:
3
}
m_Name
:
m_EditorClassIdentifier
:
mannequinMesh
:
-
{
fileID
:
10202
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
-
{
fileID
:
10206
,
guid
:
0000000000000000e000000000000000
,
type
:
0
}
---
!u!65
&540232520
BoxCollider
:
m_ObjectHideFlags
:
0
...
...
@@ -670,6 +673,7 @@ MonoBehaviour:
m_Script
:
{
fileID
:
11500000
,
guid
:
00412ad71b8f0e14c9a23118682ee6f9
,
type
:
3
}
m_Name
:
m_EditorClassIdentifier
:
floor
:
{
fileID
:
0
}
---
!u!135
&1034141965
SphereCollider
:
m_ObjectHideFlags
:
0
...
...
@@ -852,7 +856,7 @@ PrefabInstance:
-
target
:
{
fileID
:
5901026180355857054
,
guid
:
bfe2c93abf5421b4a9b142f60d689533
,
type
:
3
}
propertyPath
:
m_LocalPosition.x
value
:
-0.
3183
value
:
-0.
52
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
5901026180355857054
,
guid
:
bfe2c93abf5421b4a9b142f60d689533
,
type
:
3
}
...
...
@@ -862,7 +866,7 @@ PrefabInstance:
-
target
:
{
fileID
:
5901026180355857054
,
guid
:
bfe2c93abf5421b4a9b142f60d689533
,
type
:
3
}
propertyPath
:
m_LocalPosition.z
value
:
-1.
49
value
:
-1.
188
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
5901026180355857054
,
guid
:
bfe2c93abf5421b4a9b142f60d689533
,
type
:
3
}
...
...
Assets/Scripts/Bullets/FakeBullet.cs
View file @
af0d3a9e
...
...
@@ -6,6 +6,10 @@ public class FakeBullet : Bullet
{
protected
override
void
OnTriggerEnter
(
Collider
other
)
{
//TODO : if mirror, break mirror and make objects
}
if
(
other
.
GetComponent
<
IBulletInteractor
>()
!=
null
)
{
other
.
GetComponent
<
IBulletInteractor
>().
Interact
(
this
);
}
Destroy
(
gameObject
);
}
}
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