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
97beae3b
Commit
97beae3b
authored
Aug 14, 2019
by
16이진형
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
더블클릭 왼쪽 마우스만 인식하게 변경
parent
9d74ef11
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
2 deletions
+25
-2
DoubleClick.cs
Assets/DoubleClick.cs
+25
-2
No files found.
Assets/DoubleClick.cs
View file @
97beae3b
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
using
UnityEngine.EventSystems
;
public
class
DoubleClick
:
MonoBehaviour
public
class
DoubleClick
:
MonoBehaviour
,
IPointerClickHandler
{
...
...
@@ -18,7 +19,7 @@ public class DoubleClick : MonoBehaviour
// Start is called before the first frame update
void
Start
()
{
}
// Update is called once per frame
...
...
@@ -30,8 +31,30 @@ public class DoubleClick : MonoBehaviour
}
}
public
void
OnPointerClick
(
PointerEventData
eventData
)
{
if
(
eventData
.
button
==
PointerEventData
.
InputButton
.
Left
)
{
OnClick
();
//Debug.Log("Left click");
}
else
if
(
eventData
.
button
==
PointerEventData
.
InputButton
.
Middle
)
{
//Debug.Log("Middle click");
}
else
if
(
eventData
.
button
==
PointerEventData
.
InputButton
.
Right
)
{
//Debug.Log("Right click");
}
}
public
void
OnClick
()
{
/*
if(eventData.button != PointerEventData.InputButton.Left)
{
return;
}*/
if
(
click
)
{
OnDoubleClick
();
...
...
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