Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
curvedflats
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
6
Issues
6
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
Flatland
curvedflats
Commits
11bd04a9
Commit
11bd04a9
authored
Aug 14, 2019
by
Chae Ho Shin
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/model-ui-integration-work' into model-ui-integration-work
# Conflicts: # Assets/Scripts/UIManager.cs
parents
27c0b9cc
64a65eca
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
89 additions
and
20 deletions
+89
-20
DoubleClick.cs
Assets/DoubleClick.cs
+1
-0
Test.unity
Assets/Scenes/Test.unity
+1
-1
FlatlandMovement.cs
Assets/Scripts/FlatlandMovement.cs
+23
-13
UIManager.cs
Assets/Scripts/UIManager.cs
+62
-6
TagManager.asset
ProjectSettings/TagManager.asset
+2
-0
No files found.
Assets/DoubleClick.cs
View file @
11bd04a9
...
...
@@ -7,6 +7,7 @@ public class DoubleClick : MonoBehaviour
private
bool
click
=
true
;
//클릭 여부
[
SerializeField
]
private
float
clickWaitTime
=
0.5f
;
//클릭 대기시간
private
float
clickTime
;
...
...
Assets/Scenes/Test.unity
View file @
11bd04a9
...
...
@@ -829,7 +829,7 @@ GameObject:
- component: {fileID: 502908128}
m_Layer: 5
m_Name: DoubleClickPanel
m_TagString
:
Untagged
m_TagString:
panel
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
...
...
Assets/Scripts/FlatlandMovement.cs
View file @
11bd04a9
...
...
@@ -142,32 +142,42 @@ public class FlatlandMovement : MonoBehaviour
/// </summary>
/// <param name="path">목적지 x z 가 공간</param>
/// <param name="v">속력 0<v<1</param>
public
bool
MoveTo
(
Vector3
dest
,
float
v
)
public
bool
MoveTo
AbPosition
(
Vector3
dest
,
float
v
)
{
dest
.
y
=
0
;
Debug
.
Log
(
"bb"
);
Debug
.
Log
(
dest
);
if
(
v
<
0.0001f
)
bool
result
=
SetVelecityToAbPosition
(
dest
,
v
);
if
(!
result
)
{
//v가 0일때.
return
false
;
}
nowDest
=
dest
;
isAutoMove
=
true
;
return
true
;
}
/// <summary>
/// 절대좌표 방향으로 무한히 날아갑니다
/// </summary>
/// <param name="dest"></param>
/// <param name="v"></param>
/// <returns></returns>
public
bool
MoveInfinitelyToAbPosition
(
Vector3
dest
,
float
v
)
{
return
SetVelecityToAbPosition
(
dest
,
v
);
}
public
bool
SetVelecityToAbPosition
(
Vector3
dest
,
float
v
)
{
dest
.
y
=
0
;
//속도와 목적지 설정.
Vector3
tmp
=
dest
-
transform
.
position
;
Debug
.
Log
(
"move vector: "
+
tmp
);
Vector3
tmp
=
dest
-
transform
.
position
;
tmp
.
y
=
0
;
this
.
v
=
tmp
.
normalized
*
v
*
(
float
)
Constants
.
c
;
Debug
.
Log
(
"v : "
+
this
.
v
);
this
.
nowDest
=
dest
;
isAutoMove
=
true
;
return
true
;
}
private
void
NextMove
()
{
MoveTo
(
dests
[
0
],
pathVelocitys
[
0
]);
MoveTo
AbPosition
(
dests
[
0
],
pathVelocitys
[
0
]);
dests
.
RemoveAt
(
0
);
pathVelocitys
.
RemoveAt
(
0
);
...
...
Assets/Scripts/UIManager.cs
View file @
11bd04a9
...
...
@@ -68,22 +68,29 @@ public class UIManager : MonoBehaviour
ped
.
position
=
Input
.
mousePosition
;
List
<
RaycastResult
>
results
=
new
List
<
RaycastResult
>();
gr
.
Raycast
(
ped
,
results
);
if
(
results
.
Count
!=
0
)
{
GameObject
obj
=
results
[
0
].
gameObject
;
if
(
obj
.
tag
==
"VelocitySlider"
)
bool
isIgnored
=
true
;
//ui 클릭시.
foreach
(
RaycastResult
re
in
results
)
{
GameObject
obj
=
re
.
gameObject
;
//panel만 있는지 검사.
isIgnored
&=
(
obj
.
tag
==
"ignored"
);
//Debug.Log(obj);
//슬라이더일때
if
(
obj
.
tag
==
"VelocitySlider"
)
{
sliderflag
=
1
;
if
(
_pathUI
.
activeSelf
==
true
&&
prevSelectPathNum
!=
-
1
)
{
square
.
pathVelocity
[
prevSelectPathNum
+
1
]
=
velocityslider
.
GetLogScaleValue
();
pathVelocity
.
text
=
"Velocity: "
+
square
.
GetPathVelocity
(
prevSelectPathNum
).
ToString
()
+
"c"
;
break
;
}
}
}
else
if
(
isIgnored
)
{
RaycastHit
hit1
;
RaycastHit
hit2
;
...
...
@@ -121,6 +128,8 @@ public class UIManager : MonoBehaviour
}
}
}
//클릭된 ui가 패널만 있을때.
TryFIndPath
();
}
}
else
if
(
sliderflag
==
1
&&
Input
.
GetMouseButton
(
0
))
...
...
@@ -202,6 +211,52 @@ public class UIManager : MonoBehaviour
velocityslider
.
UpdateValuebyVelocity
(
square
.
GetPathVelocity
(
pathNum
));
}
private
void
TryFIndPath
()
{
RaycastHit
hit1
;
RaycastHit
hit2
;
var
ray
=
Camera
.
main
.
ScreenPointToRay
(
Input
.
mousePosition
);
if
(
Physics
.
Raycast
(
ray
,
out
hit1
))
{
ray
=
playercamera
.
ViewportPointToRay
(
hit1
.
textureCoord
);
if
(
Physics
.
Raycast
(
ray
,
out
hit2
))
{
var
obj
=
hit2
.
collider
.
gameObject
;
Debug
.
Log
(
obj
.
tag
);
if
(
obj
.
tag
==
"path"
)
{
int
pathNum
=
int
.
Parse
(
obj
.
name
.
Substring
(
13
));
if
(
pathNum
!=
prevSelectPathNum
)
{
updatePathInfo
(
obj
,
pathNum
);
var
mouseClickPosition
=
getMouseClickPosition
(
hit1
);
var
v
=
getDestVector
(
mouseClickPosition
-
middlePoint
,
new
Vector3
(
hit2
.
point
.
x
,
hit2
.
point
.
z
,
0.0f
),
pathNum
);
_pathUI
.
transform
.
position
=
mouseClickPosition
+
v
;
_pathUI
.
SetActive
(
true
);
prevSelectPathNum
=
pathNum
;
}
else
{
_pathUI
.
SetActive
(
false
);
prevSelectPathNum
=
-
1
;
sliderflag
=
0
;
}
}
else
{
_pathUI
.
SetActive
(
false
);
prevSelectPathNum
=
-
1
;
sliderflag
=
0
;
}
}
}
}
/// <summary>
/// 현재 지정된 path를 시작합니다.
/// </summary>
...
...
@@ -227,7 +282,8 @@ public class UIManager : MonoBehaviour
ray
=
playercamera
.
ViewportPointToRay
(
hit
.
textureCoord
);
if
(
Physics
.
Raycast
(
ray
,
out
hit
))
{
levelManager
.
player
.
MoveTo
(
hit
.
point
,
velocityslider
.
GetLogScaleValue
());
levelManager
.
player
.
MoveInfinitelyToAbPosition
(
hit
.
point
,
velocityslider
.
GetLogScaleValue
());
//levelManager.player.MoveToAbPosition(hit.point, velocityslider.GetLogScaleValue());
//Debug.Log(velocityslider.GetLogScaleValue() * (float)Constants.c);
//Debug.Log(hit.point);
}
...
...
ProjectSettings/TagManager.asset
View file @
11bd04a9
...
...
@@ -7,6 +7,8 @@ TagManager:
-
path
-
pathui
-
VelocitySlider
-
doubleclick
-
panel
layers
:
-
Default
-
TransparentFX
...
...
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